MicroPython mpy_network

Sat, 15 Apr 2023 18:22:09 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 15 Apr 2023 18:22:09 +0200
branch
mpy_network
changeset 9979
dbafba79461d
parent 9978
f878ae1e6d21
child 9980
991c83eeb406
child 9988
1ba9d07ba9da

MicroPython
- Added a package installer for devices lacking network connectivity and the `mip` package manager.

docs/changelog.md file | annotate | diff | comparison | revisions
eric7.epj file | annotate | diff | comparison | revisions
src/eric7/APIs/Python3/eric7.api file | annotate | diff | comparison | revisions
src/eric7/APIs/Python3/eric7.bas file | annotate | diff | comparison | revisions
src/eric7/Documentation/Help/source.qch file | annotate | diff | comparison | revisions
src/eric7/Documentation/Help/source.qhp file | annotate | diff | comparison | revisions
src/eric7/Documentation/Source/eric7.MicroPython.Devices.DeviceBase.html file | annotate | diff | comparison | revisions
src/eric7/Documentation/Source/eric7.MicroPython.MipLocalInstaller.html file | annotate | diff | comparison | revisions
src/eric7/Documentation/Source/eric7.MicroPython.MipPackageDialog.html file | annotate | diff | comparison | revisions
src/eric7/Documentation/Source/index-eric7.MicroPython.html file | annotate | diff | comparison | revisions
src/eric7/MicroPython/Devices/CircuitPythonDevices.py file | annotate | diff | comparison | revisions
src/eric7/MicroPython/Devices/DeviceBase.py file | annotate | diff | comparison | revisions
src/eric7/MicroPython/Devices/MicrobitDevices.py file | annotate | diff | comparison | revisions
src/eric7/MicroPython/MicroPythonWidget.py file | annotate | diff | comparison | revisions
src/eric7/MicroPython/MipLocalInstaller.py file | annotate | diff | comparison | revisions
src/eric7/MicroPython/MipPackageDialog.py file | annotate | diff | comparison | revisions
src/eric7/MicroPython/MipPackageDialog.ui file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_cs.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_de.qm file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_de.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_empty.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_en.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_es.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_fr.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_it.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_pt.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_ru.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_tr.ts file | annotate | diff | comparison | revisions
src/eric7/i18n/eric7_zh_CN.ts file | annotate | diff | comparison | revisions
--- a/docs/changelog.md	Sat Apr 15 11:12:30 2023 +0200
+++ b/docs/changelog.md	Sat Apr 15 18:22:09 2023 +0200
@@ -3,7 +3,7 @@
 ### Version 23.5
 - bug fixes
 - JavaScript Support
-    - Removed JavaScript functionality depending on the `Jasy` package because it
+    - Removed JavaScript functionality depending on the `jasy` package because it
       has not been maintained for years.
 - MicroPython
     - Added support for STLink based devices.
@@ -11,6 +11,8 @@
       be detected (e.g. because the device does not have a volume name).
     - Added the capability to install the `mpy-cross` compiler from the MicroPython
       page of the configuration dialog.
+    - Added a package installer for devices lacking network connectivity and the `mip`
+      package manager.
 - Translator
     - Added support for the LibreTranslate translator (see
       https://github.com/LibreTranslate/LibreTranslate).
--- a/eric7.epj	Sat Apr 15 11:12:30 2023 +0200
+++ b/eric7.epj	Sat Apr 15 18:22:09 2023 +0200
@@ -1349,6 +1349,7 @@
       "src/eric7/MicroPython/MicroPythonProgressInfoDialog.py",
       "src/eric7/MicroPython/MicroPythonSerialPort.py",
       "src/eric7/MicroPython/MicroPythonWidget.py",
+      "src/eric7/MicroPython/MipLocalInstaller.py",
       "src/eric7/MicroPython/MipPackageDialog.py",
       "src/eric7/MicroPython/NtpParametersDialog.py",
       "src/eric7/MicroPython/ShowModulesDialog.py",
--- a/src/eric7/APIs/Python3/eric7.api	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/APIs/Python3/eric7.api	Sat Apr 15 18:22:09 2023 +0200
@@ -2691,6 +2691,7 @@
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.disconnectFromLan?4()
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.disconnectWifi?4()
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.downloadFirmware?4()
+eric7.MicroPython.Devices.DeviceBase.BaseDevice.ensurePath?4(target)
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.exists?4(pathname)
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.fileSystemInfo?4()
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.forceInterrupt?4()
@@ -2706,6 +2707,7 @@
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.getDownloadMenuEntries?4()
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.getEthernetStatus?4()
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.getFirmwareUrl?4()
+eric7.MicroPython.Devices.DeviceBase.BaseDevice.getLibPaths?4()
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.getModules?4()
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.getTime?4()
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.getWifiData?4()
@@ -2722,7 +2724,7 @@
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.hasWifi?4()
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.lls?4(dirname="", fullstat=False, showHidden=False)
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.ls?4(dirname="")
-eric7.MicroPython.Devices.DeviceBase.BaseDevice.mipInstall?4(package, version, mpy)
+eric7.MicroPython.Devices.DeviceBase.BaseDevice.mipInstall?4(package, index=None, target=None, version=None, mpy=True)
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.mkdir?4(dirname)
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.put?4(hostFileName, deviceFileName=None)
 eric7.MicroPython.Devices.DeviceBase.BaseDevice.putData?4(deviceFileName, content)
@@ -3076,6 +3078,10 @@
 eric7.MicroPython.MicroPythonWidget.MicroPythonWidget.showError?4(method, error)
 eric7.MicroPython.MicroPythonWidget.MicroPythonWidget.shutdown?4()
 eric7.MicroPython.MicroPythonWidget.MicroPythonWidget?1(parent=None)
+eric7.MicroPython.MipLocalInstaller.MicroPythonPackageIndex?7
+eric7.MicroPython.MipLocalInstaller.MipLocalInstaller.errorString?4()
+eric7.MicroPython.MipLocalInstaller.MipLocalInstaller.installPackage?4(package, index=None, target=None, version=None, mpy=True)
+eric7.MicroPython.MipLocalInstaller.MipLocalInstaller?1(device, parent=None)
 eric7.MicroPython.MipPackageDialog.MipPackageDialog.getData?4()
 eric7.MicroPython.MipPackageDialog.MipPackageDialog?1(parent=None)
 eric7.MicroPython.NtpParametersDialog.NtpParametersDialog.accept?4()
--- a/src/eric7/APIs/Python3/eric7.bas	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/APIs/Python3/eric7.bas	Sat Apr 15 18:22:09 2023 +0200
@@ -671,6 +671,7 @@
 MimeTypesPage ConfigurationPageBase Ui_MimeTypesPage
 MiniEditor EricMainWindow
 MiniScintilla QsciScintillaCompat
+MipLocalInstaller QObject
 MipPackageDialog QDialog Ui_MipPackageDialog
 Module ClbrBaseClasses.Module VisibilityMixin
 ModuleItem UMLItem
Binary file src/eric7/Documentation/Help/source.qch has changed
--- a/src/eric7/Documentation/Help/source.qhp	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/Documentation/Help/source.qhp	Sat Apr 15 18:22:09 2023 +0200
@@ -329,6 +329,7 @@
             <section title="eric7.MicroPython.MicroPythonProgressInfoDialog" ref="eric7.MicroPython.MicroPythonProgressInfoDialog.html" />
             <section title="eric7.MicroPython.MicroPythonSerialPort" ref="eric7.MicroPython.MicroPythonSerialPort.html" />
             <section title="eric7.MicroPython.MicroPythonWidget" ref="eric7.MicroPython.MicroPythonWidget.html" />
+            <section title="eric7.MicroPython.MipLocalInstaller" ref="eric7.MicroPython.MipLocalInstaller.html" />
             <section title="eric7.MicroPython.MipPackageDialog" ref="eric7.MicroPython.MipPackageDialog.html" />
             <section title="eric7.MicroPython.NtpParametersDialog" ref="eric7.MicroPython.NtpParametersDialog.html" />
             <section title="eric7.MicroPython.ShowModulesDialog" ref="eric7.MicroPython.ShowModulesDialog.html" />
@@ -2095,6 +2096,7 @@
       <keyword name="BaseDevice.disconnectFromLan" id="BaseDevice.disconnectFromLan" ref="eric7.MicroPython.Devices.DeviceBase.html#BaseDevice.disconnectFromLan" />
       <keyword name="BaseDevice.disconnectWifi" id="BaseDevice.disconnectWifi" ref="eric7.MicroPython.Devices.DeviceBase.html#BaseDevice.disconnectWifi" />
       <keyword name="BaseDevice.downloadFirmware" id="BaseDevice.downloadFirmware" ref="eric7.MicroPython.Devices.DeviceBase.html#BaseDevice.downloadFirmware" />
+      <keyword name="BaseDevice.ensurePath" id="BaseDevice.ensurePath" ref="eric7.MicroPython.Devices.DeviceBase.html#BaseDevice.ensurePath" />
       <keyword name="BaseDevice.exists" id="BaseDevice.exists" ref="eric7.MicroPython.Devices.DeviceBase.html#BaseDevice.exists" />
       <keyword name="BaseDevice.fileSystemInfo" id="BaseDevice.fileSystemInfo" ref="eric7.MicroPython.Devices.DeviceBase.html#BaseDevice.fileSystemInfo" />
       <keyword name="BaseDevice.forceInterrupt" id="BaseDevice.forceInterrupt" ref="eric7.MicroPython.Devices.DeviceBase.html#BaseDevice.forceInterrupt" />
@@ -2110,6 +2112,7 @@
       <keyword name="BaseDevice.getDownloadMenuEntries" id="BaseDevice.getDownloadMenuEntries" ref="eric7.MicroPython.Devices.DeviceBase.html#BaseDevice.getDownloadMenuEntries" />
       <keyword name="BaseDevice.getEthernetStatus" id="BaseDevice.getEthernetStatus" ref="eric7.MicroPython.Devices.DeviceBase.html#BaseDevice.getEthernetStatus" />
       <keyword name="BaseDevice.getFirmwareUrl" id="BaseDevice.getFirmwareUrl" ref="eric7.MicroPython.Devices.DeviceBase.html#BaseDevice.getFirmwareUrl" />
+      <keyword name="BaseDevice.getLibPaths" id="BaseDevice.getLibPaths" ref="eric7.MicroPython.Devices.DeviceBase.html#BaseDevice.getLibPaths" />
       <keyword name="BaseDevice.getModules" id="BaseDevice.getModules" ref="eric7.MicroPython.Devices.DeviceBase.html#BaseDevice.getModules" />
       <keyword name="BaseDevice.getTime" id="BaseDevice.getTime" ref="eric7.MicroPython.Devices.DeviceBase.html#BaseDevice.getTime" />
       <keyword name="BaseDevice.getWifiData" id="BaseDevice.getWifiData" ref="eric7.MicroPython.Devices.DeviceBase.html#BaseDevice.getWifiData" />
@@ -11128,6 +11131,15 @@
       <keyword name="MiniScintilla.keyPressEvent" id="MiniScintilla.keyPressEvent" ref="eric7.QScintilla.MiniEditor.html#MiniScintilla.keyPressEvent" />
       <keyword name="MiniScintilla.mousePressEvent" id="MiniScintilla.mousePressEvent" ref="eric7.QScintilla.MiniEditor.html#MiniScintilla.mousePressEvent" />
       <keyword name="MiniScintilla.removeTrailingWhitespace" id="MiniScintilla.removeTrailingWhitespace" ref="eric7.QScintilla.MiniEditor.html#MiniScintilla.removeTrailingWhitespace" />
+      <keyword name="MipLocalInstaller" id="MipLocalInstaller" ref="eric7.MicroPython.MipLocalInstaller.html#MipLocalInstaller" />
+      <keyword name="MipLocalInstaller (Constructor)" id="MipLocalInstaller (Constructor)" ref="eric7.MicroPython.MipLocalInstaller.html#MipLocalInstaller.__init__" />
+      <keyword name="MipLocalInstaller (Module)" id="MipLocalInstaller (Module)" ref="eric7.MicroPython.MipLocalInstaller.html" />
+      <keyword name="MipLocalInstaller.__getFile" id="MipLocalInstaller.__getFile" ref="eric7.MicroPython.MipLocalInstaller.html#MipLocalInstaller.__getFile" />
+      <keyword name="MipLocalInstaller.__installFile" id="MipLocalInstaller.__installFile" ref="eric7.MicroPython.MipLocalInstaller.html#MipLocalInstaller.__installFile" />
+      <keyword name="MipLocalInstaller.__installJson" id="MipLocalInstaller.__installJson" ref="eric7.MicroPython.MipLocalInstaller.html#MipLocalInstaller.__installJson" />
+      <keyword name="MipLocalInstaller.__rewriteUrl" id="MipLocalInstaller.__rewriteUrl" ref="eric7.MicroPython.MipLocalInstaller.html#MipLocalInstaller.__rewriteUrl" />
+      <keyword name="MipLocalInstaller.errorString" id="MipLocalInstaller.errorString" ref="eric7.MicroPython.MipLocalInstaller.html#MipLocalInstaller.errorString" />
+      <keyword name="MipLocalInstaller.installPackage" id="MipLocalInstaller.installPackage" ref="eric7.MicroPython.MipLocalInstaller.html#MipLocalInstaller.installPackage" />
       <keyword name="MipPackageDialog" id="MipPackageDialog" ref="eric7.MicroPython.MipPackageDialog.html#MipPackageDialog" />
       <keyword name="MipPackageDialog (Constructor)" id="MipPackageDialog (Constructor)" ref="eric7.MicroPython.MipPackageDialog.html#MipPackageDialog.__init__" />
       <keyword name="MipPackageDialog (Module)" id="MipPackageDialog (Module)" ref="eric7.MicroPython.MipPackageDialog.html" />
@@ -20556,6 +20568,7 @@
       <file>eric7.MicroPython.MicroPythonProgressInfoDialog.html</file>
       <file>eric7.MicroPython.MicroPythonSerialPort.html</file>
       <file>eric7.MicroPython.MicroPythonWidget.html</file>
+      <file>eric7.MicroPython.MipLocalInstaller.html</file>
       <file>eric7.MicroPython.MipPackageDialog.html</file>
       <file>eric7.MicroPython.NtpParametersDialog.html</file>
       <file>eric7.MicroPython.ShowModulesDialog.html</file>
--- a/src/eric7/Documentation/Source/eric7.MicroPython.Devices.DeviceBase.html	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/Documentation/Source/eric7.MicroPython.Devices.DeviceBase.html	Sat Apr 15 18:22:09 2023 +0200
@@ -75,6 +75,9 @@
     <li>getTime: get the current time</li>
     <li>showTime: show the current time of the connected device</li>
     <li>syncTime: synchronize the time of the connected device</li>
+    <li>mipInstall: install a MicroPython package with 'mip'</li>
+    <li>upipInstall: install a MicroPython package with 'upip'</li>
+    <li>getLibPaths: get a list of library paths contained in sys.path</li>
     </ul>
 </p>
 <p>
@@ -244,6 +247,10 @@
 <td>Public method to download the device firmware.</td>
 </tr>
 <tr>
+<td><a href="#BaseDevice.ensurePath">ensurePath</a></td>
+<td>Public method to ensure, that the given target path exists.</td>
+</tr>
+<tr>
 <td><a href="#BaseDevice.exists">exists</a></td>
 <td>Public method to check the existence of a file or directory.</td>
 </tr>
@@ -304,6 +311,10 @@
 <td>Public method to get the device firmware download URL.</td>
 </tr>
 <tr>
+<td><a href="#BaseDevice.getLibPaths">getLibPaths</a></td>
+<td>Public method to get the list of library paths contained in 'sys.path'.</td>
+</tr>
+<tr>
 <td><a href="#BaseDevice.getModules">getModules</a></td>
 <td>Public method to show a list of modules built into the firmware.</td>
 </tr>
@@ -1045,6 +1056,20 @@
 <p>
         Public method to download the device firmware.
 </p>
+<a NAME="BaseDevice.ensurePath" ID="BaseDevice.ensurePath"></a>
+<h4>BaseDevice.ensurePath</h4>
+<b>ensurePath</b>(<i>target</i>)
+
+<p>
+        Public method to ensure, that the given target path exists.
+</p>
+<dl>
+
+<dt><i>target</i> (str)</dt>
+<dd>
+target directory
+</dd>
+</dl>
 <a NAME="BaseDevice.exists" ID="BaseDevice.exists"></a>
 <h4>BaseDevice.exists</h4>
 <b>exists</b>(<i>pathname</i>)
@@ -1413,6 +1438,32 @@
 str
 </dd>
 </dl>
+<a NAME="BaseDevice.getLibPaths" ID="BaseDevice.getLibPaths"></a>
+<h4>BaseDevice.getLibPaths</h4>
+<b>getLibPaths</b>(<i></i>)
+
+<p>
+        Public method to get the list of library paths contained in 'sys.path'.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+list of library paths
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+list of str
+</dd>
+</dl>
+<dl>
+
+<dt>Raises <b>OSError</b>:</dt>
+<dd>
+raised to indicate an issue with the device
+</dd>
+</dl>
 <a NAME="BaseDevice.getModules" ID="BaseDevice.getModules"></a>
 <h4>BaseDevice.getModules</h4>
 <b>getModules</b>(<i></i>)
@@ -1769,7 +1820,7 @@
 </dl>
 <a NAME="BaseDevice.mipInstall" ID="BaseDevice.mipInstall"></a>
 <h4>BaseDevice.mipInstall</h4>
-<b>mipInstall</b>(<i>package, version, mpy</i>)
+<b>mipInstall</b>(<i>package, index=None, target=None, version=None, mpy=True</i>)
 
 <p>
         Public method to install packages using 'mip'.
@@ -1780,13 +1831,21 @@
 <dd>
 package name
 </dd>
-<dt><i>version</i> (str)</dt>
+<dt><i>index</i> (str (optional))</dt>
 <dd>
-package version
+URL of the package index to be used (defaults to None)
+</dd>
+<dt><i>target</i> (str (optional))</dt>
+<dd>
+target directory on the device (defaults to None)
 </dd>
-<dt><i>mpy</i> (bool)</dt>
+<dt><i>version</i> (str (optional))</dt>
 <dd>
-flag indicating to install as '.mpy' file
+package version (defaults to None)
+</dd>
+<dt><i>mpy</i> (bool (optional))</dt>
+<dd>
+flag indicating to install as '.mpy' file (defaults to True)
 </dd>
 </dl>
 <dl>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/Documentation/Source/eric7.MicroPython.MipLocalInstaller.html	Sat Apr 15 18:22:09 2023 +0200
@@ -0,0 +1,308 @@
+<!DOCTYPE html>
+<html><head>
+<title>eric7.MicroPython.MipLocalInstaller</title>
+<meta charset="UTF-8">
+<link rel="stylesheet" href="styles.css">
+</head>
+<body>
+<a NAME="top" ID="top"></a>
+<h1>eric7.MicroPython.MipLocalInstaller</h1>
+
+<p>
+Module implementing a MicroPython package installer for devices missing the onboard
+'mip' package.
+</p>
+<h3>Global Attributes</h3>
+
+<table>
+<tr><td>MicroPythonPackageIndex</td></tr>
+</table>
+<h3>Classes</h3>
+
+<table>
+
+<tr>
+<td><a href="#MipLocalInstaller">MipLocalInstaller</a></td>
+<td>Class implementing a MicroPython package installer ('mip' replacement).</td>
+</tr>
+</table>
+<h3>Functions</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<hr />
+<hr />
+<a NAME="MipLocalInstaller" ID="MipLocalInstaller"></a>
+<h2>MipLocalInstaller</h2>
+
+<p>
+    Class implementing a MicroPython package installer ('mip' replacement).
+</p>
+<h3>Derived from</h3>
+QObject
+<h3>Class Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Class Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+
+<table>
+
+<tr>
+<td><a href="#MipLocalInstaller.__init__">MipLocalInstaller</a></td>
+<td>Constructor</td>
+</tr>
+<tr>
+<td><a href="#MipLocalInstaller.__getFile">__getFile</a></td>
+<td>Private method to download the requested file.</td>
+</tr>
+<tr>
+<td><a href="#MipLocalInstaller.__installFile">__installFile</a></td>
+<td>Private method to download a file and copy the data to the given target directory.</td>
+</tr>
+<tr>
+<td><a href="#MipLocalInstaller.__installJson">__installJson</a></td>
+<td>Private method to install a package and its dependencies as defined by the package JSON file.</td>
+</tr>
+<tr>
+<td><a href="#MipLocalInstaller.__rewriteUrl">__rewriteUrl</a></td>
+<td>Private method to rewrite the given URL in case of a Github URL.</td>
+</tr>
+<tr>
+<td><a href="#MipLocalInstaller.errorString">errorString</a></td>
+<td>Public method to get the last error as a string.</td>
+</tr>
+<tr>
+<td><a href="#MipLocalInstaller.installPackage">installPackage</a></td>
+<td>Public method to install a MicroPython package.</td>
+</tr>
+</table>
+<h3>Static Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+
+<a NAME="MipLocalInstaller.__init__" ID="MipLocalInstaller.__init__"></a>
+<h4>MipLocalInstaller (Constructor)</h4>
+<b>MipLocalInstaller</b>(<i>device, parent=None</i>)
+
+<p>
+        Constructor
+</p>
+<dl>
+
+<dt><i>device</i> (BaseDevice)</dt>
+<dd>
+reference to the connected device
+</dd>
+<dt><i>parent</i> (QObject (optional))</dt>
+<dd>
+reference to the parent object (defaults to None)
+</dd>
+</dl>
+<a NAME="MipLocalInstaller.__getFile" ID="MipLocalInstaller.__getFile"></a>
+<h4>MipLocalInstaller.__getFile</h4>
+<b>__getFile</b>(<i>fileUrl</i>)
+
+<p>
+        Private method to download the requested file.
+</p>
+<dl>
+
+<dt><i>fileUrl</i> (QUrl)</dt>
+<dd>
+URL of the requested file
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+package data or an error message and a success flag
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+tuple of (bytes or str, bool)
+</dd>
+</dl>
+<a NAME="MipLocalInstaller.__installFile" ID="MipLocalInstaller.__installFile"></a>
+<h4>MipLocalInstaller.__installFile</h4>
+<b>__installFile</b>(<i>fileUrl, targetDir, targetFile</i>)
+
+<p>
+        Private method to download a file and copy the data to the given target
+        directory.
+</p>
+<dl>
+
+<dt><i>fileUrl</i> (str)</dt>
+<dd>
+URL of the file to be downloaded and installed
+</dd>
+<dt><i>targetDir</i> (str)</dt>
+<dd>
+target directory on the device
+</dd>
+<dt><i>targetFile</i> (str)</dt>
+<dd>
+file name on the device
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating success
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
+<a NAME="MipLocalInstaller.__installJson" ID="MipLocalInstaller.__installJson"></a>
+<h4>MipLocalInstaller.__installJson</h4>
+<b>__installJson</b>(<i>packageJson, version, mpy, target, index</i>)
+
+<p>
+        Private method to install a package and its dependencies as defined by the
+        package JSON file.
+</p>
+<dl>
+
+<dt><i>packageJson</i> (dict)</dt>
+<dd>
+dictionary containing the package data
+</dd>
+<dt><i>version</i> (str)</dt>
+<dd>
+package version
+</dd>
+<dt><i>mpy</i> (bool)</dt>
+<dd>
+flag indicating to install as '.mpy' file
+</dd>
+<dt><i>target</i> (str)</dt>
+<dd>
+target directory on the device
+</dd>
+<dt><i>index</i> (str)</dt>
+<dd>
+URL of the package index to be used
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating success
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
+<a NAME="MipLocalInstaller.__rewriteUrl" ID="MipLocalInstaller.__rewriteUrl"></a>
+<h4>MipLocalInstaller.__rewriteUrl</h4>
+<b>__rewriteUrl</b>(<i>url, branch=None</i>)
+
+<p>
+        Private method to rewrite the given URL in case of a Github URL.
+</p>
+<dl>
+
+<dt><i>url</i> (str)</dt>
+<dd>
+URL to be checked and potentially changed
+</dd>
+<dt><i>branch</i> (str (optional))</dt>
+<dd>
+branch name (defaults to None)
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+rewritten URL
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+str
+</dd>
+</dl>
+<a NAME="MipLocalInstaller.errorString" ID="MipLocalInstaller.errorString"></a>
+<h4>MipLocalInstaller.errorString</h4>
+<b>errorString</b>(<i></i>)
+
+<p>
+        Public method to get the last error as a string.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+latest error
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+str
+</dd>
+</dl>
+<a NAME="MipLocalInstaller.installPackage" ID="MipLocalInstaller.installPackage"></a>
+<h4>MipLocalInstaller.installPackage</h4>
+<b>installPackage</b>(<i>package, index=None, target=None, version=None, mpy=True</i>)
+
+<p>
+        Public method to install a MicroPython package.
+</p>
+<dl>
+
+<dt><i>package</i> (str)</dt>
+<dd>
+package name
+</dd>
+<dt><i>index</i> (str (optional))</dt>
+<dd>
+URL of the package index to be used (defaults to None)
+</dd>
+<dt><i>target</i> (str (optional))</dt>
+<dd>
+target directory on the device (defaults to None)
+</dd>
+<dt><i>version</i> (str (optional))</dt>
+<dd>
+package version (defaults to None)
+</dd>
+<dt><i>mpy</i> (bool (optional))</dt>
+<dd>
+flag indicating to install as '.mpy' file (defaults to True)
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating success
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file
--- a/src/eric7/Documentation/Source/eric7.MicroPython.MipPackageDialog.html	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/Documentation/Source/eric7.MicroPython.MipPackageDialog.html	Sat Apr 15 18:22:09 2023 +0200
@@ -104,14 +104,15 @@
 <dl>
 <dt>Return:</dt>
 <dd>
-tuple containing the package name, package version and a flag,
-            indicating to install the package as '.mpy ' files
+tuple containing the package name, package version, a flag indicating
+            to install the package as '.mpy ' file, the target directory on the device
+            and the package index to get the package from
 </dd>
 </dl>
 <dl>
 <dt>Return Type:</dt>
 <dd>
-tuple of (str, str, bool)
+tuple of (str, str, bool, str, str)
 </dd>
 </dl>
 <div align="right"><a href="#top">Up</a></div>
--- a/src/eric7/Documentation/Source/index-eric7.MicroPython.html	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/Documentation/Source/index-eric7.MicroPython.html	Sat Apr 15 18:22:09 2023 +0200
@@ -92,6 +92,10 @@
 <td>Module implementing the MicroPython REPL widget.</td>
 </tr>
 <tr>
+<td><a href="eric7.MicroPython.MipLocalInstaller.html">MipLocalInstaller</a></td>
+<td>Module implementing a MicroPython package installer for devices missing the onboard 'mip' package.</td>
+</tr>
+<tr>
 <td><a href="eric7.MicroPython.MipPackageDialog.html">MipPackageDialog</a></td>
 <td>Module implementing a dialog to enter the package data for 'mip'.</td>
 </tr>
--- a/src/eric7/MicroPython/Devices/CircuitPythonDevices.py	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/MicroPython/Devices/CircuitPythonDevices.py	Sat Apr 15 18:22:09 2023 +0200
@@ -129,6 +129,7 @@
             self.__flashMenu.hideTearOffMenu()
 
         super().setConnected(connected)
+        self._deviceData["local_mip"] = False
 
         if (
             connected
--- a/src/eric7/MicroPython/Devices/DeviceBase.py	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/MicroPython/Devices/DeviceBase.py	Sat Apr 15 18:22:09 2023 +0200
@@ -59,6 +59,9 @@
     <li>getTime: get the current time</li>
     <li>showTime: show the current time of the connected device</li>
     <li>syncTime: synchronize the time of the connected device</li>
+    <li>mipInstall: install a MicroPython package with 'mip'</li>
+    <li>upipInstall: install a MicroPython package with 'upip'</li>
+    <li>getLibPaths: get a list of library paths contained in sys.path</li>
     </ul>
 
     Supported WiFi commands are:
@@ -136,6 +139,9 @@
         if connected:
             with contextlib.suppress(OSError):
                 self._deviceData = self.__getDeviceData()
+                self._deviceData["local_mip"] = (
+                    not self._deviceData["mip"] and not self._deviceData["upip"]
+                )
                 self._deviceData["wifi"], self._deviceData["wifi_type"] = self.hasWifi()
                 self._deviceData["bluetooth"] = self.hasBluetooth()
                 (
@@ -972,6 +978,27 @@
 
         return tuple(filesystemInfos)
 
+    def ensurePath(self, target):
+        """
+        Public method to ensure, that the given target path exists.
+
+        @param target target directory
+        @type str
+        """
+        pathParts = target.split("/")
+
+        # handle targets starting with "/"
+        if not pathParts[0]:
+            pathParts.pop(0)
+            pathParts[0] = "/" + pathParts[0]
+
+        directory = ""
+        for index in range(len(pathParts)):
+            directory += pathParts[index]
+            if not self.exists(directory):
+                self.mkdir(directory)
+            directory += "/"
+
     ##################################################################
     ## board information related methods below
     ##################################################################
@@ -1018,6 +1045,13 @@
     except AttributeError:
         res['mpy_version'] = 'unknown'
 
+    if hasattr(sys.implementation, '_mpy'):
+        res['mpy_file_version'] = sys.implementation._mpy & 0xff
+    elif hasattr(sys.implementation, 'mpy'):
+        res['mpy_file_version'] = sys.implementation.mpy & 0xff
+    else:
+        res['mpy_file_version'] = 0
+
     try:
         import pimoroni
         res['mpy_variant'] = 'Pimoroni Pico'
@@ -1322,20 +1356,28 @@
         )
         return self._interface.execute(command, mode=self._submitMode, timeout=60000)
 
-    def mipInstall(self, package, version, mpy):
+    def mipInstall(self, package, index=None, target=None, version=None, mpy=True):
         """
         Public method to install packages using 'mip'.
 
         @param package package name
         @type str
-        @param version package version
-        @type str
-        @param mpy flag indicating to install as '.mpy' file
-        @type bool
+        @param index URL of the package index to be used (defaults to None)
+        @type str (optional)
+        @param target target directory on the device (defaults to None)
+        @type str (optional)
+        @param version package version (defaults to None)
+        @type str (optional)
+        @param mpy flag indicating to install as '.mpy' file (defaults to True)
+        @type bool (optional)
         @return tuple containing the command output and errors
         @return tuple of (str, str)
         """
         parameterStr = repr(package)
+        if index:
+            parameterStr += ", index={0}".format(repr(index))
+        if target:
+            parameterStr += ", target={0}".format(repr(target))
         if version:
             parameterStr += ", version={0}".format(repr(version))
         if not mpy:
@@ -1353,6 +1395,28 @@
         )
         return self._interface.execute(command, mode=self._submitMode, timeout=60000)
 
+    def getLibPaths(self):
+        """
+        Public method to get the list of library paths contained in 'sys.path'.
+
+        @return list of library paths
+        @rtype list of str
+        @exception OSError raised to indicate an issue with the device
+        """
+        command = """
+def lib_paths():
+    import sys
+    print([p for p in sys.path if p.endswith('/lib')])
+
+lib_paths()
+del lib_paths
+"""
+        out, err = self._interface.execute(command, mode=self._submitMode)
+        if err:
+            raise OSError(self._shortError(err))
+
+        return ast.literal_eval(out.decode("utf-8"))
+
     ##################################################################
     ## Methods below implement WiFi related methods
     ##################################################################
--- a/src/eric7/MicroPython/Devices/MicrobitDevices.py	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/MicroPython/Devices/MicrobitDevices.py	Sat Apr 15 18:22:09 2023 +0200
@@ -73,6 +73,8 @@
         """
         super().setConnected(connected)
 
+        self._deviceData["local_mip"] = False
+
         if self.hasCircuitPython():
             self._submitMode = "paste"
 
--- a/src/eric7/MicroPython/MicroPythonWidget.py	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/MicroPython/MicroPythonWidget.py	Sat Apr 15 18:22:09 2023 +0200
@@ -1483,9 +1483,11 @@
         if self.__device:
             hasMip = self.__device.getDeviceData("mip")
             hasUPip = self.__device.getDeviceData("upip")
+            useLocalMip = self.__device.getDeviceData("local_mip")
         else:
             hasMip = False
             hasUPip = False
+            useLocalMip = False
 
         # prepare the download menu
         if self.__device:
@@ -1571,6 +1573,10 @@
             self.__superMenu.addAction(
                 self.tr("Install Packages"), lambda: self.__installPackage("upip")
             ).setEnabled(self.__connected)
+        elif useLocalMip:
+            self.__superMenu.addAction(
+                self.tr("Install Package"), lambda: self.__installPackage("local_mip")
+            ).setEnabled(self.__connected)
         self.__superMenu.addSeparator()
         if not OSUtilities.isWindowsPlatform():
             available = self.__mpyCrossAvailable()
@@ -2125,20 +2131,49 @@
         @exception ValueError raised to indicate an unsupported package management
             method
         """
+        from .MipLocalInstaller import MipLocalInstaller
         from .MipPackageDialog import MipPackageDialog
 
-        if method not in ("mip", "upip"):
+        if method not in ("local_mip", "mip", "upip"):
             raise ValueError(
-                "Unsupported method given. Expected 'mip' or 'upip' but got {0}."
+                "Unsupported method given. Expected 'local_mip', 'mip' or 'upip' but"
+                " got {0}."
             ).format(method)
 
-        if method == "mip":
+        if method in ("local_mip", "mip"):
             title = self.tr("Install Package")
             dlg = MipPackageDialog(self)
             if dlg.exec() == QDialog.DialogCode.Accepted:
-                package, version, mpy = dlg.getData()
-                with EricOverrideCursor():
-                    out, err = self.__device.mipInstall(package, version, mpy)
+                package, version, mpy, target, index = dlg.getData()
+                if method == "mip":
+                    with EricOverrideCursor():
+                        out, err = self.__device.mipInstall(
+                            package,
+                            index=index,
+                            target=target,
+                            version=version,
+                            mpy=mpy,
+                        )
+                else:
+                    installer = MipLocalInstaller(self.__device)
+                    with EricOverrideCursor():
+                        ok = installer.installPackage(
+                            package,
+                            index=index,
+                            target=target,
+                            version=version,
+                            mpy=mpy,
+                        )
+                    if ok:
+                        out = (
+                            self.tr("Package '{0}' was installed successfully.")
+                            .format(package)
+                            .encode("utf-8")
+                        )
+                        err = b""
+                    else:
+                        out = b""
+                        err = installer.errorString().encode("utf-8")
             else:
                 return
         elif method == "upip":
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/MicroPython/MipLocalInstaller.py	Sat Apr 15 18:22:09 2023 +0200
@@ -0,0 +1,240 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2023 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing a MicroPython package installer for devices missing the onboard
+'mip' package.
+"""
+
+import json
+
+from PyQt6.QtCore import QEventLoop, QObject, QUrl
+from PyQt6.QtNetwork import QNetworkAccessManager, QNetworkReply, QNetworkRequest
+
+from eric7.EricNetwork.EricNetworkProxyFactory import proxyAuthenticationRequired
+
+MicroPythonPackageIndex = "https://micropython.org/pi/v2"
+
+
+class MipLocalInstaller(QObject):
+    """
+    Class implementing a MicroPython package installer ('mip' replacement).
+    """
+
+    def __init__(self, device, parent=None):
+        """
+        Constructor
+
+        @param device reference to the connected device
+        @type BaseDevice
+        @param parent reference to the parent object (defaults to None)
+        @type QObject (optional)
+        """
+        super().__init__(parent)
+
+        self.__device = device
+        self.__error = ""
+
+        self.__networkManager = QNetworkAccessManager(self)
+        self.__networkManager.proxyAuthenticationRequired.connect(
+            proxyAuthenticationRequired
+        )
+
+        self.__loop = QEventLoop()
+        self.__networkManager.finished.connect(self.__loop.quit)
+
+    def __rewriteUrl(self, url, branch=None):
+        """
+        Private method to rewrite the given URL in case of a Github URL.
+
+        @param url URL to be checked and potentially changed
+        @type str
+        @param branch branch name (defaults to None)
+        @type str (optional)
+        @return rewritten URL
+        @rtype str
+        """
+        if url.startswith("github:"):
+            urlList = url[7:].split("/")
+            if branch is None:
+                branch = "HEAD"
+            url = (
+                "https://raw.githubusercontent.com/"
+                + urlList[0]
+                + "/"
+                + urlList[1]
+                + "/"
+                + branch
+                + "/"
+                + "/".join(urlList[2:])
+            )
+
+        return url
+
+    def __getFile(self, fileUrl):
+        """
+        Private method to download the requested file.
+
+        @param fileUrl URL of the requested file
+        @type QUrl
+        @return package data or an error message and a success flag
+        @rtype tuple of (bytes or str, bool)
+        """
+        request = QNetworkRequest(fileUrl)
+        reply = self.__networkManager.get(request)
+        if not self.__loop.isRunning():
+            self.__loop.exec()
+        if reply.error() != QNetworkReply.NetworkError.NoError:
+            return reply.errorString(), False
+        else:
+            return bytes(reply.readAll()), True
+
+    def __installFile(self, fileUrl, targetDir, targetFile):
+        """
+        Private method to download a file and copy the data to the given target
+        directory.
+
+        @param fileUrl URL of the file to be downloaded and installed
+        @type str
+        @param targetDir target directory on the device
+        @type str
+        @param targetFile file name on the device
+        @type str
+        @return flag indicating success
+        @rtype  bool
+        """
+        fileData, ok = self.__getFile(fileUrl)
+        if not ok:
+            self.__error = fileData
+            return False
+
+        try:
+            targetFilePath = "{0}/{1}".format(targetDir, targetFile)
+            self.__device.ensurePath(targetFilePath.rsplit("/", 1)[0])
+            self.__device.putData(targetFilePath, fileData)
+        except OSError as err:
+            self.__error = err
+            return False
+
+        return True
+
+    def __installJson(self, packageJson, version, mpy, target, index):
+        """
+        Private method to install a package and its dependencies as defined by the
+        package JSON file.
+
+        @param packageJson dictionary containing the package data
+        @type dict
+        @param version package version
+        @type str
+        @param mpy flag indicating to install as '.mpy' file
+        @type bool
+        @param target target directory on the device
+        @type str
+        @param index URL of the package index to be used
+        @type str
+        @return flag indicating success
+        @rtype  bool
+        """
+        for targetFile, shortHash in packageJson.get("hashes", ()):
+            fileUrl = QUrl("{0}/file/{1}/{2}".format(index, shortHash[:2], shortHash))
+            if not self.__installFile(fileUrl, target, targetFile):
+                return False
+
+        for targetFile, url in packageJson.get("urls", ()):
+            if not self.__installFile(
+                self.__rewriteUrl(url, branch=version), target, targetFile
+            ):
+                return False
+
+        for dependency, dependencyVersion in packageJson.get("deps", ()):
+            self.installPackage(dependency, dependencyVersion, mpy, target=target)
+
+        return True
+
+    def installPackage(self, package, index=None, target=None, version=None, mpy=True):
+        """
+        Public method to install a MicroPython package.
+
+        @param package package name
+        @type str
+        @param index URL of the package index to be used (defaults to None)
+        @type str (optional)
+        @param target target directory on the device (defaults to None)
+        @type str (optional)
+        @param version package version (defaults to None)
+        @type str (optional)
+        @param mpy flag indicating to install as '.mpy' file (defaults to True)
+        @type bool (optional)
+        @return flag indicating success
+        @rtype  bool
+        """
+        self.__error = ""
+
+        if not bool(index):
+            index = MicroPythonPackageIndex
+        index = index.rstrip("/")
+
+        if not target:
+            libPaths = self.__device.getLibPaths()
+            if libPaths and libPaths[0]:
+                target = libPaths[0]
+            else:
+                self.__error = self.tr(
+                    "Unable to find 'lib' in sys.path. Please enter a target."
+                )
+                return False
+
+        if package.startswith(("http://", "https://", "github:")):
+            if package.endswith(".py") or package.endswith(".mpy"):
+                return self.__installFile(
+                    self.__rewriteUrl(package, version),
+                    target,
+                    package.rsplit("/", 1)[-1],
+                )
+            else:
+                if not package.endswith(".json"):
+                    if not package.endswith("/"):
+                        package += "/"
+                    package += "package.json"
+        else:
+            if not version:
+                version = "latest"
+
+            mpyVersion = "py"
+            if mpy and self.__device.getDeviceData("mpy_file_version") > 0:
+                mpyVersion = self.__device.getDeviceData("mpy_file_version")
+
+            packageJsonUrl = QUrl(
+                "{0}/package/{1}/{2}/{3}.json".format(
+                    index, mpyVersion, package, version
+                )
+            )
+
+        jsonData, ok = self.__getFile(packageJsonUrl)
+        if not ok:
+            self.__error = jsonData
+            return False
+
+        try:
+            packageJson = json.loads(jsonData.decode("utf-8"))
+        except json.JSONDecodeError as err:
+            self.__error = str(err)
+            return False
+
+        ok = self.__installJson(packageJson, version, mpy, target, index)
+        if not ok:
+            self.__error += self.tr("\n\nPackage may be partially installed.")
+
+        return ok
+
+    def errorString(self):
+        """
+        Public method to get the last error as a string.
+
+        @return latest error
+        @rtype str
+        """
+        return self.__error
--- a/src/eric7/MicroPython/MipPackageDialog.py	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/MicroPython/MipPackageDialog.py	Sat Apr 15 18:22:09 2023 +0200
@@ -11,6 +11,7 @@
 from PyQt6.QtWidgets import QDialog, QDialogButtonBox
 from semver import VersionInfo
 
+from .MipLocalInstaller import MicroPythonPackageIndex
 from .Ui_MipPackageDialog import Ui_MipPackageDialog
 
 
@@ -29,6 +30,13 @@
         super().__init__(parent)
         self.setupUi(self)
 
+        self.indexEdit.setToolTip(
+            self.tr(
+                "Enter the URL of the package index. Leave empty to use the default"
+                " index ({0})."
+            ).format(MicroPythonPackageIndex)
+        )
+
         self.packageEdit.textChanged.connect(self.__updateOk)
         self.versionEdit.textChanged.connect(self.__updateOk)
 
@@ -53,12 +61,15 @@
         """
         Public method to get the entered package installation data.
 
-        @return tuple containing the package name, package version and a flag,
-            indicating to install the package as '.mpy ' files
-        @rtype tuple of (str, str, bool)
+        @return tuple containing the package name, package version, a flag indicating
+            to install the package as '.mpy ' file, the target directory on the device
+            and the package index to get the package from
+        @rtype tuple of (str, str, bool, str, str)
         """
         return (
             self.packageEdit.text(),
             self.versionEdit.text(),
             self.mpyCheckBox.isChecked(),
+            self.targetEdit.text(),
+            self.indexEdit.text(),
         )
--- a/src/eric7/MicroPython/MipPackageDialog.ui	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/MicroPython/MipPackageDialog.ui	Sat Apr 15 18:22:09 2023 +0200
@@ -6,8 +6,8 @@
    <rect>
     <x>0</x>
     <y>0</y>
-    <width>400</width>
-    <height>138</height>
+    <width>450</width>
+    <height>202</height>
    </rect>
   </property>
   <property name="windowTitle">
@@ -64,7 +64,41 @@
      </property>
     </widget>
    </item>
-   <item row="3" column="0" colspan="2">
+   <item row="3" column="0">
+    <widget class="QLabel" name="label_3">
+     <property name="text">
+      <string>Target Directory:</string>
+     </property>
+    </widget>
+   </item>
+   <item row="3" column="1">
+    <widget class="QLineEdit" name="targetEdit">
+     <property name="toolTip">
+      <string>Enter the directory to install to (must be contained in sys.path). Leave empty to detect automatically.</string>
+     </property>
+     <property name="clearButtonEnabled">
+      <bool>true</bool>
+     </property>
+    </widget>
+   </item>
+   <item row="4" column="0">
+    <widget class="QLabel" name="label_4">
+     <property name="text">
+      <string>Package Index:</string>
+     </property>
+    </widget>
+   </item>
+   <item row="4" column="1">
+    <widget class="QLineEdit" name="indexEdit">
+     <property name="toolTip">
+      <string/>
+     </property>
+     <property name="clearButtonEnabled">
+      <bool>true</bool>
+     </property>
+    </widget>
+   </item>
+   <item row="5" column="0" colspan="2">
     <widget class="QDialogButtonBox" name="buttonBox">
      <property name="orientation">
       <enum>Qt::Horizontal</enum>
@@ -76,6 +110,13 @@
    </item>
   </layout>
  </widget>
+ <tabstops>
+  <tabstop>packageEdit</tabstop>
+  <tabstop>versionEdit</tabstop>
+  <tabstop>mpyCheckBox</tabstop>
+  <tabstop>targetEdit</tabstop>
+  <tabstop>indexEdit</tabstop>
+ </tabstops>
  <resources/>
  <connections>
   <connection>
--- a/src/eric7/i18n/eric7_cs.ts	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/i18n/eric7_cs.ts	Sat Apr 15 18:22:09 2023 +0200
@@ -1790,77 +1790,77 @@
   <context>
     <name>BaseDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="190" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="196" />
       <source>Device Data Not Available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="191" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="197" />
       <source>&lt;p&gt;The device data is not available. Try to connect to the device again. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="244" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="250" />
       <source>Unsupported Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="254" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="260" />
       <source>REPL is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="273" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="279" />
       <source>Plotter is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="292" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="298" />
       <source>Running scripts is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="311" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="317" />
       <source>File Manager is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="366" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="372" />
       <source>Select Device Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="367" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="373" />
       <source>Select the directory for the connected device:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="513" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="519" />
       <source>Detected an error without indications.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1400" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1464" />
       <source>Operation not supported.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>Yes</source>
       <translation type="unfinished">Ano</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>No</source>
       <translation type="unfinished">Ne</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>yes</source>
       <translation type="unfinished">ano</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>no</source>
       <translation type="unfinished">ne</translation>
     </message>
@@ -4037,17 +4037,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="141" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
       <source>WIZnet 5x00 Ethernet</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="143" />
       <source>&lt;p&gt;Support for &lt;b&gt;WIZnet 5x00&lt;/b&gt; Ethernet boards could not be detected. Is the module &lt;b&gt;adafruit_wiznet5k&lt;/b&gt; installed?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="176" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="177" />
       <source>CircuitPython</source>
       <translation type="unfinished" />
     </message>
@@ -4215,114 +4215,114 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1127" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="864" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1128" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="865" />
       <source>unknown ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1576" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1499" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1039" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="960" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1577" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1500" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1040" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="961" />
       <source>The device volume is not available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1003" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="975" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
       <source>Write WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1539" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1005" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="977" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1546" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="984" />
+      <source>Aborted</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1195" />
+      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1266" />
+      <source>CircuitPython does not support reporting of connected clients.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
+      <source>Active</source>
+      <translation type="unfinished">Aktivní</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
+      <source>Connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
+      <source>IPv4 Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
+      <source>Netmask</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
+      <source>Gateway</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
+      <source>DNS</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1677" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
+      <source>Chip Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1358" />
+      <source>max. Sockets</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1538" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1545" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1011" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="983" />
-      <source>Aborted</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1194" />
-      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1265" />
-      <source>CircuitPython does not support reporting of connected clients.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1674" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1349" />
-      <source>Active</source>
-      <translation type="unfinished">Aktivní</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1680" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
-      <source>Connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
-      <source>IPv4 Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
-      <source>Netmask</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
-      <source>Gateway</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
-      <source>DNS</source>
+      <source>Write Connect Script</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1676" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
-      <source>Chip Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
-      <source>max. Sockets</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1537" />
-      <source>Write Connect Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
       <source>Name</source>
       <translation type="unfinished">Jméno</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1678" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1679" />
       <source>Address Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1682" />
       <source>Advertising</source>
       <translation type="unfinished" />
     </message>
@@ -10362,12 +10362,12 @@
       <translation type="unfinished">&lt;p&gt;Debugovací backend nelze spustit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1378" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1380" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1379" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1381" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -12212,7 +12212,7 @@
       <translation>Zrušit komentář</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9146" />
+      <location filename="../QScintilla/Editor.py" line="9154" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12485,7 +12485,7 @@
       <translation type="unfinished">Pravopis</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8264" />
+      <location filename="../QScintilla/Editor.py" line="8272" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation>Zatrhnout kontrolu...</translation>
@@ -12546,7 +12546,7 @@
       <translation>Editovat breakpoint...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5923" />
+      <location filename="../QScintilla/Editor.py" line="5932" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation>Aktivovat breakpoint</translation>
@@ -12780,356 +12780,356 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5097" />
+      <location filename="../QScintilla/Editor.py" line="5106" />
       <source>Autocompletion</source>
       <translation>Autodoplňování</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5098" />
+      <location filename="../QScintilla/Editor.py" line="5107" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>Autodoplňování není dostupné protože zdrojová část autodoplňování nebyla nalezena.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5226" />
+      <location filename="../QScintilla/Editor.py" line="5235" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5227" />
+      <location filename="../QScintilla/Editor.py" line="5236" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5519" />
+      <location filename="../QScintilla/Editor.py" line="5528" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5520" />
+      <location filename="../QScintilla/Editor.py" line="5529" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5927" />
+      <location filename="../QScintilla/Editor.py" line="5936" />
       <source>Disable breakpoint</source>
       <translation>Deaktivovat breakpoint</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6307" />
+      <location filename="../QScintilla/Editor.py" line="6315" />
       <source>Code Coverage</source>
       <translation>Pokrytí kódu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6308" />
+      <location filename="../QScintilla/Editor.py" line="6316" />
       <source>Please select a coverage file</source>
       <translation>Prosím, vyberte soubor s pokrytím kódu</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="6391" />
       <location filename="../QScintilla/Editor.py" line="6383" />
-      <location filename="../QScintilla/Editor.py" line="6375" />
       <source>Show Code Coverage Annotations</source>
       <translation>Zobrazit poznámky pokrytí kódu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6376" />
-      <source>All lines have been covered.</source>
-      <translation>Všechny řádky byly pokryty.</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="6384" />
+      <source>All lines have been covered.</source>
+      <translation>Všechny řádky byly pokryty.</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="6392" />
       <source>There is no coverage file available.</source>
       <translation>Soubor s pokrytím není dostupný.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6488" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <source>Profile Data</source>
       <translation>Profilovat data</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6489" />
+      <location filename="../QScintilla/Editor.py" line="6497" />
       <source>Please select a profile file</source>
       <translation>Prosím, vyberte soubor s profilem</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6650" />
-      <location filename="../QScintilla/Editor.py" line="6644" />
+      <location filename="../QScintilla/Editor.py" line="6658" />
+      <location filename="../QScintilla/Editor.py" line="6652" />
       <source>Syntax Error</source>
       <translation>Chyba syntaxe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6651" />
+      <location filename="../QScintilla/Editor.py" line="6659" />
       <source>No syntax error message available.</source>
       <translation>Hlášení syntaktické chyby není dostupné.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
-      <location filename="../QScintilla/Editor.py" line="6856" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6864" />
       <source>Warning</source>
       <translation type="unfinished">Varování</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
       <source>No warning messages available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6926" />
+      <location filename="../QScintilla/Editor.py" line="6934" />
       <source>Style: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6929" />
+      <location filename="../QScintilla/Editor.py" line="6937" />
       <source>Warning: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6936" />
+      <location filename="../QScintilla/Editor.py" line="6944" />
       <source>Error: {0}</source>
       <translation type="unfinished">Chyby: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Macro Name</source>
       <translation>Název makra</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Select a macro name:</source>
       <translation>Vyberte název makra:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7069" />
+      <location filename="../QScintilla/Editor.py" line="7077" />
       <source>Load macro file</source>
       <translation>Načíst soubor makra</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7115" />
-      <location filename="../QScintilla/Editor.py" line="7071" />
+      <location filename="../QScintilla/Editor.py" line="7123" />
+      <location filename="../QScintilla/Editor.py" line="7079" />
       <source>Macro files (*.macro)</source>
       <translation>Macro soubory (*.macro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7093" />
-      <location filename="../QScintilla/Editor.py" line="7083" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
+      <location filename="../QScintilla/Editor.py" line="7091" />
       <source>Error loading macro</source>
       <translation>Chyba při načítání makra</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7084" />
+      <location filename="../QScintilla/Editor.py" line="7092" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor s makrem &lt;b&gt;{0}&lt;/b&gt; nelze načíst.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7094" />
+      <location filename="../QScintilla/Editor.py" line="7102" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soubor s makrem &lt;b&gt;{0}&lt;/b&gt; je poškozen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7113" />
+      <location filename="../QScintilla/Editor.py" line="7121" />
       <source>Save macro file</source>
       <translation>Uložit soubor s makrem</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7131" />
+      <location filename="../QScintilla/Editor.py" line="7139" />
       <source>Save macro</source>
       <translation>Uložit makro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7132" />
+      <location filename="../QScintilla/Editor.py" line="7140" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7147" />
+      <location filename="../QScintilla/Editor.py" line="7155" />
       <source>Error saving macro</source>
       <translation>Chyba při ukládání makra</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7148" />
+      <location filename="../QScintilla/Editor.py" line="7156" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;So souboru s makrem &lt;b&gt;{0}&lt;/b&gt; nelze zapisovat.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7161" />
+      <location filename="../QScintilla/Editor.py" line="7169" />
       <source>Start Macro Recording</source>
       <translation>Spustit záznam makra</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7162" />
+      <location filename="../QScintilla/Editor.py" line="7170" />
       <source>Macro recording is already active. Start new?</source>
       <translation>Nahrávání makra již probíhá. Spustit nové?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7188" />
+      <location filename="../QScintilla/Editor.py" line="7196" />
       <source>Macro Recording</source>
       <translation>Záznam makra</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7189" />
+      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation>Vložte název makra:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7340" />
+      <location filename="../QScintilla/Editor.py" line="7348" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7346" />
+      <location filename="../QScintilla/Editor.py" line="7354" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7353" />
+      <location filename="../QScintilla/Editor.py" line="7361" />
       <source>File changed</source>
       <translation>Soubor změněn</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7403" />
+      <location filename="../QScintilla/Editor.py" line="7411" />
       <source>{0} (ro)</source>
       <translation>{0} (ro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7708" />
+      <location filename="../QScintilla/Editor.py" line="7716" />
       <source>Drop Error</source>
       <translation>Zahodit chybu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7709" />
+      <location filename="../QScintilla/Editor.py" line="7717" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; není soubor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7729" />
+      <location filename="../QScintilla/Editor.py" line="7737" />
       <source>Resources</source>
       <translation>Zdroje</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7739" />
       <source>Add file...</source>
       <translation>Přidat soubor...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7732" />
+      <location filename="../QScintilla/Editor.py" line="7740" />
       <source>Add files...</source>
       <translation>Přidat soubory...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7733" />
+      <location filename="../QScintilla/Editor.py" line="7741" />
       <source>Add aliased file...</source>
       <translation>Přidat zástupce souboru...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7735" />
+      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation>Přidat lokalizované resource...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7738" />
+      <location filename="../QScintilla/Editor.py" line="7746" />
       <source>Add resource frame</source>
       <translation>Přidat resource frame</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7765" />
       <source>Add file resource</source>
       <translation>Přidat soubor resource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7771" />
+      <location filename="../QScintilla/Editor.py" line="7779" />
       <source>Add file resources</source>
       <translation>Přidat soubory resource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7795" />
-      <location filename="../QScintilla/Editor.py" line="7789" />
+      <location filename="../QScintilla/Editor.py" line="7803" />
+      <location filename="../QScintilla/Editor.py" line="7797" />
       <source>Add aliased file resource</source>
       <translation>Přidat zástupce souboru resource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7796" />
+      <location filename="../QScintilla/Editor.py" line="7804" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation>Zástupce pro soubor &lt;b&gt;{0}&lt;/b&gt;:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7871" />
+      <location filename="../QScintilla/Editor.py" line="7879" />
       <source>Package Diagram</source>
       <translation>Diagram balíčku</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7872" />
+      <location filename="../QScintilla/Editor.py" line="7880" />
       <source>Include class attributes?</source>
       <translation>Včetně atributů třídy?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7892" />
+      <location filename="../QScintilla/Editor.py" line="7900" />
       <source>Imports Diagram</source>
       <translation>Importovat diagram</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7893" />
+      <location filename="../QScintilla/Editor.py" line="7901" />
       <source>Include imports from external modules?</source>
       <translation>Zahrnout importy z externích modulů?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7912" />
+      <location filename="../QScintilla/Editor.py" line="7920" />
       <source>Application Diagram</source>
       <translation>Diagram aplikace</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7913" />
+      <location filename="../QScintilla/Editor.py" line="7921" />
       <source>Include module names?</source>
       <translation>Včetně jmen modulů?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8268" />
+      <location filename="../QScintilla/Editor.py" line="8276" />
       <source>Add to dictionary</source>
       <translation>Přidat do slovníku</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8270" />
+      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation>Ignorovat vše</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8688" />
+      <location filename="../QScintilla/Editor.py" line="8696" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8689" />
+      <location filename="../QScintilla/Editor.py" line="8697" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8782" />
+      <location filename="../QScintilla/Editor.py" line="8790" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8783" />
+      <location filename="../QScintilla/Editor.py" line="8791" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8879" />
+      <location filename="../QScintilla/Editor.py" line="8887" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8885" />
+      <location filename="../QScintilla/Editor.py" line="8893" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8953" />
+      <location filename="../QScintilla/Editor.py" line="8961" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8954" />
+      <location filename="../QScintilla/Editor.py" line="8962" />
       <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" />
     </message>
@@ -18183,12 +18183,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="222" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation type="unfinished">Načtení kaskádového stylu</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="225" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor Qt Style Sheet &lt;b&gt;{0}&lt;/b&gt; nelze vytvořit.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
@@ -23110,7 +23110,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2719" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
@@ -23173,370 +23173,370 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2277" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2319" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2340" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2341" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2405" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2387" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2388" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2434" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2423" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <source>List Bundle Heads</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
-      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2452" />
-      <source>List Bundle Heads</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2518" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished">Neplatný bisect podpříkaz ({0}).</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2821" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
       <source>Git Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
       <source>Process Generation Error</source>
       <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2747" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2729" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
       <source>Create Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2748" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2765" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2784" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
-      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2810" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3154" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3040" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3041" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3176" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3233" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3264" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3311" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
       <source>Copy Changesets (Cancel)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3429" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3552" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3503" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
       <source>Select a stash (empty for latest stash):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3462" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
       <source>Restore Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3516" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3566" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3602" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3603" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3634" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished">Zobrazení nastavení kombinovaných konfigurací</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3743" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
       <source>Performing Repository Housekeeping</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3784" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
       <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3797" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3820" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
       <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3825" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3898" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4005" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4018" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
       <source>All</source>
       <translation type="unfinished">Vše</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4022" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
       <source>Submodule Path</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4023" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4072" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4105" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4175" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4136" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4259" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -25862,83 +25862,83 @@
   <context>
     <name>GitProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="473" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="589" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="429" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="324" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="184" />
       <source>Version Control</source>
       <translation type="unfinished">Kontrola verzí</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="602" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="492" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="340" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="200" />
       <source>Commit changes to repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="609" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="496" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="499" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="347" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="207" />
       <source>Add/Stage to repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="614" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="504" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="352" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="212" />
       <source>Unstage changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="621" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="508" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="511" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="359" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="219" />
       <source>Remove from repository (and disk)</source>
       <translation type="unfinished">Odebrat z repozitáře (a z disku)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="365" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="225" />
       <source>Remove from repository only</source>
       <translation type="unfinished">Odebrat jen z repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="513" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="230" />
       <source>Copy</source>
       <translation type="unfinished">Kopírovat</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="518" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="232" />
       <source>Move</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="523" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="237" />
       <source>Show log browser</source>
       <translation type="unfinished">Zobrazit log prohlížeč</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="372" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="244" />
       <source>Show status</source>
       <translation type="unfinished">Zobrazit status</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="635" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="534" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="537" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="251" />
       <source>Show differences</source>
@@ -25950,8 +25950,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="543" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="385" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="263" />
       <source>Show differences (extended)</source>
@@ -25978,71 +25978,71 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="648" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="547" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="550" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="392" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="289" />
       <source>Revert changes</source>
       <translation type="unfinished">Vrátit změny</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="656" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="441" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
-      <source>Select all local file entries</source>
-      <translation type="unfinished">Vybrat všechny lokální soubory</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="558" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="444" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
-      <source>Select all versioned file entries</source>
-      <translation type="unfinished">Vybrat všechny soubory ve správě verzí</translation>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
+      <source>Select all local file entries</source>
+      <translation type="unfinished">Vybrat všechny lokální soubory</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="662" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="561" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="447" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
+      <source>Select all versioned file entries</source>
+      <translation type="unfinished">Vybrat všechny soubory ve správě verzí</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="564" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="450" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="406" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="301" />
       <source>Select all local directory entries</source>
       <translation type="unfinished">Vybrat všechny lokální adresáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="666" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="454" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="305" />
       <source>Select all versioned directory entries</source>
       <translation type="unfinished">Vybrat všechny adresáře ve správě verzí</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="414" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="309" />
       <source>Configure...</source>
       <translation type="unfinished">Konfigurovat...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="709" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="712" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="699" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation type="unfinished">Opravdu chcete odebrat tyto soubory z repozitáře?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="842" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="843" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
@@ -30352,27 +30352,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="198" />
+      <location filename="../Globals/__init__.py" line="199" />
       <source>{0:4.2f} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="201" />
+      <location filename="../Globals/__init__.py" line="202" />
       <source>{0:4.2f} KiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="204" />
+      <location filename="../Globals/__init__.py" line="205" />
       <source>{0:4.2f} MiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="207" />
+      <location filename="../Globals/__init__.py" line="208" />
       <source>{0:4.2f} GiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="210" />
+      <location filename="../Globals/__init__.py" line="211" />
       <source>{0:4.2f} TiB</source>
       <translation type="unfinished" />
     </message>
@@ -36575,75 +36575,75 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="692" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="579" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="535" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="431" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="289" />
       <source>Version Control</source>
       <translation>Kontrola verzí</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="595" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="598" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="305" />
       <source>Commit changes to repository...</source>
       <translation>Zapsat změny do repozitáře...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="606" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="455" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="313" />
       <source>Add to repository</source>
       <translation>Přidat do repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="722" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="725" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="461" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="319" />
       <source>Remove from repository (and disk)</source>
       <translation>Odebrat z repozitáře (a z disku)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="986" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="973" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="989" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="976" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="467" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="325" />
       <source>Remove from repository only</source>
       <translation>Odebrat jen z repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="614" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="617" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="330" />
       <source>Copy</source>
       <translation type="unfinished">Kopírovat</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="619" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="332" />
       <source>Move</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="621" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="624" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="337" />
       <source>Show log browser</source>
       <translation>Zobrazit log prohlížeč</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="729" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="732" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="474" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="344" />
       <source>Show status</source>
       <translation>Zobrazit status</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="736" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="739" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="481" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="351" />
       <source>Show differences</source>
@@ -36655,8 +36655,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="644" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="487" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="363" />
       <source>Show differences (extended)</source>
@@ -36683,95 +36683,95 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="749" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="752" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="494" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="389" />
       <source>Revert changes</source>
       <translation>Vrátit změny</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="753" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="756" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="655" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="498" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="393" />
       <source>Conflicts resolved</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="755" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="654" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="657" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="500" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="395" />
       <source>Conflicts unresolved</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="757" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="656" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="760" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="502" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="397" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="660" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="547" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
-      <source>Select all local file entries</source>
-      <translation>Vybrat všechny lokální soubory</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="764" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="663" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="550" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
-      <source>Select all versioned file entries</source>
-      <translation>Vybrat všechny soubory ve správě verzí</translation>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
+      <source>Select all local file entries</source>
+      <translation>Vybrat všechny lokální soubory</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="767" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="553" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
+      <source>Select all versioned file entries</source>
+      <translation>Vybrat všechny soubory ve správě verzí</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="556" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="407" />
       <source>Select all local directory entries</source>
       <translation>Vybrat všechny lokální adresáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="560" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="411" />
       <source>Select all versioned directory entries</source>
       <translation>Vybrat všechny adresáře ve správě verzí</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="775" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="674" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="561" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="778" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="677" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="564" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="520" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="415" />
       <source>Configure...</source>
       <translation type="unfinished">Konfigurovat...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="890" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="893" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="891" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="894" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="987" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="990" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="977" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation>Opravdu chcete odebrat tyto soubory z repozitáře?</translation>
     </message>
@@ -50956,43 +50956,43 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="594" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="592" />
       <source>Clear</source>
       <translation type="unfinished">Vyčistit</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="599" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="597" />
       <source>Copy</source>
       <translation type="unfinished">Kopírovat</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="603" />
       <source>Paste</source>
       <translation type="unfinished">Vložit</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="612" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="610" />
       <source>Select All</source>
       <translation type="unfinished">Vybrat vše</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="638" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="636" />
       <source>Press to disconnect the current device</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="643" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="641" />
       <source>Press to connect the selected device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="675" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="673" />
       <source>No device attached</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="674" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -51001,90 +51001,90 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="705" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="703" />
       <source>Start REPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="706" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="704" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1234" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1223" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1224" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1235" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1233" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1293" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1284" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1282" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
       <source>Run Script</source>
       <translation type="unfinished">Spustit skript</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1276" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
       <source>There is no editor open. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1285" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1283" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1292" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
       <source>Start Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1329" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1346" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1344" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1363" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1361" />
       <source>Unsaved Chart Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1364" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1362" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1412" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1410" />
       <source>Start File Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1413" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1411" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1433" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1431" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
@@ -51109,7 +51109,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1735" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1554" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
@@ -51135,207 +51135,213 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2138" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1578" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1570" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2150" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2183" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2180" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1574" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1955" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1580" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1959" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1979" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1970" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1983" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1974" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1588" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1609" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
-      <source>Show Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
-      <source>Convert To UF2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1616" />
-      <source>Flash UF2 Device</source>
+      <source>Show Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1619" />
+      <source>Convert To UF2</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1620" />
+      <source>Flash UF2 Device</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1623" />
       <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1622" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1626" />
       <source>Ignored Serial Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1625" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1629" />
       <source>Configure</source>
       <translation type="unfinished">Konfigurovat</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1634" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1638" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1649" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1645" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1641" />
       <source>Device Version Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1646" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1650" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1670" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1674" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1666" />
       <source>unknown</source>
       <translation type="unfinished">neznámý</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1680" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1683" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1696" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1687" />
       <source>Device Implementation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1688" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1693" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1697" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1736" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1754" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1758" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1762" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1766" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1782" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1794" />
       <source>Local Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1795" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1832" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1815" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1836" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1819" />
       <source>Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1816" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1820" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1837" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1857" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1861" />
       <source>Error handling device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1858" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1862" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1900" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1904" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1926" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1930" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished">Python soubory (*.py);;Všechny soubory (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1940" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1945" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1949" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1971" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1975" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2063" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2067" />
       <source>Add Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2068" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2113" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2117" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2151" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2169" />
+      <source>Package '{0}' was installed successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2184" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -51388,198 +51394,198 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="108" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="110" />
       <source>BBC micro:bit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="111" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="113" />
       <source>Calliope mini</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="208" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="210" />
       <source>BBC micro:bit/Calliope Functions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="421" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="409" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="392" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="211" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="411" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="213" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="215" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="217" />
       <source>Flash MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="218" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="220" />
       <source>Flash Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="496" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="222" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="498" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="224" />
       <source>Save Script as 'main.py'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="225" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="227" />
       <source>Save the current script as 'main.py' on the connected device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="229" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="231" />
       <source>Reset {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="375" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="366" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="352" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="335" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="322" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="302" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="377" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="354" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="337" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="324" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="304" />
       <source>Flash MicroPython/Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="303" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="305" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed and plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;See the &lt;a href="https://microbit.org/guide/firmware/"&gt;micro:bit web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="323" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="325" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MICROBIT is available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="336" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="338" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed an plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="353" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="355" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MINI is available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="370" />
       <source>MicroPython/Firmware Files (*.hex *.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="376" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="378" />
       <source>There are multiple devices ready for flashing. Please make sure, that only one device is prepared.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="395" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="410" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="412" />
       <source>&lt;p&gt;The BBC micro:bit generation cannot be determined. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="424" />
       <source>&lt;p&gt;The firmware URL for the device type &lt;b&gt;{0}&lt;/b&gt; is not known. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="452" />
       <source>unknown</source>
       <translation type="unfinished">neznámý</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="466" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="468" />
       <source>Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="469" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="471" />
       <source>&lt;h4&gt;{0} Version Information&lt;br/&gt;(BBC micro:bit v{1})&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="478" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="480" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="484" />
       <source>{0} Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="502" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="504" />
       <source>The current editor does not contain a Python script. Write it anyway?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="513" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="515" />
       <source>The script is empty. Aborting.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="567" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="569" />
       <source>MicroPython Firmware for BBC micro:bit V1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="599" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="586" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="571" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="601" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="588" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="573" />
       <source>DAPLink Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="578" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="580" />
       <source>MicroPython Firmware for BBC micro:bit V2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="582" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="584" />
       <source>CircuitPython Firmware for BBC micro:bit V2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="595" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="597" />
       <source>MicroPython Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="818" />
-      <source>Active</source>
-      <translation type="unfinished">Aktivní</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="819" />
-      <source>Name</source>
-      <translation type="unfinished">Jméno</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="820" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
+      <source>Active</source>
+      <translation type="unfinished">Aktivní</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="821" />
+      <source>Name</source>
+      <translation type="unfinished">Jméno</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="822" />
-      <source>Address Type</source>
+      <source>MAC-Address</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="824" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="826" />
       <source>Connected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="825" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="827" />
       <source>Advertising</source>
       <translation type="unfinished" />
     </message>
@@ -51677,720 +51683,740 @@
   <context>
     <name>MiniEditor</name>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="459" />
+      <location filename="../QScintilla/MiniEditor.py" line="460" />
       <source>About eric Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="461" />
       <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don't need the power of a full blown editor.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="529" />
+      <location filename="../QScintilla/MiniEditor.py" line="530" />
       <source>Line: {0:5}</source>
       <translation>Řádek: {0:5}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="533" />
+      <location filename="../QScintilla/MiniEditor.py" line="534" />
       <source>Pos: {0:5}</source>
       <translation>Poz: {0:5}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="547" />
+      <location filename="../QScintilla/MiniEditor.py" line="548" />
       <source>Language: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="610" />
       <source>New</source>
       <translation>Nový</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="611" />
-      <source>&amp;New</source>
-      <translation>&amp;Nový</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="612" />
+      <source>&amp;New</source>
+      <translation>&amp;Nový</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="613" />
       <source>Ctrl+N</source>
       <comment>File|New</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="617" />
+      <location filename="../QScintilla/MiniEditor.py" line="618" />
       <source>Open an empty editor window</source>
       <translation>Otevřít prázdné editační okno</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="619" />
+      <location filename="../QScintilla/MiniEditor.py" line="620" />
       <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="625" />
+      <location filename="../QScintilla/MiniEditor.py" line="626" />
       <source>Open</source>
       <translation>Otevřít</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="627" />
-      <source>&amp;Open...</source>
-      <translation>&amp;Otevřít...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="628" />
+      <source>&amp;Open...</source>
+      <translation>&amp;Otevřít...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="629" />
       <source>Ctrl+O</source>
       <comment>File|Open</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="633" />
+      <location filename="../QScintilla/MiniEditor.py" line="634" />
       <source>Open a file</source>
       <translation>Otevřít soubor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="635" />
+      <location filename="../QScintilla/MiniEditor.py" line="636" />
       <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="644" />
+      <location filename="../QScintilla/MiniEditor.py" line="645" />
       <source>Save</source>
       <translation>Uložit</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="646" />
-      <source>&amp;Save</source>
-      <translation>&amp;Uložit</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="647" />
+      <source>&amp;Save</source>
+      <translation>&amp;Uložit</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="648" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="652" />
+      <location filename="../QScintilla/MiniEditor.py" line="653" />
       <source>Save the current file</source>
       <translation>Uložit aktuální soubor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="654" />
+      <location filename="../QScintilla/MiniEditor.py" line="655" />
       <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="663" />
+      <location filename="../QScintilla/MiniEditor.py" line="664" />
       <source>Save as</source>
       <translation>Uložit jako</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="665" />
-      <source>Save &amp;as...</source>
-      <translation>Uložit j&amp;ako...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="666" />
+      <source>Save &amp;as...</source>
+      <translation>Uložit j&amp;ako...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="667" />
       <source>Shift+Ctrl+S</source>
       <comment>File|Save As</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="671" />
+      <location filename="../QScintilla/MiniEditor.py" line="672" />
       <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="673" />
+      <location filename="../QScintilla/MiniEditor.py" line="674" />
       <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="683" />
+      <location filename="../QScintilla/MiniEditor.py" line="684" />
       <source>Save Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="686" />
       <source>Save &amp;Copy...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="691" />
+      <location filename="../QScintilla/MiniEditor.py" line="692" />
       <source>Save a copy of the current file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="693" />
+      <location filename="../QScintilla/MiniEditor.py" line="694" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="703" />
+      <location filename="../QScintilla/MiniEditor.py" line="704" />
       <source>Close</source>
       <translation>Zavřít</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="705" />
-      <source>&amp;Close</source>
-      <translation>&amp;Zavřít</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="706" />
+      <source>&amp;Close</source>
+      <translation>&amp;Zavřít</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="707" />
       <source>Ctrl+W</source>
       <comment>File|Close</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="711" />
+      <location filename="../QScintilla/MiniEditor.py" line="712" />
       <source>Close the editor window</source>
       <translation>Zavřít editační okno</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="713" />
+      <location filename="../QScintilla/MiniEditor.py" line="714" />
       <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="719" />
+      <location filename="../QScintilla/MiniEditor.py" line="720" />
       <source>Print</source>
       <translation>Tisk</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="721" />
-      <source>&amp;Print</source>
-      <translation>&amp;Tisk</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="722" />
+      <source>&amp;Print</source>
+      <translation>&amp;Tisk</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="723" />
       <source>Ctrl+P</source>
       <comment>File|Print</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="727" />
+      <location filename="../QScintilla/MiniEditor.py" line="728" />
       <source>Print the current file</source>
       <translation>Tisk aktuálního souboru</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="729" />
+      <location filename="../QScintilla/MiniEditor.py" line="730" />
       <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="738" />
+      <location filename="../QScintilla/MiniEditor.py" line="739" />
       <source>Print Preview</source>
       <translation>Náhled tisku</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="747" />
       <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="748" />
+      <location filename="../QScintilla/MiniEditor.py" line="749" />
       <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="761" />
+      <location filename="../QScintilla/MiniEditor.py" line="762" />
       <source>Undo</source>
       <translation>Vrátit</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="763" />
-      <source>&amp;Undo</source>
-      <translation>&amp;Vrátit</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="764" />
-      <source>Ctrl+Z</source>
-      <comment>Edit|Undo</comment>
-      <translation />
+      <source>&amp;Undo</source>
+      <translation>&amp;Vrátit</translation>
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="765" />
+      <source>Ctrl+Z</source>
+      <comment>Edit|Undo</comment>
+      <translation />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="766" />
       <source>Alt+Backspace</source>
       <comment>Edit|Undo</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="769" />
+      <location filename="../QScintilla/MiniEditor.py" line="770" />
       <source>Undo the last change</source>
       <translation>Vrátit poslední změnu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="771" />
+      <location filename="../QScintilla/MiniEditor.py" line="772" />
       <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="780" />
+      <location filename="../QScintilla/MiniEditor.py" line="781" />
       <source>Redo</source>
       <translation>Znovu použít</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="782" />
-      <source>&amp;Redo</source>
-      <translation>&amp;Znovu použít</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="783" />
+      <source>&amp;Redo</source>
+      <translation>&amp;Znovu použít</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="784" />
       <source>Ctrl+Shift+Z</source>
       <comment>Edit|Redo</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="788" />
+      <location filename="../QScintilla/MiniEditor.py" line="789" />
       <source>Redo the last change</source>
       <translation>Znovu použít poslední změnu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="790" />
+      <location filename="../QScintilla/MiniEditor.py" line="791" />
       <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="799" />
+      <location filename="../QScintilla/MiniEditor.py" line="800" />
       <source>Cut</source>
       <translation>Vyjmout</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="801" />
-      <source>Cu&amp;t</source>
-      <translation>Vyjmou&amp;t</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="802" />
-      <source>Ctrl+X</source>
-      <comment>Edit|Cut</comment>
-      <translation />
+      <source>Cu&amp;t</source>
+      <translation>Vyjmou&amp;t</translation>
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="803" />
+      <source>Ctrl+X</source>
+      <comment>Edit|Cut</comment>
+      <translation />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="804" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="807" />
+      <location filename="../QScintilla/MiniEditor.py" line="808" />
       <source>Cut the selection</source>
       <translation>Vyjmout výběr</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="809" />
+      <location filename="../QScintilla/MiniEditor.py" line="810" />
       <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="819" />
+      <location filename="../QScintilla/MiniEditor.py" line="820" />
       <source>Copy</source>
       <translation>Kopírovat</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="821" />
-      <source>&amp;Copy</source>
-      <translation>&amp;Kopírovat</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="822" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
-      <translation />
+      <source>&amp;Copy</source>
+      <translation>&amp;Kopírovat</translation>
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="823" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="824" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="827" />
+      <location filename="../QScintilla/MiniEditor.py" line="828" />
       <source>Copy the selection</source>
       <translation>Kopírovat výběr</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="829" />
+      <location filename="../QScintilla/MiniEditor.py" line="830" />
       <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="839" />
+      <location filename="../QScintilla/MiniEditor.py" line="840" />
       <source>Paste</source>
       <translation>Vložit</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="841" />
-      <source>&amp;Paste</source>
-      <translation>V&amp;ložit</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="842" />
-      <source>Ctrl+V</source>
-      <comment>Edit|Paste</comment>
-      <translation />
+      <source>&amp;Paste</source>
+      <translation>V&amp;ložit</translation>
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="843" />
+      <source>Ctrl+V</source>
+      <comment>Edit|Paste</comment>
+      <translation />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="844" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="847" />
+      <location filename="../QScintilla/MiniEditor.py" line="848" />
       <source>Paste the last cut/copied text</source>
       <translation>Vložit text ze schránky</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="849" />
+      <location filename="../QScintilla/MiniEditor.py" line="850" />
       <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="859" />
+      <location filename="../QScintilla/MiniEditor.py" line="860" />
       <source>Clear</source>
       <translation>Vyčistit</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="861" />
-      <source>Cl&amp;ear</source>
-      <translation>Vyči&amp;stit</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="862" />
+      <source>Cl&amp;ear</source>
+      <translation>Vyči&amp;stit</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="863" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="867" />
+      <location filename="../QScintilla/MiniEditor.py" line="868" />
       <source>Clear all text</source>
       <translation>Vyčistit všechen text</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="869" />
+      <location filename="../QScintilla/MiniEditor.py" line="870" />
       <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="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>About</source>
       <translation>O aplikaci</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>&amp;About</source>
       <translation>O &amp;aplikaci</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2863" />
+      <location filename="../QScintilla/MiniEditor.py" line="2864" />
       <source>Display information about this software</source>
       <translation>Zobrazit informace a tomto software</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2865" />
+      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <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="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About Qt</source>
       <translation>O Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About &amp;Qt</source>
       <translation>O &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2877" />
+      <location filename="../QScintilla/MiniEditor.py" line="2878" />
       <source>Display information about the Qt toolkit</source>
       <translation>Zobrazit informace o Qt toolkitu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2880" />
+      <location filename="../QScintilla/MiniEditor.py" line="2881" />
       <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="2889" />
+      <location filename="../QScintilla/MiniEditor.py" line="2890" />
       <source>What's This?</source>
       <translation>Co je to?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2891" />
-      <source>&amp;What's This?</source>
-      <translation>&amp;Co je to?</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <source>&amp;What's This?</source>
+      <translation>&amp;Co je to?</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2893" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2897" />
+      <location filename="../QScintilla/MiniEditor.py" line="2898" />
       <source>Context sensitive help</source>
       <translation>Kontextově senzitivní nápověda</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2899" />
+      <location filename="../QScintilla/MiniEditor.py" line="2900" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What'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 "Co je to?" 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="2917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2918" />
       <source>Preferences</source>
       <translation type="unfinished">Nastavení</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2920" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished">Na&amp;stavení...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2925" />
+      <location filename="../QScintilla/MiniEditor.py" line="2926" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished">Nastavení konfigurace</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2927" />
+      <location filename="../QScintilla/MiniEditor.py" line="2928" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Nastavení&lt;/b&gt;&lt;p&gt;Upravit konfiguraci aplikace podle požadavků uživatele.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2941" />
+      <location filename="../QScintilla/MiniEditor.py" line="2942" />
       <source>&amp;File</source>
       <translation>S&amp;oubor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2953" />
+      <location filename="../QScintilla/MiniEditor.py" line="2954" />
       <source>&amp;Edit</source>
       <translation>&amp;Edit</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2963" />
+      <location filename="../QScintilla/MiniEditor.py" line="2964" />
       <source>&amp;Search</source>
       <translation type="unfinished">V&amp;yhledat</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2974" />
       <source>&amp;View</source>
       <translation type="unfinished">Poh&amp;led</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2979" />
+      <location filename="../QScintilla/MiniEditor.py" line="2980" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished">Nas&amp;tavení</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2985" />
       <source>&amp;Help</source>
       <translation>&amp;Nápověda</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2996" />
+      <location filename="../QScintilla/MiniEditor.py" line="2997" />
       <source>File</source>
       <translation>Soubor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3008" />
+      <location filename="../QScintilla/MiniEditor.py" line="3009" />
       <source>Edit</source>
       <translation>Editovat</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3017" />
+      <location filename="../QScintilla/MiniEditor.py" line="3018" />
       <source>Search</source>
       <translation type="unfinished">Vyhledat</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3023" />
+      <location filename="../QScintilla/MiniEditor.py" line="3024" />
       <source>View</source>
       <translation type="unfinished">Pohled</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3029" />
+      <location filename="../QScintilla/MiniEditor.py" line="3030" />
       <source>Settings</source>
       <translation type="unfinished">Nastavení</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3032" />
+      <location filename="../QScintilla/MiniEditor.py" line="3033" />
       <source>Help</source>
       <translation>Nápověda</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3045" />
+      <location filename="../QScintilla/MiniEditor.py" line="3046" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3055" />
+      <location filename="../QScintilla/MiniEditor.py" line="3056" />
       <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="3064" />
+      <location filename="../QScintilla/MiniEditor.py" line="3065" />
       <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="3073" />
+      <location filename="../QScintilla/MiniEditor.py" line="3074" />
       <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="3087" />
+      <location filename="../QScintilla/MiniEditor.py" line="3088" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3094" />
+      <location filename="../QScintilla/MiniEditor.py" line="3095" />
       <source>Ready</source>
       <translation>Hotovo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3169" />
-      <source>eric Mini Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <source>eric Mini Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3171" />
       <source>The document has unsaved changes.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3197" />
-      <source>Open File</source>
-      <translation>Otevřít soubor</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <source>Open File</source>
+      <translation>Otevřít soubor</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3199" />
       <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="3226" />
+      <location filename="../QScintilla/MiniEditor.py" line="3227" />
       <source>File loaded</source>
       <translation>Soubor načten</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3307" />
-      <source>Save File</source>
-      <translation>Uložit soubor</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <source>Save File</source>
+      <translation>Uložit soubor</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3309" />
       <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="3314" />
+      <location filename="../QScintilla/MiniEditor.py" line="3315" />
       <source>File saved</source>
       <translation>Soubor uložen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>[*] - {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>Mini Editor</source>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3683" />
-      <location filename="../QScintilla/MiniEditor.py" line="3654" />
-      <location filename="../QScintilla/MiniEditor.py" line="3338" />
+      <location filename="../QScintilla/MiniEditor.py" line="3684" />
+      <location filename="../QScintilla/MiniEditor.py" line="3655" />
+      <location filename="../QScintilla/MiniEditor.py" line="3339" />
       <source>Untitled</source>
       <translation>Beze jména</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
       <source>{0}[*] - {1}</source>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3649" />
+      <location filename="../QScintilla/MiniEditor.py" line="3650" />
       <source>Printing...</source>
       <translation>Tisk...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3665" />
+      <location filename="../QScintilla/MiniEditor.py" line="3666" />
       <source>Printing completed</source>
       <translation>Tisk je hotov</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3667" />
+      <location filename="../QScintilla/MiniEditor.py" line="3668" />
       <source>Error while printing</source>
       <translation>Chyba během tisku</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3670" />
+      <location filename="../QScintilla/MiniEditor.py" line="3671" />
       <source>Printing aborted</source>
       <translation>Tisk byl zrušen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3724" />
-      <source>Select all</source>
-      <translation>Vybrat vše</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <source>Select all</source>
+      <translation>Vybrat vše</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3726" />
       <source>Deselect all</source>
       <translation>Zrušit celý výběr</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3738" />
+      <location filename="../QScintilla/MiniEditor.py" line="3739" />
       <source>Languages</source>
       <translation>Jazyky</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3741" />
+      <location filename="../QScintilla/MiniEditor.py" line="3742" />
       <source>No Language</source>
       <translation>Žádný jazyk</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3763" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Guessed</source>
       <translation>Odhadem</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3785" />
-      <location filename="../QScintilla/MiniEditor.py" line="3767" />
+      <location filename="../QScintilla/MiniEditor.py" line="3786" />
+      <location filename="../QScintilla/MiniEditor.py" line="3768" />
       <source>Alternatives</source>
       <translation>Alternativy</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3783" />
       <source>Alternatives ({0})</source>
       <translation>Alternativy ({0})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3813" />
-      <source>Pygments Lexer</source>
-      <translation>Pygments Lexer</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <source>Pygments Lexer</source>
+      <translation>Pygments Lexer</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3815" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>Použít Pygments lexer.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4326" />
+      <location filename="../QScintilla/MiniEditor.py" line="4336" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4327" />
+      <location filename="../QScintilla/MiniEditor.py" line="4337" />
       <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" />
     </message>
   </context>
   <context>
+    <name>MipLocalInstaller</name>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="185" />
+      <source>Unable to find 'lib' in sys.path. Please enter a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="229" />
+      <source>
+
+Package may be partially installed.</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>MipPackageDialog</name>
     <message>
+      <location filename="../MicroPython/MipPackageDialog.py" line="34" />
+      <source>Enter the URL of the package index. Leave empty to use the default index ({0}).</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
       <source>Install Package</source>
       <translation type="unfinished" />
@@ -52425,6 +52451,21 @@
       <source>Install .mpy File</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Target Directory:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Enter the directory to install to (must be contained in sys.path). Leave empty to detect automatically.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Package Index:</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>MiscellaneousChecker</name>
@@ -53084,194 +53125,194 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="603" />
-      <location filename="../MultiProject/MultiProject.py" line="593" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="591" />
       <source>Multi Project Files (*.emj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="599" />
       <source>Save Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="617" />
+      <location filename="../MultiProject/MultiProject.py" line="615" />
       <source>Save File</source>
       <translation>Uložit soubor</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="618" />
+      <location filename="../MultiProject/MultiProject.py" line="616" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="644" />
+      <location filename="../MultiProject/MultiProject.py" line="642" />
       <source>Close Multiproject</source>
       <translation>Zavřít multiprojekt</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="645" />
+      <location filename="../MultiProject/MultiProject.py" line="643" />
       <source>The current multiproject has unsaved changes.</source>
       <translation>Aktuální multiprojekt obsahuje neuložené změny.</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="696" />
+      <source>New multiproject</source>
+      <translation>Nový multiprojekt</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="698" />
-      <source>New multiproject</source>
-      <translation>Nový multiprojekt</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>&amp;New...</source>
       <translation>&amp;Nový...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="704" />
+      <source>Generate a new multiproject</source>
+      <translation>Vygenerovat nový multiprojekt</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="706" />
-      <source>Generate a new multiproject</source>
-      <translation>Vygenerovat nový multiprojekt</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nový...&lt;/b&gt;&lt;p&gt;Otevře se dialogové okno pro zadání informací o novém multiprojektu.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="716" />
+      <source>Open multiproject</source>
+      <translation>Otevřít multiprojekt</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="718" />
-      <source>Open multiproject</source>
-      <translation>Otevřít multiprojekt</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="720" />
       <source>&amp;Open...</source>
       <translation>&amp;Otevřít...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="724" />
+      <source>Open an existing multiproject</source>
+      <translation>Otevřít existující multiprojekt</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="726" />
-      <source>Open an existing multiproject</source>
-      <translation>Otevřít existující multiprojekt</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="728" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Otevřít....&lt;/b&gt;&lt;p&gt;Otevře existující multiprojekt.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="732" />
+      <source>Close multiproject</source>
+      <translation>Zavřít multiprojekt</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="734" />
-      <source>Close multiproject</source>
-      <translation>Zavřít multiprojekt</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&amp;Close</source>
       <translation>&amp;Zavřít</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="740" />
+      <source>Close the current multiproject</source>
+      <translation>Uzavře aktuální multiprojekt</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="742" />
-      <source>Close the current multiproject</source>
-      <translation>Uzavře aktuální multiprojekt</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zavřít&lt;/b&gt;&lt;p&gt;Aktuální multiprojekt se uzavře.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="748" />
+      <source>Save multiproject</source>
+      <translation>Uložit multiprojekt</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="750" />
-      <source>Save multiproject</source>
-      <translation>Uložit multiprojekt</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="752" />
       <source>&amp;Save</source>
       <translation>&amp;Uložit</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="756" />
+      <source>Save the current multiproject</source>
+      <translation>Uložit aktuální multiprojekt</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="758" />
-      <source>Save the current multiproject</source>
-      <translation>Uložit aktuální multiprojekt</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="760" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Uložit&lt;/b&gt;&lt;p&gt;Aktuální multiprojekt se uloží.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <source>Save multiproject as</source>
+      <translation>Uložit multiprojekt jako</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="766" />
-      <source>Save multiproject as</source>
-      <translation>Uložit multiprojekt jako</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="768" />
       <source>Save &amp;as...</source>
       <translation>Uložit j&amp;ako...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="775" />
+      <location filename="../MultiProject/MultiProject.py" line="773" />
       <source>Save the current multiproject to a new file</source>
       <translation>Uloží aktuální multiprojekt do nového souboru</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="778" />
+      <location filename="../MultiProject/MultiProject.py" line="776" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Uložit jako&lt;/b&gt;&lt;p&gt;Uloží aktuální mulktiprojekt do nového souboru.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="785" />
+      <source>Add project to multiproject</source>
+      <translation>Přidat projekt do multiprojektu</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="787" />
-      <source>Add project to multiproject</source>
-      <translation>Přidat projekt do multiprojektu</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="789" />
       <source>Add &amp;project...</source>
       <translation>Přidat &amp;projekt...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="796" />
+      <location filename="../MultiProject/MultiProject.py" line="794" />
       <source>Add a project to the current multiproject</source>
       <translation>Projekt se přidá do aktuálního multiprojektu</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="799" />
+      <location filename="../MultiProject/MultiProject.py" line="797" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Přidat projekt...&lt;/b&gt;&lt;p&gt;Otevře dialog pro přidání projektu do aktuálního multiprojektu.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="807" />
+      <source>Multiproject properties</source>
+      <translation>Nastavení multiprojektu</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="809" />
-      <source>Multiproject properties</source>
-      <translation>Nastavení multiprojektu</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="811" />
       <source>&amp;Properties...</source>
       <translation>&amp;Natavení...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="815" />
+      <source>Show the multiproject properties</source>
+      <translation>Zobrazit nastavení projektu</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="817" />
-      <source>Show the multiproject properties</source>
-      <translation>Zobrazit nastavení projektu</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nastavení...&lt;/b&gt;&lt;p&gt;Zobrazí dialog s editací nastavení multiprojektu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="840" />
+      <location filename="../MultiProject/MultiProject.py" line="838" />
       <source>&amp;Multiproject</source>
       <translation>&amp;Multiprojekt</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="841" />
+      <location filename="../MultiProject/MultiProject.py" line="839" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation>Otevřít poslední multip&amp;rojekty</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="880" />
       <location filename="../MultiProject/MultiProject.py" line="878" />
+      <location filename="../MultiProject/MultiProject.py" line="876" />
       <source>Multiproject</source>
       <translation />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="935" />
+      <location filename="../MultiProject/MultiProject.py" line="933" />
       <source>&amp;Clear</source>
       <translation>&amp;Vyčistit</translation>
     </message>
@@ -69544,7 +69585,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="417" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="415" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -69555,7 +69596,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="381" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="379" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="367" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="349" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="239" />
@@ -69593,42 +69634,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="380" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="378" />
       <source>'st-flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="400" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="398" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="401" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="399" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="416" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="444" />
       <source>unknown</source>
       <translation type="unfinished">neznámý</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="460" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="462" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -70082,49 +70123,49 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="155" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="154" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="151" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="150" />
       <source>Find Next</source>
       <translation>Najít další</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="168" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="167" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="164" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="163" />
       <source>Find Prev</source>
       <translation>Najít předchozí</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="181" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="180" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="177" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="176" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="197" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="196" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="191" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="190" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="211" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="210" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="205" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="204" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1048" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1045" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="597" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="559" />
       <source>'{0}' was not found.</source>
       <translation>'{0}' nebyl nalezen.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1201" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1198" />
       <source>Replaced {0} occurrences.</source>
       <translation>Nahrazeno {0} výskytů.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1207" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1204" />
       <source>Nothing replaced because '{0}' was not found.</source>
       <translation>Nebylo nic nahrazeno, protože '{0}' nebyl nalezen.</translation>
     </message>
@@ -77865,50 +77906,50 @@
   <context>
     <name>SvnProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="734" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="591" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="594" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="547" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="394" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="593" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="546" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="596" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="549" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="399" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="210" />
       <source>Version Control</source>
       <translation>Kontrola verzí</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="750" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="607" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="753" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="610" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="224" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="758" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="761" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="415" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="226" />
       <source>Update from repository</source>
       <translation>Obnovit z repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="756" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="616" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="416" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="230" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="764" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="615" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="767" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="618" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="421" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="232" />
       <source>Commit changes to repository...</source>
       <translation>Commitovat změny do repozitáře...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="763" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="620" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="623" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="423" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="237" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="622" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="625" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="428" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="239" />
       <source>Add to repository</source>
@@ -77923,90 +77964,90 @@
       <translation>Přidat stromovou strukturu do repozitáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="769" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="626" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="772" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="629" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="436" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="250" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="441" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="252" />
       <source>Remove from repository (and disk)</source>
       <translation>Odebrat z repozitáře (a z disku)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="634" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="255" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="257" />
       <source>Copy</source>
       <translation type="unfinished">Kopírovat</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="257" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="259" />
       <source>Move</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="776" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="779" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="641" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="443" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="262" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="784" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="787" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="643" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="448" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="264" />
       <source>Add to Changelist</source>
       <translation>Přidat do seznamu změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="780" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="783" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="645" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="266" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="788" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="647" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="452" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="268" />
       <source>Remove from Changelist</source>
       <translation>Odebrat ze seznamu změn</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="272" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="650" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="653" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="274" />
       <source>Show log browser</source>
       <translation>Zobrazit log prohlížeč</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="786" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="655" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="658" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="453" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="279" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="794" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="660" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="281" />
       <source>Show status</source>
       <translation>Zobrazit status</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="663" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="287" />
       <source>Show repository info</source>
       <translation>Zobrazit info o repozitáři</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="793" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="662" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="665" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="801" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="670" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="673" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="465" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="294" />
       <source>Show differences</source>
@@ -78019,12 +78060,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="799" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="802" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="671" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="466" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="298" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="807" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="810" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="679" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="471" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="306" />
       <source>Show differences (extended)</source>
@@ -78037,12 +78078,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="805" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="472" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="310" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="813" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="685" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="477" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="318" />
       <source>Show differences (URLs)</source>
@@ -78055,34 +78096,34 @@
       <translation>Zobrazit komentované soubory</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="812" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="681" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="815" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="684" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="479" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="319" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="820" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="689" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="823" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="692" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="484" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="327" />
       <source>Revert changes</source>
       <translation>Vrátit změny</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="818" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="690" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="826" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="829" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="333" />
       <source>Merge changes</source>
       <translation>Sloučit změny</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="822" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="691" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="483" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="329" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="830" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="699" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="488" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="337" />
       <source>Conflicts resolved</source>
@@ -78121,106 +78162,106 @@
       <translation>Scizit zámek</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="828" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="697" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="510" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="356" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="836" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="361" />
       <source>Set Property</source>
       <translation>Nastavit vlastnosti</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="827" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="830" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="699" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="358" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="835" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="838" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="707" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="363" />
       <source>List Properties</source>
       <translation>Seznam vlastností</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="829" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="698" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="832" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="701" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="360" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="837" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="709" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="365" />
       <source>Delete Property</source>
       <translation>Smazat vlastnost</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="559" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="841" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="710" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="561" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
-      <source>Select all local file entries</source>
-      <translation>Vybrat všechny lokální soubory</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="836" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="562" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="844" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="713" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
-      <source>Select all versioned file entries</source>
-      <translation>Vybrat všechny soubory ve správě verzí</translation>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
+      <source>Select all local file entries</source>
+      <translation>Vybrat všechny lokální soubory</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="839" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="708" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="847" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="716" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="567" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
+      <source>Select all versioned file entries</source>
+      <translation>Vybrat všechny soubory ve správě verzí</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="842" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="570" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="526" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="375" />
       <source>Select all local directory entries</source>
       <translation>Vybrat všechny lokální adresáře</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="843" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="712" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="846" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="715" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="572" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="528" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="374" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="851" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="720" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="571" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="854" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="723" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="574" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="379" />
       <source>Select all versioned directory entries</source>
       <translation>Vybrat všechny adresáře ve správě verzí</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="847" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="576" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="532" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="378" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="855" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="724" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="575" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="858" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="727" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="578" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="534" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="383" />
       <source>Configure...</source>
@@ -90764,8 +90805,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
+      <location filename="../QScintilla/MiniEditor.py" line="1685" />
       <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/MiniEditor.py" line="1683" />
       <location filename="../QScintilla/ShellWindow.py" line="435" />
       <location filename="../QScintilla/ShellWindow.py" line="434" />
       <source>Delete current line</source>
@@ -90773,7 +90814,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
+      <location filename="../QScintilla/MiniEditor.py" line="1686" />
       <location filename="../QScintilla/ShellWindow.py" line="436" />
       <source>Ctrl+Shift+L</source>
       <translation />
@@ -90781,8 +90822,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="1207" />
       <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/MiniEditor.py" line="1205" />
       <location filename="../QScintilla/ShellWindow.py" line="447" />
       <location filename="../QScintilla/ShellWindow.py" line="446" />
       <source>Indent one level</source>
@@ -90790,7 +90831,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
+      <location filename="../QScintilla/MiniEditor.py" line="1208" />
       <location filename="../QScintilla/ShellWindow.py" line="448" />
       <source>Tab</source>
       <translation />
@@ -90798,8 +90839,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
+      <location filename="../QScintilla/MiniEditor.py" line="1673" />
       <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1671" />
       <location filename="../QScintilla/ShellWindow.py" line="459" />
       <location filename="../QScintilla/ShellWindow.py" line="458" />
       <source>Insert new line</source>
@@ -90807,14 +90848,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
+      <location filename="../QScintilla/MiniEditor.py" line="1674" />
       <location filename="../QScintilla/ShellWindow.py" line="460" />
       <source>Return</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
+      <location filename="../QScintilla/MiniEditor.py" line="1675" />
       <location filename="../QScintilla/ShellWindow.py" line="461" />
       <source>Enter</source>
       <translation>Enter</translation>
@@ -90822,8 +90863,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
+      <location filename="../QScintilla/MiniEditor.py" line="1559" />
       <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1557" />
       <location filename="../QScintilla/ShellWindow.py" line="471" />
       <location filename="../QScintilla/ShellWindow.py" line="470" />
       <source>Delete previous character</source>
@@ -90831,21 +90872,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
+      <location filename="../QScintilla/MiniEditor.py" line="1560" />
       <location filename="../QScintilla/ShellWindow.py" line="472" />
       <source>Backspace</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1566" />
+      <location filename="../QScintilla/MiniEditor.py" line="1567" />
       <location filename="../QScintilla/ShellWindow.py" line="479" />
       <source>Meta+H</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1571" />
+      <location filename="../QScintilla/MiniEditor.py" line="1572" />
       <location filename="../QScintilla/ShellWindow.py" line="484" />
       <source>Shift+Backspace</source>
       <translation />
@@ -90853,8 +90894,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
+      <location filename="../QScintilla/MiniEditor.py" line="1597" />
       <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1595" />
       <location filename="../QScintilla/ShellWindow.py" line="493" />
       <location filename="../QScintilla/ShellWindow.py" line="492" />
       <source>Delete current character</source>
@@ -90862,14 +90903,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
+      <location filename="../QScintilla/MiniEditor.py" line="1598" />
       <location filename="../QScintilla/ShellWindow.py" line="494" />
       <source>Del</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1604" />
+      <location filename="../QScintilla/MiniEditor.py" line="1605" />
       <location filename="../QScintilla/ShellWindow.py" line="501" />
       <source>Meta+D</source>
       <translation type="unfinished" />
@@ -90877,8 +90918,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
+      <location filename="../QScintilla/MiniEditor.py" line="1613" />
       <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/MiniEditor.py" line="1611" />
       <location filename="../QScintilla/ShellWindow.py" line="509" />
       <location filename="../QScintilla/ShellWindow.py" line="508" />
       <source>Delete word to left</source>
@@ -90886,7 +90927,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1614" />
       <location filename="../QScintilla/ShellWindow.py" line="510" />
       <source>Ctrl+Backspace</source>
       <translation />
@@ -90894,8 +90935,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1625" />
       <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/MiniEditor.py" line="1623" />
       <location filename="../QScintilla/ShellWindow.py" line="521" />
       <location filename="../QScintilla/ShellWindow.py" line="520" />
       <source>Delete word to right</source>
@@ -90903,7 +90944,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
+      <location filename="../QScintilla/MiniEditor.py" line="1626" />
       <location filename="../QScintilla/ShellWindow.py" line="522" />
       <source>Ctrl+Del</source>
       <translation />
@@ -90911,8 +90952,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
+      <location filename="../QScintilla/MiniEditor.py" line="1637" />
       <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/MiniEditor.py" line="1635" />
       <location filename="../QScintilla/ShellWindow.py" line="533" />
       <location filename="../QScintilla/ShellWindow.py" line="532" />
       <source>Delete line to left</source>
@@ -90920,7 +90961,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1638" />
+      <location filename="../QScintilla/MiniEditor.py" line="1639" />
       <location filename="../QScintilla/ShellWindow.py" line="535" />
       <source>Ctrl+Shift+Backspace</source>
       <translation />
@@ -90928,8 +90969,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
+      <location filename="../QScintilla/MiniEditor.py" line="1651" />
       <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/MiniEditor.py" line="1649" />
       <location filename="../QScintilla/ShellWindow.py" line="547" />
       <location filename="../QScintilla/ShellWindow.py" line="546" />
       <source>Delete line to right</source>
@@ -90937,14 +90978,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1658" />
+      <location filename="../QScintilla/MiniEditor.py" line="1659" />
       <location filename="../QScintilla/ShellWindow.py" line="555" />
       <source>Meta+K</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1663" />
+      <location filename="../QScintilla/MiniEditor.py" line="1664" />
       <location filename="../QScintilla/ShellWindow.py" line="560" />
       <source>Ctrl+Shift+Del</source>
       <translation />
@@ -90952,8 +90993,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
+      <location filename="../QScintilla/MiniEditor.py" line="895" />
       <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/MiniEditor.py" line="893" />
       <location filename="../QScintilla/ShellWindow.py" line="569" />
       <location filename="../QScintilla/ShellWindow.py" line="568" />
       <source>Move left one character</source>
@@ -90961,14 +91002,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
+      <location filename="../QScintilla/MiniEditor.py" line="896" />
       <location filename="../QScintilla/ShellWindow.py" line="570" />
       <source>Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="904" />
       <location filename="../QScintilla/ShellWindow.py" line="578" />
       <source>Meta+B</source>
       <translation type="unfinished" />
@@ -90976,8 +91017,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="911" />
       <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/MiniEditor.py" line="909" />
       <location filename="../QScintilla/ShellWindow.py" line="585" />
       <location filename="../QScintilla/ShellWindow.py" line="584" />
       <source>Move right one character</source>
@@ -90985,14 +91026,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
+      <location filename="../QScintilla/MiniEditor.py" line="912" />
       <location filename="../QScintilla/ShellWindow.py" line="586" />
       <source>Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="918" />
+      <location filename="../QScintilla/MiniEditor.py" line="919" />
       <location filename="../QScintilla/ShellWindow.py" line="593" />
       <source>Meta+F</source>
       <translation type="unfinished" />
@@ -91000,8 +91041,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="991" />
       <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/MiniEditor.py" line="989" />
       <location filename="../QScintilla/ShellWindow.py" line="601" />
       <location filename="../QScintilla/ShellWindow.py" line="600" />
       <source>Move left one word</source>
@@ -91010,8 +91051,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="998" />
-      <location filename="../QScintilla/MiniEditor.py" line="966" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/MiniEditor.py" line="967" />
       <location filename="../QScintilla/ShellWindow.py" line="609" />
       <source>Alt+Left</source>
       <translation />
@@ -91019,8 +91060,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1058" />
-      <location filename="../QScintilla/MiniEditor.py" line="1002" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
+      <location filename="../QScintilla/MiniEditor.py" line="1003" />
       <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Ctrl+Left</source>
       <translation />
@@ -91028,8 +91069,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
+      <location filename="../QScintilla/MiniEditor.py" line="1011" />
       <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/MiniEditor.py" line="1009" />
       <location filename="../QScintilla/ShellWindow.py" line="621" />
       <location filename="../QScintilla/ShellWindow.py" line="620" />
       <source>Move right one word</source>
@@ -91038,8 +91079,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1812" />
-      <location filename="../QScintilla/MiniEditor.py" line="1022" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="1023" />
       <location filename="../QScintilla/ShellWindow.py" line="629" />
       <source>Ctrl+Right</source>
       <translation />
@@ -91047,8 +91088,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1032" />
-      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1033" />
+      <location filename="../QScintilla/MiniEditor.py" line="1030" />
       <location filename="../QScintilla/ShellWindow.py" line="639" />
       <location filename="../QScintilla/ShellWindow.py" line="636" />
       <source>Move to first visible character in document line</source>
@@ -91057,8 +91098,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2073" />
-      <location filename="../QScintilla/MiniEditor.py" line="1042" />
+      <location filename="../QScintilla/MiniEditor.py" line="2074" />
+      <location filename="../QScintilla/MiniEditor.py" line="1043" />
       <location filename="../QScintilla/ShellWindow.py" line="649" />
       <source>Home</source>
       <translation />
@@ -91066,8 +91107,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
+      <location filename="../QScintilla/MiniEditor.py" line="1071" />
       <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/MiniEditor.py" line="1069" />
       <location filename="../QScintilla/ShellWindow.py" line="657" />
       <location filename="../QScintilla/ShellWindow.py" line="656" />
       <source>Move to end of document line</source>
@@ -91075,7 +91116,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1078" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
       <location filename="../QScintilla/ShellWindow.py" line="665" />
       <source>Meta+E</source>
       <translation type="unfinished" />
@@ -91083,8 +91124,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1083" />
       <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>End</source>
       <translation />
@@ -91092,8 +91133,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="927" />
       <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/MiniEditor.py" line="925" />
       <location filename="../QScintilla/ShellWindow.py" line="677" />
       <location filename="../QScintilla/ShellWindow.py" line="676" />
       <source>Move up one line</source>
@@ -91101,14 +91142,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
+      <location filename="../QScintilla/MiniEditor.py" line="928" />
       <location filename="../QScintilla/ShellWindow.py" line="678" />
       <source>Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="934" />
+      <location filename="../QScintilla/MiniEditor.py" line="935" />
       <location filename="../QScintilla/ShellWindow.py" line="685" />
       <source>Meta+P</source>
       <translation type="unfinished" />
@@ -91116,8 +91157,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
+      <location filename="../QScintilla/MiniEditor.py" line="943" />
       <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/MiniEditor.py" line="941" />
       <location filename="../QScintilla/ShellWindow.py" line="693" />
       <location filename="../QScintilla/ShellWindow.py" line="692" />
       <source>Move down one line</source>
@@ -91125,14 +91166,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="944" />
       <location filename="../QScintilla/ShellWindow.py" line="694" />
       <source>Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="950" />
+      <location filename="../QScintilla/MiniEditor.py" line="951" />
       <location filename="../QScintilla/ShellWindow.py" line="701" />
       <source>Meta+N</source>
       <translation type="unfinished" />
@@ -91140,8 +91181,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1194" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
+      <location filename="../QScintilla/MiniEditor.py" line="1092" />
       <location filename="../QScintilla/ShellWindow.py" line="710" />
       <source>Ctrl+Down</source>
       <translation />
@@ -91149,8 +91190,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1174" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
+      <location filename="../QScintilla/MiniEditor.py" line="1104" />
       <location filename="../QScintilla/ShellWindow.py" line="722" />
       <source>Ctrl+Up</source>
       <translation />
@@ -91158,8 +91199,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1139" />
       <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/MiniEditor.py" line="1137" />
       <location filename="../QScintilla/ShellWindow.py" line="733" />
       <location filename="../QScintilla/ShellWindow.py" line="732" />
       <source>Move up one page</source>
@@ -91167,7 +91208,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
+      <location filename="../QScintilla/MiniEditor.py" line="1140" />
       <location filename="../QScintilla/ShellWindow.py" line="734" />
       <source>PgUp</source>
       <translation />
@@ -91175,8 +91216,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
+      <location filename="../QScintilla/MiniEditor.py" line="1151" />
       <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1149" />
       <location filename="../QScintilla/ShellWindow.py" line="745" />
       <location filename="../QScintilla/ShellWindow.py" line="744" />
       <source>Move down one page</source>
@@ -91184,14 +91225,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1152" />
       <location filename="../QScintilla/ShellWindow.py" line="746" />
       <source>PgDown</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1158" />
+      <location filename="../QScintilla/MiniEditor.py" line="1159" />
       <location filename="../QScintilla/ShellWindow.py" line="753" />
       <source>Meta+V</source>
       <translation type="unfinished" />
@@ -91199,8 +91240,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
+      <location filename="../QScintilla/MiniEditor.py" line="1859" />
       <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/MiniEditor.py" line="1857" />
       <location filename="../QScintilla/ShellWindow.py" line="761" />
       <location filename="../QScintilla/ShellWindow.py" line="760" />
       <source>Escape</source>
@@ -91208,7 +91249,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
+      <location filename="../QScintilla/MiniEditor.py" line="1860" />
       <location filename="../QScintilla/ShellWindow.py" line="762" />
       <source>Esc</source>
       <translation />
@@ -91216,8 +91257,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1233" />
+      <location filename="../QScintilla/MiniEditor.py" line="1230" />
       <location filename="../QScintilla/ShellWindow.py" line="775" />
       <location filename="../QScintilla/ShellWindow.py" line="772" />
       <source>Extend selection left one character</source>
@@ -91225,14 +91266,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1235" />
+      <location filename="../QScintilla/MiniEditor.py" line="1236" />
       <location filename="../QScintilla/ShellWindow.py" line="778" />
       <source>Shift+Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1242" />
+      <location filename="../QScintilla/MiniEditor.py" line="1243" />
       <location filename="../QScintilla/ShellWindow.py" line="785" />
       <source>Meta+Shift+B</source>
       <translation type="unfinished" />
@@ -91240,8 +91281,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1253" />
+      <location filename="../QScintilla/MiniEditor.py" line="1250" />
       <location filename="../QScintilla/ShellWindow.py" line="795" />
       <location filename="../QScintilla/ShellWindow.py" line="792" />
       <source>Extend selection right one character</source>
@@ -91249,14 +91290,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1255" />
+      <location filename="../QScintilla/MiniEditor.py" line="1256" />
       <location filename="../QScintilla/ShellWindow.py" line="798" />
       <source>Shift+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1262" />
+      <location filename="../QScintilla/MiniEditor.py" line="1263" />
       <location filename="../QScintilla/ShellWindow.py" line="805" />
       <source>Meta+Shift+F</source>
       <translation type="unfinished" />
@@ -91264,8 +91305,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
+      <location filename="../QScintilla/MiniEditor.py" line="1347" />
       <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/MiniEditor.py" line="1345" />
       <location filename="../QScintilla/ShellWindow.py" line="813" />
       <location filename="../QScintilla/ShellWindow.py" line="812" />
       <source>Extend selection left one word</source>
@@ -91274,8 +91315,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1355" />
-      <location filename="../QScintilla/MiniEditor.py" line="1315" />
+      <location filename="../QScintilla/MiniEditor.py" line="1356" />
+      <location filename="../QScintilla/MiniEditor.py" line="1316" />
       <location filename="../QScintilla/ShellWindow.py" line="822" />
       <source>Alt+Shift+Left</source>
       <translation />
@@ -91283,8 +91324,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2276" />
-      <location filename="../QScintilla/MiniEditor.py" line="1361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2277" />
+      <location filename="../QScintilla/MiniEditor.py" line="1362" />
       <location filename="../QScintilla/ShellWindow.py" line="828" />
       <source>Ctrl+Shift+Left</source>
       <translation />
@@ -91292,8 +91333,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1372" />
-      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1373" />
+      <location filename="../QScintilla/MiniEditor.py" line="1370" />
       <location filename="../QScintilla/ShellWindow.py" line="839" />
       <location filename="../QScintilla/ShellWindow.py" line="836" />
       <source>Extend selection right one word</source>
@@ -91303,9 +91344,9 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1383" />
-      <location filename="../QScintilla/MiniEditor.py" line="1337" />
+      <location filename="../QScintilla/MiniEditor.py" line="2151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1384" />
+      <location filename="../QScintilla/MiniEditor.py" line="1338" />
       <location filename="../QScintilla/ShellWindow.py" line="850" />
       <source>Alt+Shift+Right</source>
       <translation />
@@ -91313,8 +91354,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1837" />
-      <location filename="../QScintilla/MiniEditor.py" line="1389" />
+      <location filename="../QScintilla/MiniEditor.py" line="1838" />
+      <location filename="../QScintilla/MiniEditor.py" line="1390" />
       <location filename="../QScintilla/ShellWindow.py" line="856" />
       <source>Ctrl+Shift+Right</source>
       <translation />
@@ -91322,8 +91363,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1401" />
-      <location filename="../QScintilla/MiniEditor.py" line="1397" />
+      <location filename="../QScintilla/MiniEditor.py" line="1402" />
+      <location filename="../QScintilla/MiniEditor.py" line="1398" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
       <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
@@ -91331,7 +91372,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1412" />
+      <location filename="../QScintilla/MiniEditor.py" line="1413" />
       <location filename="../QScintilla/ShellWindow.py" line="879" />
       <source>Shift+Home</source>
       <translation />
@@ -91339,8 +91380,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1422" />
-      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1423" />
+      <location filename="../QScintilla/MiniEditor.py" line="1420" />
       <location filename="../QScintilla/ShellWindow.py" line="889" />
       <location filename="../QScintilla/ShellWindow.py" line="886" />
       <source>Extend selection to end of document line</source>
@@ -91348,14 +91389,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1432" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
       <location filename="../QScintilla/ShellWindow.py" line="899" />
       <source>Meta+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1437" />
       <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Shift+End</source>
       <translation />
@@ -91364,21 +91405,21 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2532" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
       <location filename="../QScintilla/ShellWindow.py" line="917" />
       <source>Search</source>
       <translation>Vyhledat</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2534" />
+      <location filename="../QScintilla/MiniEditor.py" line="2535" />
       <location filename="../QScintilla/ShellWindow.py" line="919" />
       <source>&amp;Search...</source>
       <translation>V&amp;yhledat...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2536" />
+      <location filename="../QScintilla/MiniEditor.py" line="2537" />
       <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
@@ -91386,7 +91427,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2543" />
+      <location filename="../QScintilla/MiniEditor.py" line="2544" />
       <location filename="../QScintilla/ShellWindow.py" line="928" />
       <source>Search for a text</source>
       <translation>Hledat text</translation>
@@ -91398,21 +91439,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
       <location filename="../QScintilla/ShellWindow.py" line="943" />
       <source>Search next</source>
       <translation>Hledat text</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2560" />
+      <location filename="../QScintilla/MiniEditor.py" line="2561" />
       <location filename="../QScintilla/ShellWindow.py" line="945" />
       <source>Search &amp;next</source>
       <translation>Hledat &amp;další</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2562" />
+      <location filename="../QScintilla/MiniEditor.py" line="2563" />
       <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>F3</source>
       <comment>Search|Search next</comment>
@@ -91420,7 +91461,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2569" />
+      <location filename="../QScintilla/MiniEditor.py" line="2570" />
       <location filename="../QScintilla/ShellWindow.py" line="954" />
       <source>Search next occurrence of text</source>
       <translation>Hledat další výskyt textu</translation>
@@ -91432,21 +91473,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2584" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
       <location filename="../QScintilla/ShellWindow.py" line="971" />
       <source>Search previous</source>
       <translation>Hledat předchozí</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2586" />
+      <location filename="../QScintilla/MiniEditor.py" line="2587" />
       <location filename="../QScintilla/ShellWindow.py" line="973" />
       <source>Search &amp;previous</source>
       <translation>Hledat &amp;předchozí</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2588" />
+      <location filename="../QScintilla/MiniEditor.py" line="2589" />
       <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
@@ -91454,7 +91495,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2597" />
+      <location filename="../QScintilla/MiniEditor.py" line="2598" />
       <location filename="../QScintilla/ShellWindow.py" line="984" />
       <source>Search previous occurrence of text</source>
       <translation>Hledat předchozí výskyt textu</translation>
@@ -91466,21 +91507,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2757" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
       <location filename="../QScintilla/ShellWindow.py" line="1010" />
       <source>Zoom in</source>
       <translation>Přiblížit</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2759" />
+      <location filename="../QScintilla/MiniEditor.py" line="2760" />
       <location filename="../QScintilla/ShellWindow.py" line="1012" />
       <source>Zoom &amp;in</source>
       <translation>Př&amp;iblížit</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/MiniEditor.py" line="2762" />
       <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
@@ -91488,7 +91529,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2764" />
+      <location filename="../QScintilla/MiniEditor.py" line="2765" />
       <location filename="../QScintilla/ShellWindow.py" line="1017" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
@@ -91496,35 +91537,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/MiniEditor.py" line="2771" />
       <location filename="../QScintilla/ShellWindow.py" line="1023" />
       <source>Zoom in on the text</source>
       <translation>Zvětšovací lupa</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2773" />
+      <location filename="../QScintilla/MiniEditor.py" line="2774" />
       <location filename="../QScintilla/ShellWindow.py" line="1026" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Přiblížit&lt;/b&gt;&lt;p&gt;Přiblížit text. Text bude větší.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2783" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
       <location filename="../QScintilla/ShellWindow.py" line="1036" />
       <source>Zoom out</source>
       <translation>Oddálit</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2785" />
+      <location filename="../QScintilla/MiniEditor.py" line="2786" />
       <location filename="../QScintilla/ShellWindow.py" line="1038" />
       <source>Zoom &amp;out</source>
       <translation>&amp;Oddálit</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/MiniEditor.py" line="2788" />
       <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
@@ -91532,7 +91573,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2790" />
+      <location filename="../QScintilla/MiniEditor.py" line="2791" />
       <location filename="../QScintilla/ShellWindow.py" line="1043" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
@@ -91540,35 +91581,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/MiniEditor.py" line="2797" />
       <location filename="../QScintilla/ShellWindow.py" line="1049" />
       <source>Zoom out on the text</source>
       <translation>Zmenšovací lupa</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2799" />
+      <location filename="../QScintilla/MiniEditor.py" line="2800" />
       <location filename="../QScintilla/ShellWindow.py" line="1052" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Oddálit&lt;/b&gt;&lt;p&gt;Lupa na oddálení textu. Text bude menší.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2809" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
       <location filename="../QScintilla/ShellWindow.py" line="1062" />
       <source>Zoom reset</source>
       <translation type="unfinished">Resetovat lupu</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2811" />
+      <location filename="../QScintilla/MiniEditor.py" line="2812" />
       <location filename="../QScintilla/ShellWindow.py" line="1064" />
       <source>Zoom &amp;reset</source>
       <translation type="unfinished">&amp;Resetovat lupu</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2813" />
+      <location filename="../QScintilla/MiniEditor.py" line="2814" />
       <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
@@ -91576,42 +91617,42 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/MiniEditor.py" line="2821" />
       <location filename="../QScintilla/ShellWindow.py" line="1073" />
       <source>Reset the zoom of the text</source>
       <translation type="unfinished">Resetovat lupu textu</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2823" />
+      <location filename="../QScintilla/MiniEditor.py" line="2824" />
       <location filename="../QScintilla/ShellWindow.py" line="1076" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Reset lupy&lt;/b&gt;&lt;p&gt;Reset lupy pro text. Nastaví se lupa na hodnotu 100%.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2834" />
+      <location filename="../QScintilla/MiniEditor.py" line="2835" />
       <location filename="../QScintilla/ShellWindow.py" line="1087" />
       <source>Zoom</source>
       <translation>Lupa</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2836" />
+      <location filename="../QScintilla/MiniEditor.py" line="2837" />
       <location filename="../QScintilla/ShellWindow.py" line="1089" />
       <source>&amp;Zoom</source>
       <translation>&amp;Lupa</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/MiniEditor.py" line="2844" />
       <location filename="../QScintilla/ShellWindow.py" line="1096" />
       <source>Zoom the text</source>
       <translation>Lupa na text</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2846" />
+      <location filename="../QScintilla/MiniEditor.py" line="2847" />
       <location filename="../QScintilla/ShellWindow.py" line="1099" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Lupa&lt;/b&gt;&lt;p&gt;Lupa na text. Otevře se dialogové okno kde se zadá požadovaná hodnota zvětšení/zmenšení.&lt;/p&gt;</translation>
@@ -91619,904 +91660,904 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="804" />
       <location filename="../ViewManager/ViewManager.py" line="802" />
-      <location filename="../QScintilla/MiniEditor.py" line="740" />
+      <location filename="../QScintilla/MiniEditor.py" line="741" />
       <source>Print Preview</source>
       <translation>Náhled tisku</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
+      <location filename="../QScintilla/MiniEditor.py" line="959" />
       <location filename="../QScintilla/MiniEditor.py" line="958" />
-      <location filename="../QScintilla/MiniEditor.py" line="957" />
       <source>Move left one word part</source>
       <translation>Posun o jednu část slova doleva</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
+      <location filename="../QScintilla/MiniEditor.py" line="975" />
       <location filename="../QScintilla/MiniEditor.py" line="974" />
-      <location filename="../QScintilla/MiniEditor.py" line="973" />
       <source>Move right one word part</source>
       <translation>Posun o jednu část slova doprava</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2128" />
-      <location filename="../QScintilla/MiniEditor.py" line="1018" />
-      <location filename="../QScintilla/MiniEditor.py" line="982" />
+      <location filename="../QScintilla/MiniEditor.py" line="2129" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/MiniEditor.py" line="983" />
       <source>Alt+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1051" />
       <location filename="../QScintilla/MiniEditor.py" line="1050" />
-      <location filename="../QScintilla/MiniEditor.py" line="1049" />
       <source>Move to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="1063" />
       <source>Alt+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
+      <location filename="../QScintilla/MiniEditor.py" line="1091" />
       <location filename="../QScintilla/MiniEditor.py" line="1090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1089" />
       <source>Scroll view down one line</source>
       <translation>Posun pohledu  jeden řádek dolů</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
+      <location filename="../QScintilla/MiniEditor.py" line="1103" />
       <location filename="../QScintilla/MiniEditor.py" line="1102" />
-      <location filename="../QScintilla/MiniEditor.py" line="1101" />
       <source>Scroll view up one line</source>
       <translation>Posun pohledu o jeden řádek nahoru</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
+      <location filename="../QScintilla/MiniEditor.py" line="1115" />
       <location filename="../QScintilla/MiniEditor.py" line="1114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1113" />
       <source>Move up one paragraph</source>
       <translation>Posun na předchozí odstavec</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
+      <location filename="../QScintilla/MiniEditor.py" line="1116" />
       <source>Alt+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
+      <location filename="../QScintilla/MiniEditor.py" line="1127" />
       <location filename="../QScintilla/MiniEditor.py" line="1126" />
-      <location filename="../QScintilla/MiniEditor.py" line="1125" />
       <source>Move down one paragraph</source>
       <translation>Posun na následující odstavec</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
+      <location filename="../QScintilla/MiniEditor.py" line="1128" />
       <source>Alt+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
+      <location filename="../QScintilla/MiniEditor.py" line="1167" />
       <location filename="../QScintilla/MiniEditor.py" line="1166" />
-      <location filename="../QScintilla/MiniEditor.py" line="1165" />
       <source>Move to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1178" />
+      <location filename="../QScintilla/MiniEditor.py" line="1179" />
       <source>Ctrl+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
+      <location filename="../QScintilla/MiniEditor.py" line="1187" />
       <location filename="../QScintilla/MiniEditor.py" line="1186" />
-      <location filename="../QScintilla/MiniEditor.py" line="1185" />
       <source>Move to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1198" />
+      <location filename="../QScintilla/MiniEditor.py" line="1199" />
       <source>Ctrl+End</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
+      <location filename="../QScintilla/MiniEditor.py" line="1219" />
       <location filename="../QScintilla/MiniEditor.py" line="1218" />
-      <location filename="../QScintilla/MiniEditor.py" line="1217" />
       <source>Unindent one level</source>
       <translation>Zrušit odsazení o jednu úroveň</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
+      <location filename="../QScintilla/MiniEditor.py" line="1220" />
       <source>Shift+Tab</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
+      <location filename="../QScintilla/MiniEditor.py" line="1271" />
       <location filename="../QScintilla/MiniEditor.py" line="1270" />
-      <location filename="../QScintilla/MiniEditor.py" line="1269" />
       <source>Extend selection up one line</source>
       <translation>Rozšířit výběr o řádku nahoru</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
+      <location filename="../QScintilla/MiniEditor.py" line="1272" />
       <source>Shift+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1278" />
+      <location filename="../QScintilla/MiniEditor.py" line="1279" />
       <source>Meta+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
+      <location filename="../QScintilla/MiniEditor.py" line="1287" />
       <location filename="../QScintilla/MiniEditor.py" line="1286" />
-      <location filename="../QScintilla/MiniEditor.py" line="1285" />
       <source>Extend selection down one line</source>
       <translation>Rozšířit výběr o jednu řádku dolů</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
+      <location filename="../QScintilla/MiniEditor.py" line="1288" />
       <source>Shift+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1294" />
+      <location filename="../QScintilla/MiniEditor.py" line="1295" />
       <source>Meta+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1304" />
-      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1305" />
+      <location filename="../QScintilla/MiniEditor.py" line="1302" />
       <source>Extend selection left one word part</source>
       <translation>Rozšířit výběr o jednu část slova vlevo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1326" />
-      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1327" />
+      <location filename="../QScintilla/MiniEditor.py" line="1324" />
       <source>Extend selection right one word part</source>
       <translation>Rozšířit výběr o jednu část slova vpravo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1446" />
-      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1447" />
+      <location filename="../QScintilla/MiniEditor.py" line="1444" />
       <source>Extend selection up one paragraph</source>
       <translation>Rozšířit výběr o předchozí odstavec</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1449" />
+      <location filename="../QScintilla/MiniEditor.py" line="1450" />
       <source>Alt+Shift+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1462" />
-      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1463" />
+      <location filename="../QScintilla/MiniEditor.py" line="1460" />
       <source>Extend selection down one paragraph</source>
       <translation>Rozšířit výběr o následující odstavec</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1465" />
+      <location filename="../QScintilla/MiniEditor.py" line="1466" />
       <source>Alt+Shift+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1477" />
       <location filename="../QScintilla/MiniEditor.py" line="1476" />
-      <location filename="../QScintilla/MiniEditor.py" line="1475" />
       <source>Extend selection up one page</source>
       <translation>Rozšířit výběr na předchozí stranu</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
+      <location filename="../QScintilla/MiniEditor.py" line="1478" />
       <source>Shift+PgUp</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="1489" />
       <location filename="../QScintilla/MiniEditor.py" line="1488" />
-      <location filename="../QScintilla/MiniEditor.py" line="1487" />
       <source>Extend selection down one page</source>
       <translation>Rozšířit výběr na následující stranu</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
+      <location filename="../QScintilla/MiniEditor.py" line="1490" />
       <source>Shift+PgDown</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1496" />
+      <location filename="../QScintilla/MiniEditor.py" line="1497" />
       <source>Meta+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1506" />
-      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1507" />
+      <location filename="../QScintilla/MiniEditor.py" line="1504" />
       <source>Extend selection to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1516" />
+      <location filename="../QScintilla/MiniEditor.py" line="1517" />
       <source>Ctrl+Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1521" />
+      <location filename="../QScintilla/MiniEditor.py" line="1522" />
       <source>Ctrl+Shift+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1533" />
+      <location filename="../QScintilla/MiniEditor.py" line="1530" />
       <source>Extend selection to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1543" />
+      <location filename="../QScintilla/MiniEditor.py" line="1544" />
       <source>Ctrl+Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1549" />
+      <location filename="../QScintilla/MiniEditor.py" line="1550" />
       <source>Ctrl+Shift+End</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1583" />
+      <location filename="../QScintilla/MiniEditor.py" line="1580" />
       <source>Delete previous character if not at start of line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1697" />
       <location filename="../QScintilla/MiniEditor.py" line="1696" />
-      <location filename="../QScintilla/MiniEditor.py" line="1695" />
       <source>Duplicate current line</source>
       <translation>Duplikovat aktuální řádek</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
+      <location filename="../QScintilla/MiniEditor.py" line="1698" />
       <source>Ctrl+D</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1710" />
-      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1711" />
+      <location filename="../QScintilla/MiniEditor.py" line="1708" />
       <source>Swap current and previous lines</source>
       <translation>Prohodit aktuální řádek s předchozím</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1713" />
+      <location filename="../QScintilla/MiniEditor.py" line="1714" />
       <source>Ctrl+T</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="1725" />
       <location filename="../QScintilla/MiniEditor.py" line="1724" />
-      <location filename="../QScintilla/MiniEditor.py" line="1723" />
       <source>Reverse selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
+      <location filename="../QScintilla/MiniEditor.py" line="1726" />
       <source>Meta+Alt+R</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
+      <location filename="../QScintilla/MiniEditor.py" line="1737" />
       <location filename="../QScintilla/MiniEditor.py" line="1736" />
-      <location filename="../QScintilla/MiniEditor.py" line="1735" />
       <source>Cut current line</source>
       <translation>Vyjmout aktuální řádek</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
+      <location filename="../QScintilla/MiniEditor.py" line="1738" />
       <source>Alt+Shift+L</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
+      <location filename="../QScintilla/MiniEditor.py" line="1749" />
       <location filename="../QScintilla/MiniEditor.py" line="1748" />
-      <location filename="../QScintilla/MiniEditor.py" line="1747" />
       <source>Copy current line</source>
       <translation>Kopírovat aktuální řádek</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="1750" />
       <source>Ctrl+Shift+T</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
+      <location filename="../QScintilla/MiniEditor.py" line="1761" />
       <location filename="../QScintilla/MiniEditor.py" line="1760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1759" />
       <source>Toggle insert/overtype</source>
       <translation>Přepnout vkládání/přepisování</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
+      <location filename="../QScintilla/MiniEditor.py" line="1762" />
       <source>Ins</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1775" />
+      <location filename="../QScintilla/MiniEditor.py" line="1772" />
       <source>Convert selection to lower case</source>
       <translation>Převést výběr na minusky</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1777" />
+      <location filename="../QScintilla/MiniEditor.py" line="1778" />
       <source>Alt+Shift+U</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1791" />
+      <location filename="../QScintilla/MiniEditor.py" line="1788" />
       <source>Convert selection to upper case</source>
       <translation>Převést výběr na verzálky</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1793" />
+      <location filename="../QScintilla/MiniEditor.py" line="1794" />
       <source>Ctrl+Shift+U</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
+      <location filename="../QScintilla/MiniEditor.py" line="1805" />
       <location filename="../QScintilla/MiniEditor.py" line="1804" />
-      <location filename="../QScintilla/MiniEditor.py" line="1803" />
       <source>Move to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1816" />
+      <location filename="../QScintilla/MiniEditor.py" line="1817" />
       <source>Alt+End</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1827" />
+      <location filename="../QScintilla/MiniEditor.py" line="1824" />
       <source>Extend selection to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
+      <location filename="../QScintilla/MiniEditor.py" line="1847" />
       <location filename="../QScintilla/MiniEditor.py" line="1846" />
-      <location filename="../QScintilla/MiniEditor.py" line="1845" />
       <source>Formfeed</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1872" />
-      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1873" />
+      <location filename="../QScintilla/MiniEditor.py" line="1870" />
       <source>Extend rectangular selection down one line</source>
       <translation>Rozšířit obdélníkový výběr o řádek dolů</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1875" />
+      <location filename="../QScintilla/MiniEditor.py" line="1876" />
       <source>Alt+Ctrl+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1883" />
+      <location filename="../QScintilla/MiniEditor.py" line="1884" />
       <source>Meta+Alt+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1894" />
-      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1895" />
+      <location filename="../QScintilla/MiniEditor.py" line="1892" />
       <source>Extend rectangular selection up one line</source>
       <translation>Rozšířit obdélníkový výběr o řádek nahoru</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1897" />
+      <location filename="../QScintilla/MiniEditor.py" line="1898" />
       <source>Alt+Ctrl+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1905" />
+      <location filename="../QScintilla/MiniEditor.py" line="1906" />
       <source>Meta+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1916" />
-      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1917" />
+      <location filename="../QScintilla/MiniEditor.py" line="1914" />
       <source>Extend rectangular selection left one character</source>
       <translation>Rozšířit obdélníkový výběr o jeden znak vlevo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1919" />
+      <location filename="../QScintilla/MiniEditor.py" line="1920" />
       <source>Alt+Ctrl+Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1927" />
+      <location filename="../QScintilla/MiniEditor.py" line="1928" />
       <source>Meta+Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1938" />
-      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1939" />
+      <location filename="../QScintilla/MiniEditor.py" line="1936" />
       <source>Extend rectangular selection right one character</source>
       <translation>Rozšířit obdélníkový výběr o jeden znak vpravo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1941" />
+      <location filename="../QScintilla/MiniEditor.py" line="1942" />
       <source>Alt+Ctrl+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1949" />
+      <location filename="../QScintilla/MiniEditor.py" line="1950" />
       <source>Meta+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1962" />
-      <location filename="../QScintilla/MiniEditor.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1963" />
+      <location filename="../QScintilla/MiniEditor.py" line="1958" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1975" />
+      <location filename="../QScintilla/MiniEditor.py" line="1976" />
       <source>Alt+Shift+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1986" />
-      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1987" />
+      <location filename="../QScintilla/MiniEditor.py" line="1984" />
       <source>Extend rectangular selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1997" />
+      <location filename="../QScintilla/MiniEditor.py" line="1998" />
       <source>Meta+Alt+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2002" />
+      <location filename="../QScintilla/MiniEditor.py" line="2003" />
       <source>Alt+Shift+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2012" />
-      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2013" />
+      <location filename="../QScintilla/MiniEditor.py" line="2010" />
       <source>Extend rectangular selection up one page</source>
       <translation>Rozšířit obdélníkový výběr o předchozí stranu</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2015" />
+      <location filename="../QScintilla/MiniEditor.py" line="2016" />
       <source>Alt+Shift+PgUp</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2028" />
-      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2029" />
+      <location filename="../QScintilla/MiniEditor.py" line="2026" />
       <source>Extend rectangular selection down one page</source>
       <translation>Rozšířit obdélníkový výběr o následující stranu</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2031" />
+      <location filename="../QScintilla/MiniEditor.py" line="2032" />
       <source>Alt+Shift+PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2039" />
+      <location filename="../QScintilla/MiniEditor.py" line="2040" />
       <source>Meta+Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2515" />
       <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2513" />
+      <location filename="../QScintilla/MiniEditor.py" line="2049" />
       <location filename="../QScintilla/MiniEditor.py" line="2048" />
-      <location filename="../QScintilla/MiniEditor.py" line="2047" />
       <source>Duplicate current selection</source>
       <translation>Duplikovat aktuální výběr</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2516" />
+      <location filename="../QScintilla/MiniEditor.py" line="2050" />
       <source>Ctrl+Shift+D</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2063" />
-      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2061" />
       <source>Scroll to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
+      <location filename="../QScintilla/MiniEditor.py" line="2083" />
       <location filename="../QScintilla/MiniEditor.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="2081" />
       <source>Scroll to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2101" />
-      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2102" />
+      <location filename="../QScintilla/MiniEditor.py" line="2099" />
       <source>Scroll vertically to center current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2111" />
+      <location filename="../QScintilla/MiniEditor.py" line="2112" />
       <source>Meta+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
+      <location filename="../QScintilla/MiniEditor.py" line="2121" />
       <location filename="../QScintilla/MiniEditor.py" line="2120" />
-      <location filename="../QScintilla/MiniEditor.py" line="2119" />
       <source>Move to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2139" />
-      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2140" />
+      <location filename="../QScintilla/MiniEditor.py" line="2137" />
       <source>Extend selection to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2162" />
-      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2163" />
+      <location filename="../QScintilla/MiniEditor.py" line="2160" />
       <source>Move to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2179" />
-      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2180" />
+      <location filename="../QScintilla/MiniEditor.py" line="2177" />
       <source>Extend selection to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2196" />
-      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2197" />
+      <location filename="../QScintilla/MiniEditor.py" line="2194" />
       <source>Move to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2206" />
+      <location filename="../QScintilla/MiniEditor.py" line="2207" />
       <source>Meta+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2218" />
+      <location filename="../QScintilla/MiniEditor.py" line="2215" />
       <source>Extend selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2228" />
+      <location filename="../QScintilla/MiniEditor.py" line="2229" />
       <source>Meta+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2241" />
-      <location filename="../QScintilla/MiniEditor.py" line="2237" />
+      <location filename="../QScintilla/MiniEditor.py" line="2242" />
+      <location filename="../QScintilla/MiniEditor.py" line="2238" />
       <source>Extend rectangular selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2253" />
+      <location filename="../QScintilla/MiniEditor.py" line="2254" />
       <source>Meta+Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2265" />
-      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2266" />
+      <location filename="../QScintilla/MiniEditor.py" line="2263" />
       <source>Extend selection to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2288" />
-      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2289" />
+      <location filename="../QScintilla/MiniEditor.py" line="2286" />
       <source>Move to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2306" />
-      <location filename="../QScintilla/MiniEditor.py" line="2302" />
+      <location filename="../QScintilla/MiniEditor.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="2303" />
       <source>Extend selection to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2325" />
-      <location filename="../QScintilla/MiniEditor.py" line="2321" />
+      <location filename="../QScintilla/MiniEditor.py" line="2326" />
+      <location filename="../QScintilla/MiniEditor.py" line="2322" />
       <source>Move to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2345" />
-      <location filename="../QScintilla/MiniEditor.py" line="2340" />
+      <location filename="../QScintilla/MiniEditor.py" line="2346" />
+      <location filename="../QScintilla/MiniEditor.py" line="2341" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2364" />
-      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2365" />
+      <location filename="../QScintilla/MiniEditor.py" line="2362" />
       <source>Move to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2381" />
-      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2382" />
+      <location filename="../QScintilla/MiniEditor.py" line="2379" />
       <source>Extend selection to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="2397" />
       <location filename="../QScintilla/MiniEditor.py" line="2396" />
-      <location filename="../QScintilla/MiniEditor.py" line="2395" />
       <source>Stuttered move up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2411" />
-      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2412" />
+      <location filename="../QScintilla/MiniEditor.py" line="2409" />
       <source>Stuttered extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2428" />
-      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2429" />
+      <location filename="../QScintilla/MiniEditor.py" line="2426" />
       <source>Stuttered move down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2446" />
+      <location filename="../QScintilla/MiniEditor.py" line="2443" />
       <source>Stuttered extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2462" />
-      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2463" />
+      <location filename="../QScintilla/MiniEditor.py" line="2460" />
       <source>Delete right to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2472" />
+      <location filename="../QScintilla/MiniEditor.py" line="2473" />
       <source>Alt+Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2484" />
+      <location filename="../QScintilla/MiniEditor.py" line="2481" />
       <source>Move selected lines up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2500" />
-      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2501" />
+      <location filename="../QScintilla/MiniEditor.py" line="2498" />
       <source>Move selected lines down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2546" />
+      <location filename="../QScintilla/MiniEditor.py" line="2547" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Hledat&lt;/b&gt;
 &lt;p&gt;Hledat text v aktuálním editoru. Zobrazí se dialogové okno, do kterého se zadá hledaný text a další nastavení.&lt;p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2572" />
+      <location filename="../QScintilla/MiniEditor.py" line="2573" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Hledat další&lt;/b&gt;&lt;p&gt;Hledá se další výskyt hledaného textu v aktuálním editoru. Stále platí nastavení, která byla nastavena při zadání hledaného textu.&lt;p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2602" />
+      <location filename="../QScintilla/MiniEditor.py" line="2603" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Hledat předchozí&lt;/b&gt;&lt;p&gt;Hledá se předchozí výskyt hledaného textu v aktuálním editoru. Stále platí nastavení, která byla nastavena při zadání hledaného textu.&lt;p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2616" />
-      <location filename="../QScintilla/MiniEditor.py" line="2614" />
+      <location filename="../QScintilla/MiniEditor.py" line="2617" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Clear search markers</source>
       <translation>Vyčistit značky hledání</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2618" />
+      <location filename="../QScintilla/MiniEditor.py" line="2619" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2627" />
+      <location filename="../QScintilla/MiniEditor.py" line="2628" />
       <source>Clear all displayed search markers</source>
       <translation>Vyčistit všechny zobrazené začky hledání</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2632" />
+      <location filename="../QScintilla/MiniEditor.py" line="2633" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Vyčistit značky hledání&lt;/b&gt;&lt;p&gt;Smažou všechny zabrazené značky hledání.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2642" />
+      <location filename="../QScintilla/MiniEditor.py" line="2643" />
       <source>Replace</source>
       <translation>Nahradit</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2644" />
       <source>&amp;Replace...</source>
       <translation>Nah&amp;radit...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2645" />
+      <location filename="../QScintilla/MiniEditor.py" line="2646" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2652" />
+      <location filename="../QScintilla/MiniEditor.py" line="2653" />
       <source>Replace some text</source>
       <translation>Hledat nějaký text</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2655" />
+      <location filename="../QScintilla/MiniEditor.py" line="2656" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nahradit&lt;/b&gt;
 &lt;p&gt;Vyhledá va ktuálním editoru text a nahradí jej. Je zobrazeno dialogové okno, kde se zadá text, který se má nahradit, nový text a nastavení pro vyhledávání a nahrazení.&lt;p&gt;</translation>
@@ -92524,81 +92565,81 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2669" />
-      <location filename="../QScintilla/MiniEditor.py" line="2667" />
+      <location filename="../QScintilla/MiniEditor.py" line="2670" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2671" />
+      <location filename="../QScintilla/MiniEditor.py" line="2672" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2680" />
+      <location filename="../QScintilla/MiniEditor.py" line="2681" />
       <source>Replace the found text and search the next occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2685" />
+      <location filename="../QScintilla/MiniEditor.py" line="2686" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2701" />
-      <location filename="../QScintilla/MiniEditor.py" line="2699" />
+      <location filename="../QScintilla/MiniEditor.py" line="2702" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2703" />
+      <location filename="../QScintilla/MiniEditor.py" line="2704" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2712" />
+      <location filename="../QScintilla/MiniEditor.py" line="2713" />
       <source>Replace the found text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2715" />
+      <location filename="../QScintilla/MiniEditor.py" line="2716" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2728" />
-      <location filename="../QScintilla/MiniEditor.py" line="2726" />
+      <location filename="../QScintilla/MiniEditor.py" line="2729" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2730" />
+      <location filename="../QScintilla/MiniEditor.py" line="2731" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2739" />
+      <location filename="../QScintilla/MiniEditor.py" line="2740" />
       <source>Replace search text occurrences</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2742" />
+      <location filename="../QScintilla/MiniEditor.py" line="2743" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
Binary file src/eric7/i18n/eric7_de.qm has changed
--- a/src/eric7/i18n/eric7_de.ts	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/i18n/eric7_de.ts	Sat Apr 15 18:22:09 2023 +0200
@@ -1733,77 +1733,77 @@
   <context>
     <name>BaseDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="190" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="196" />
       <source>Device Data Not Available</source>
       <translation>Gerätedaten sind nicht verfügbar</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="191" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="197" />
       <source>&lt;p&gt;The device data is not available. Try to connect to the device again. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Gerätedaten sind nicht verfügbar. Versuche, das Gerät neu zu verbinden. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="244" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="250" />
       <source>Unsupported Device</source>
       <translation>Nicht unterstütztes Gerät</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="254" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="260" />
       <source>REPL is not supported by this device.</source>
       <translation>REPL wird von diesem Gerät nicht unterstützt.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="273" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="279" />
       <source>Plotter is not supported by this device.</source>
       <translation>Der Plotter wird von diesem Gerät nicht unterstützt.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="292" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="298" />
       <source>Running scripts is not supported by this device.</source>
       <translation>Die Ausführung von Skripten wird von diesem Gerät nicht unterstützt.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="311" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="317" />
       <source>File Manager is not supported by this device.</source>
       <translation>Der Dateimanager wird von diesem Gerät nicht unterstützt.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="366" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="372" />
       <source>Select Device Directory</source>
       <translation>Auswahl des Geräteverzeichnis</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="367" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="373" />
       <source>Select the directory for the connected device:</source>
       <translation>Wähle das Verzeichnis für das verbundene Gerät:</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="513" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="519" />
       <source>Detected an error without indications.</source>
       <translation>Es wurde ein Fehler ohne nähere Angaben entdeckt.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1400" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1464" />
       <source>Operation not supported.</source>
       <translation>Befehl wird nicht unterstützt.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>Yes</source>
       <translation>Ja</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>No</source>
       <translation>Nein</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>yes</source>
       <translation>ja</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>no</source>
       <translation>nein</translation>
     </message>
@@ -3979,17 +3979,17 @@
       <translation>zufällig, privat, nicht auflösbar</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="141" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
       <source>WIZnet 5x00 Ethernet</source>
       <translation>WIZnet 5x00 Ethernet</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="143" />
       <source>&lt;p&gt;Support for &lt;b&gt;WIZnet 5x00&lt;/b&gt; Ethernet boards could not be detected. Is the module &lt;b&gt;adafruit_wiznet5k&lt;/b&gt; installed?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Unterstützung für &lt;b&gt;WIZnet 5x00&lt;/b&gt; Ethernet Boards konnte nicht detektiert werden. Ist das Module &lt;b&gt;adafruit_wiznet5k&lt;/b&gt; installiert?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="176" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="177" />
       <source>CircuitPython</source>
       <translation>CircuitPython</translation>
     </message>
@@ -4157,114 +4157,114 @@
       <translation>Wähle den Pfad des Gerätes:</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1127" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="864" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1128" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="865" />
       <source>unknown ({0})</source>
       <translation>unbekannt ({0})</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1576" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1499" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1039" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="960" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1577" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1500" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1040" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="961" />
       <source>The device volume is not available.</source>
       <translation>Das Geräteverzeichnis ist nicht verfügbar.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1003" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="975" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
       <source>Write WiFi Credentials</source>
       <translation>WLAN Berechtigungen schreiben</translation>
     </message>
     <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1539" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1005" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="977" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Soll sie ersetzt werden?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1546" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="984" />
+      <source>Aborted</source>
+      <translation>Abgebrochen</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1195" />
+      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
+      <translation>CircuitPython unterstützt nicht die Konfiguration der IPv4 Parameter des WiFi Access Point.</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1266" />
+      <source>CircuitPython does not support reporting of connected clients.</source>
+      <translation>CircuitPython unterstützt nicht die Ermittlung verbundener Geräte.</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
+      <source>Active</source>
+      <translation>Aktiv</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
+      <source>Connected</source>
+      <translation>Verbunden</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
+      <source>IPv4 Address</source>
+      <translation>IPv4 Adresse</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
+      <source>Netmask</source>
+      <translation>Netzmaske</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
+      <source>Gateway</source>
+      <translation>Gateway</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
+      <source>DNS</source>
+      <translation>DNS</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1677" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
+      <source>MAC-Address</source>
+      <translation>MAC-Addresse</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
+      <source>Chip Type</source>
+      <translation>Chiptyp</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1358" />
+      <source>max. Sockets</source>
+      <translation>max. Sockets</translation>
+    </message>
+    <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1538" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Soll sie ersetzt werden?&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1545" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1011" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="983" />
-      <source>Aborted</source>
-      <translation>Abgebrochen</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1194" />
-      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
-      <translation>CircuitPython unterstützt nicht die Konfiguration der IPv4 Parameter des WiFi Access Point.</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1265" />
-      <source>CircuitPython does not support reporting of connected clients.</source>
-      <translation>CircuitPython unterstützt nicht die Ermittlung verbundener Geräte.</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1674" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1349" />
-      <source>Active</source>
-      <translation>Aktiv</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1680" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
-      <source>Connected</source>
-      <translation>Verbunden</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
-      <source>IPv4 Address</source>
-      <translation>IPv4 Adresse</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
-      <source>Netmask</source>
-      <translation>Netzmaske</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
-      <source>Gateway</source>
-      <translation>Gateway</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
-      <source>DNS</source>
-      <translation>DNS</translation>
+      <source>Write Connect Script</source>
+      <translation>Verbindungsskript schreiben</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1676" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
-      <source>MAC-Address</source>
-      <translation>MAC-Addresse</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
-      <source>Chip Type</source>
-      <translation>Chiptyp</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
-      <source>max. Sockets</source>
-      <translation>max. Sockets</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1537" />
-      <source>Write Connect Script</source>
-      <translation>Verbindungsskript schreiben</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
       <source>Name</source>
       <translation>Name</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1678" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1679" />
       <source>Address Type</source>
       <translation>Adresstyp</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1682" />
       <source>Advertising</source>
       <translation>Advertising</translation>
     </message>
@@ -10267,12 +10267,12 @@
       <translation>&lt;p&gt;Der Debugger konnte nicht gestartet werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1378" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1380" />
       <source>Debug Protocol Error</source>
       <translation>Fehler im Debugprotokoll</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1379" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1381" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die vom Debugger empfangene Antwort konnte nicht dekodiert werden. Bitte berichten sie diesen Fehler zusammen mit den empfangenen Daten an die eric Bugs Emailadresse.&lt;/p&gt;&lt;p&gt;Fehler: {0}&lt;/p&gt;&lt;p&gt;Daten:&lt;br/&gt;{1}&lt;/p&gt;</translation>
     </message>
@@ -12122,7 +12122,7 @@
       <translation>Kommentar entfernen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9146" />
+      <location filename="../QScintilla/Editor.py" line="9154" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation>Docstring erzeugen</translation>
@@ -12395,7 +12395,7 @@
       <translation>Rechtschreibung</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8264" />
+      <location filename="../QScintilla/Editor.py" line="8272" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation>Rechtschreibprüfung...</translation>
@@ -12456,7 +12456,7 @@
       <translation>Haltepunkt bearbeiten...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5923" />
+      <location filename="../QScintilla/Editor.py" line="5932" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation>Haltepunkt aktivieren</translation>
@@ -12690,344 +12690,344 @@
       <translation>Gib den vollständigen Dateipfad auf dem Gerät ein:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5097" />
+      <location filename="../QScintilla/Editor.py" line="5106" />
       <source>Autocompletion</source>
       <translation>Automatische Vervollständigung</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5098" />
+      <location filename="../QScintilla/Editor.py" line="5107" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>Die automatische Vervollständigung ist nicht verfügbar, da keine Quelle gesetzt ist.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5226" />
+      <location filename="../QScintilla/Editor.py" line="5235" />
       <source>Auto-Completion Provider</source>
       <translation>Provider für automatische Vervollständigungen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5227" />
+      <location filename="../QScintilla/Editor.py" line="5236" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation>Der Provider für automatische Vervollständigungen namens '{0}' ist bereits registriert. Die Wiederholung wird ignoriert.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5519" />
+      <location filename="../QScintilla/Editor.py" line="5528" />
       <source>Call-Tips Provider</source>
       <translation>Calltipps-Provider</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5520" />
+      <location filename="../QScintilla/Editor.py" line="5529" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation>Der Calltipps-Provider namens '{0}' ist bereits registriert. Die Wiederholung wird ignoriert.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5927" />
+      <location filename="../QScintilla/Editor.py" line="5936" />
       <source>Disable breakpoint</source>
       <translation>Haltepunkt deaktivieren</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6307" />
+      <location filename="../QScintilla/Editor.py" line="6315" />
       <source>Code Coverage</source>
       <translation>Quelltext Abdeckung</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6308" />
+      <location filename="../QScintilla/Editor.py" line="6316" />
       <source>Please select a coverage file</source>
       <translation>Bitte wählen Sie eine Datei mit Abdeckungsdaten</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="6391" />
       <location filename="../QScintilla/Editor.py" line="6383" />
-      <location filename="../QScintilla/Editor.py" line="6375" />
       <source>Show Code Coverage Annotations</source>
       <translation>Zeilen ohne Abdeckung Markieren</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6376" />
-      <source>All lines have been covered.</source>
-      <translation>Alle Zeilen sind abgedeckt.</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="6384" />
+      <source>All lines have been covered.</source>
+      <translation>Alle Zeilen sind abgedeckt.</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="6392" />
       <source>There is no coverage file available.</source>
       <translation>Es gibt keine Datei mit Abdeckungsinformationen.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6488" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <source>Profile Data</source>
       <translation>Profildaten</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6489" />
+      <location filename="../QScintilla/Editor.py" line="6497" />
       <source>Please select a profile file</source>
       <translation>Bitte wählen Sie eine Datei mit Profildaten</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6650" />
-      <location filename="../QScintilla/Editor.py" line="6644" />
+      <location filename="../QScintilla/Editor.py" line="6658" />
+      <location filename="../QScintilla/Editor.py" line="6652" />
       <source>Syntax Error</source>
       <translation>Syntaxfehler</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6651" />
+      <location filename="../QScintilla/Editor.py" line="6659" />
       <source>No syntax error message available.</source>
       <translation>Keine Syntaxfehlermeldung verfügbar.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
-      <location filename="../QScintilla/Editor.py" line="6856" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6864" />
       <source>Warning</source>
       <translation>Warnung</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
       <source>No warning messages available.</source>
       <translation>Keine Warnmeldungen verfügbar.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6926" />
+      <location filename="../QScintilla/Editor.py" line="6934" />
       <source>Style: {0}</source>
       <translation>Stil: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6929" />
+      <location filename="../QScintilla/Editor.py" line="6937" />
       <source>Warning: {0}</source>
       <translation>Warnung: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6936" />
+      <location filename="../QScintilla/Editor.py" line="6944" />
       <source>Error: {0}</source>
       <translation>Fehler: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Macro Name</source>
       <translation>Makro Name</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Select a macro name:</source>
       <translation>Wähle einen Makro Namen:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7069" />
+      <location filename="../QScintilla/Editor.py" line="7077" />
       <source>Load macro file</source>
       <translation>Lade Makrodatei</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7115" />
-      <location filename="../QScintilla/Editor.py" line="7071" />
+      <location filename="../QScintilla/Editor.py" line="7123" />
+      <location filename="../QScintilla/Editor.py" line="7079" />
       <source>Macro files (*.macro)</source>
       <translation>Makrodateien (*.macro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7093" />
-      <location filename="../QScintilla/Editor.py" line="7083" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
+      <location filename="../QScintilla/Editor.py" line="7091" />
       <source>Error loading macro</source>
       <translation>Fehler beim Makro Laden</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7084" />
+      <location filename="../QScintilla/Editor.py" line="7092" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Makrodatei &lt;b&gt;{0}&lt;/b&gt; kann nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7094" />
+      <location filename="../QScintilla/Editor.py" line="7102" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Makrodatei &lt;b&gt;{0}&lt;/b&gt; ist zerstört.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7113" />
+      <location filename="../QScintilla/Editor.py" line="7121" />
       <source>Save macro file</source>
       <translation>Makrodatei schreiben</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7131" />
+      <location filename="../QScintilla/Editor.py" line="7139" />
       <source>Save macro</source>
       <translation>Makro speichern</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7132" />
+      <location filename="../QScintilla/Editor.py" line="7140" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Makrodatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7147" />
+      <location filename="../QScintilla/Editor.py" line="7155" />
       <source>Error saving macro</source>
       <translation>Fehler beim Makro speichern</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7148" />
+      <location filename="../QScintilla/Editor.py" line="7156" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Makrodatei &lt;b&gt;{0}&lt;/b&gt; kann nicht geschrieben werden.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7161" />
+      <location filename="../QScintilla/Editor.py" line="7169" />
       <source>Start Macro Recording</source>
       <translation>Makroaufzeichnung starten</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7162" />
+      <location filename="../QScintilla/Editor.py" line="7170" />
       <source>Macro recording is already active. Start new?</source>
       <translation>Eine Makroaufzeichnung ist bereits aktiv. Neu starten?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7188" />
+      <location filename="../QScintilla/Editor.py" line="7196" />
       <source>Macro Recording</source>
       <translation>Makroaufzeichnung</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7189" />
+      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation>Gib einen Namen für das Makro ein:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7340" />
+      <location filename="../QScintilla/Editor.py" line="7348" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; wurde geändert, während sie in eric geöffnet war. Neu einlesen?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7346" />
+      <location filename="../QScintilla/Editor.py" line="7354" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation>&lt;br&gt;&lt;b&gt;Warnung:&lt;/b&gt; Vorgenommenen Änderungen gehen beim neu einlesen verloren.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7353" />
+      <location filename="../QScintilla/Editor.py" line="7361" />
       <source>File changed</source>
       <translation>Datei geändert</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7403" />
+      <location filename="../QScintilla/Editor.py" line="7411" />
       <source>{0} (ro)</source>
       <translation>{0} (ro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7708" />
+      <location filename="../QScintilla/Editor.py" line="7716" />
       <source>Drop Error</source>
       <translation>Drop Fehler</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7709" />
+      <location filename="../QScintilla/Editor.py" line="7717" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; ist keine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7729" />
+      <location filename="../QScintilla/Editor.py" line="7737" />
       <source>Resources</source>
       <translation>Ressourcen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7739" />
       <source>Add file...</source>
       <translation>Datei hinzufügen...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7732" />
+      <location filename="../QScintilla/Editor.py" line="7740" />
       <source>Add files...</source>
       <translation>Dateien hinzufügen...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7733" />
+      <location filename="../QScintilla/Editor.py" line="7741" />
       <source>Add aliased file...</source>
       <translation>Aliased-Datei hinzufügen...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7735" />
+      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation>Lokalisierte Ressource hinzufügen...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7738" />
+      <location filename="../QScintilla/Editor.py" line="7746" />
       <source>Add resource frame</source>
       <translation>Ressourcenrahmen hinzufügen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7765" />
       <source>Add file resource</source>
       <translation>Dateiressource hinzufügen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7771" />
+      <location filename="../QScintilla/Editor.py" line="7779" />
       <source>Add file resources</source>
       <translation>Dateiressourcen hinzufügen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7795" />
-      <location filename="../QScintilla/Editor.py" line="7789" />
+      <location filename="../QScintilla/Editor.py" line="7803" />
+      <location filename="../QScintilla/Editor.py" line="7797" />
       <source>Add aliased file resource</source>
       <translation>Aliased-Dateiressourcen hinzufügen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7796" />
+      <location filename="../QScintilla/Editor.py" line="7804" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation>Alias für Datei &lt;b&gt;{0}&lt;/b&gt;:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7871" />
+      <location filename="../QScintilla/Editor.py" line="7879" />
       <source>Package Diagram</source>
       <translation>Package-Diagramm</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7872" />
+      <location filename="../QScintilla/Editor.py" line="7880" />
       <source>Include class attributes?</source>
       <translation>Klassenattribute anzeigen?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7892" />
+      <location filename="../QScintilla/Editor.py" line="7900" />
       <source>Imports Diagram</source>
       <translation>Imports Diagramm</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7893" />
+      <location filename="../QScintilla/Editor.py" line="7901" />
       <source>Include imports from external modules?</source>
       <translation>Imports externer Module anzeigen?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7912" />
+      <location filename="../QScintilla/Editor.py" line="7920" />
       <source>Application Diagram</source>
       <translation>Applikations-Diagramm</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7913" />
+      <location filename="../QScintilla/Editor.py" line="7921" />
       <source>Include module names?</source>
       <translation>Modulnamen anzeigen?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8268" />
+      <location filename="../QScintilla/Editor.py" line="8276" />
       <source>Add to dictionary</source>
       <translation>Zum Wörterbuch hinzufügen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8270" />
+      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation>Alle ignorieren</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8688" />
+      <location filename="../QScintilla/Editor.py" line="8696" />
       <source>Sort Lines</source>
       <translation>Zeilen sortieren</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8689" />
+      <location filename="../QScintilla/Editor.py" line="8697" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation>Die Auswahl enthält für eine numerische Sortierung ungültige Daten.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8782" />
+      <location filename="../QScintilla/Editor.py" line="8790" />
       <source>Register Mouse Click Handler</source>
       <translation>Maus Klick Handler registrieren</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8783" />
+      <location filename="../QScintilla/Editor.py" line="8791" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation>Ein Maus Klick Handler für "{0}" wurde bereits durch "{1}" registriert. Die Anfrage durch "{2}" wird abgebrochen...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8879" />
+      <location filename="../QScintilla/Editor.py" line="8887" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation>{0:4d}    {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8885" />
+      <location filename="../QScintilla/Editor.py" line="8893" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
@@ -13035,12 +13035,12 @@
     =&gt;  {2}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8953" />
+      <location filename="../QScintilla/Editor.py" line="8961" />
       <source>EditorConfig Properties</source>
       <translation>EditorConfig Eigenschaften</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8954" />
+      <location filename="../QScintilla/Editor.py" line="8962" />
       <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>
@@ -18098,12 +18098,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="222" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation>Lade Stylesheet</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="225" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Qt-Stylesheet &lt;b&gt;{0}&lt;/b&gt; konnte nicht geladen werden.&lt;br&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
@@ -22987,7 +22987,7 @@
       <translation>&lt;p&gt;Das Kopieren der Datei &lt;b&gt;{0}&lt;/b&gt; ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2719" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
@@ -23050,370 +23050,370 @@
       <translation>Marke im Git-Repository setzen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2277" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
       <source>Branching in the Git repository</source>
       <translation>Zweig im Git-Repository erzeugen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2319" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
       <source>Delete Remote Branch</source>
       <translation>Entfernten Zweig löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2340" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
       <source>Current Branch</source>
       <translation>Aktueller Zweig</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2341" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der aktuelle Zweig ist &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2405" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2387" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
       <source>Create Bundle</source>
       <translation>Paket erzeugen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation>Git Paketdateien (*.bundle)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2388" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Git Paketdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2434" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2423" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
       <source>Verify Bundle</source>
       <translation>Paket verifizieren</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
+      <translation>Git Paketdateien (*.bundle);;Alle Dateien (*)</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <source>List Bundle Heads</source>
+      <translation>Köpfe des Pakets anzeigen</translation>
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
-      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
-      <translation>Git Paketdateien (*.bundle);;Alle Dateien (*)</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2452" />
-      <source>List Bundle Heads</source>
-      <translation>Köpfe des Pakets anzeigen</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2518" />
       <source>Apply Bundle</source>
       <translation>Paket anwenden</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
       <source>Applying a bundle file (fetch)</source>
       <translation>Paketdatei anwenden (fetch)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation>Ungültiger Bisect Unterbefehl ({0}).</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2821" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
       <source>Git Bisect ({0})</source>
       <translation>Git-Bisect ({0})</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
       <source>Process Generation Error</source>
       <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2747" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2729" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
       <source>Create Bisect Replay File</source>
       <translation>Erzeuge Bisect Wiederholungsdatei</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation>Git Bisect Wiederholungsdateien (*.replay)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2748" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Git Wiederholungsdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2765" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden.&lt;br/&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2784" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
       <source>Edit Bisect Replay File</source>
       <translation>Bisect Wiederholungsdatei bearbeiten</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
+      <translation>Git Bisect Wiederholungsdateien (*.replay);;Alle Dateien (*)</translation>
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
-      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
-      <translation>Git Bisect Wiederholungsdateien (*.replay);;Alle Dateien (*)</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2810" />
       <source>Bisect Replay</source>
       <translation>Bisect wiederholen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3154" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Show Remote Info</source>
       <translation>Zeige entfernte Informationen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3040" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
       <source>Rename Remote Repository</source>
       <translation>Entferntes Repository umbenennen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3041" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
       <source>Enter new name for remote repository:</source>
       <translation>Gib einen Namen für das entfernte Repository ein:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3176" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
       <source>Show Shortlog</source>
       <translation>Kurzbeschreibungen anzeigen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3233" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
       <source>Cherry-pick</source>
       <translation>Aussuchen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3264" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
       <source>Copy Changesets (Continue)</source>
       <translation>Änderungssätze kopieren (Fortsetzung)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
       <source>Copy Changesets (Quit)</source>
       <translation>Änderungssätze kopieren (Beenden)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3311" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
       <source>Copy Changesets (Cancel)</source>
       <translation>Änderungssätze kopieren (Abbrechen)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
       <source>Saving stash</source>
       <translation>Ablage sichern</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3429" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
       <source>Show Stash</source>
       <translation>Ablage anzeigen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3552" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3503" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
       <source>Select a stash (empty for latest stash):</source>
       <translation>Wähle eine Ablage (leer für aktuellste):</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3462" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
       <source>Restore Stash</source>
       <translation>Ablage wiederherstellen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3516" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
       <source>Restoring stash</source>
       <translation>Stelle Ablage wieder her</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
       <source>Create Branch</source>
       <translation>Zweig erzeugen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation>Gib einen Zweignamen für die Ablagewiederherstellung ein:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3566" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
       <source>Creating branch</source>
       <translation>Erzeuge Zweig</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3602" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
       <source>Delete Stash</source>
       <translation>Ablage löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3603" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation>Soll die Ablage &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
       <source>Deleting stash</source>
       <translation>Lösche Ablage</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
       <source>Delete All Stashes</source>
       <translation>Alle Ablagen löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3634" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
       <source>Do you really want to delete all stashes?</source>
       <translation>Sollen wirklich alle Ablagen gelöscht werden?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
       <source>Deleting all stashes</source>
       <translation>Lösche alle Ablagen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
       <source>Showing the combined configuration settings</source>
       <translation>Zeige die kombinierten Einstellungen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
       <source>Verifying the integrity of the Git repository</source>
       <translation>Verifiziere die Integrität des Git-Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3743" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
       <source>Performing Repository Housekeeping</source>
       <translation>Führe Repository Reorganisation durch</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3784" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistik&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistik&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
       <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Anzahl loser Objekte: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Festplattenverbrauch durch lose Objekte: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3797" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Anzahl gepackter Objekte: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Anzahl Pakete: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Festplattenverbrauch durch lose Objekte &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Gepackte Objekte bereit zum Löschen: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3820" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
       <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Wertlose Dateien: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3825" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Festplattenverbrauch durch wertlose Dateien: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;Keine Statistik verfügbar.&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3898" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
       <source>Creating Archive</source>
       <translation>Erzeuge Archiv</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
       <source>Add Submodule</source>
       <translation>Submodul hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
       <source>List Submodules</source>
       <translation>Submodule auflisten</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4005" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
       <source>No submodules defined for the project.</source>
       <translation>Für das Projekt sind keine Submodule definiert.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4018" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
       <source>All</source>
       <translation>Alle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4022" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
       <source>Submodule Path</source>
       <translation>Submodulpfad</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4023" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
       <source>Select a submodule path:</source>
       <translation>Wähle einen Submodulpfad:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4072" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
       <source>Initialize Submodules</source>
       <translation>Submodule initialisieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4105" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
       <source>Unregister Submodules</source>
       <translation>Submodule deregistrieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4175" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4136" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
       <source>Update Submodules</source>
       <translation>Submodule aktualisieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
       <source>Synchronize Submodules</source>
       <translation>Submodule synchronisieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4259" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
       <source>Submodules Summary</source>
       <translation>Submodulüberblick</translation>
     </message>
@@ -25756,83 +25756,83 @@
   <context>
     <name>GitProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="473" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="589" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="429" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="324" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="184" />
       <source>Version Control</source>
       <translation>Versionskontrolle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="602" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="492" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="340" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="200" />
       <source>Commit changes to repository...</source>
       <translation>Änderungen einpflegen...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="609" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="496" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="499" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="347" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="207" />
       <source>Add/Stage to repository</source>
       <translation>Hinzufügen/Vormerken</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="614" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="504" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="352" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="212" />
       <source>Unstage changes</source>
       <translation>Vormerkung rückgängig</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="621" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="508" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="511" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="359" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="219" />
       <source>Remove from repository (and disk)</source>
       <translation>Vom Repository (und der Festplatte) löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="365" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="225" />
       <source>Remove from repository only</source>
       <translation>Nur vom Repository löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="513" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="230" />
       <source>Copy</source>
       <translation>Kopieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="518" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="232" />
       <source>Move</source>
       <translation>Verschieben</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="523" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="237" />
       <source>Show log browser</source>
       <translation>Protokoll-Browser anzeigen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="372" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="244" />
       <source>Show status</source>
       <translation>Status anzeigen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="635" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="534" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="537" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="251" />
       <source>Show differences</source>
@@ -25844,8 +25844,8 @@
       <translation>Unterschiede nebeneinander anzeigen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="543" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="385" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="263" />
       <source>Show differences (extended)</source>
@@ -25872,71 +25872,71 @@
       <translation>Erzeuge Ignorierlistendatei</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="648" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="547" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="550" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="392" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="289" />
       <source>Revert changes</source>
       <translation>Änderungen rückgängig</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="656" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="441" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
-      <source>Select all local file entries</source>
-      <translation>Alle lokalen Dateieinträge auswählen</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="558" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="444" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
-      <source>Select all versioned file entries</source>
-      <translation>Alle versionierten Dateieinträge auswählen</translation>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
+      <source>Select all local file entries</source>
+      <translation>Alle lokalen Dateieinträge auswählen</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="662" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="561" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="447" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
+      <source>Select all versioned file entries</source>
+      <translation>Alle versionierten Dateieinträge auswählen</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="564" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="450" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="406" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="301" />
       <source>Select all local directory entries</source>
       <translation>Alle lokalen Verzeichniseinträge auswählen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="666" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="454" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="305" />
       <source>Select all versioned directory entries</source>
       <translation>Alle versionierten Verzeichniseinträge auswählen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="414" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="309" />
       <source>Configure...</source>
       <translation>Einstellungen...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="709" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="712" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="699" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation>Wollen Sie wirklich diese Dateien vom Repository löschen?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="842" />
       <source>Create {0} file</source>
       <translation>Erzeuge {0}-Datei</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="843" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
@@ -30252,27 +30252,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="198" />
+      <location filename="../Globals/__init__.py" line="199" />
       <source>{0:4.2f} Bytes</source>
       <translation>{0:4.2f} Bytes</translation>
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="201" />
+      <location filename="../Globals/__init__.py" line="202" />
       <source>{0:4.2f} KiB</source>
       <translation>{0:4.2f} KiB</translation>
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="204" />
+      <location filename="../Globals/__init__.py" line="205" />
       <source>{0:4.2f} MiB</source>
       <translation>{0:4.2f} MiB</translation>
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="207" />
+      <location filename="../Globals/__init__.py" line="208" />
       <source>{0:4.2f} GiB</source>
       <translation>{0:4.2f} GiB</translation>
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="210" />
+      <location filename="../Globals/__init__.py" line="211" />
       <source>{0:4.2f} TiB</source>
       <translation>{0:4.2f} TiB</translation>
     </message>
@@ -36491,75 +36491,75 @@
       <translation>Erweiterungen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="692" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="579" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="535" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="431" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="289" />
       <source>Version Control</source>
       <translation>Versionskontrolle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="595" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="598" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="305" />
       <source>Commit changes to repository...</source>
       <translation>Änderungen einpflegen...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="606" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="455" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="313" />
       <source>Add to repository</source>
       <translation>Zum Repository hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="722" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="725" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="461" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="319" />
       <source>Remove from repository (and disk)</source>
       <translation>Vom Repository (und der Platte) löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="986" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="973" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="989" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="976" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="467" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="325" />
       <source>Remove from repository only</source>
       <translation>Nur vom Repository löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="614" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="617" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="330" />
       <source>Copy</source>
       <translation>Kopieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="619" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="332" />
       <source>Move</source>
       <translation>Verschieben</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="621" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="624" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="337" />
       <source>Show log browser</source>
       <translation>Zeige Log Browser</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="729" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="732" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="474" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="344" />
       <source>Show status</source>
       <translation>Status anzeigen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="736" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="739" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="481" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="351" />
       <source>Show differences</source>
@@ -36571,8 +36571,8 @@
       <translation>Unterschiede nebeneinander anzeigen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="644" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="487" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="363" />
       <source>Show differences (extended)</source>
@@ -36599,95 +36599,95 @@
       <translation>Erzeuge Ignorierlistendatei</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="749" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="752" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="494" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="389" />
       <source>Revert changes</source>
       <translation>Änderungen rückgängig</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="753" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="756" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="655" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="498" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="393" />
       <source>Conflicts resolved</source>
       <translation>Konflikte gelöst</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="755" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="654" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="657" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="500" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="395" />
       <source>Conflicts unresolved</source>
       <translation>Konflikte ungelöst</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="757" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="656" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="760" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="502" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="397" />
       <source>Re-Merge</source>
       <translation>Neu zusammenführen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="660" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="547" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
-      <source>Select all local file entries</source>
-      <translation>Alle lokalen Dateieinträge auswählen</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="764" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="663" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="550" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
-      <source>Select all versioned file entries</source>
-      <translation>Alle versionierten Dateieinträge auswählen</translation>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
+      <source>Select all local file entries</source>
+      <translation>Alle lokalen Dateieinträge auswählen</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="767" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="553" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
+      <source>Select all versioned file entries</source>
+      <translation>Alle versionierten Dateieinträge auswählen</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="556" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="407" />
       <source>Select all local directory entries</source>
       <translation>Alle lokalen Verzeichniseinträge auswählen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="560" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="411" />
       <source>Select all versioned directory entries</source>
       <translation>Alle versionierten Verzeichniseinträge auswählen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="775" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="674" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="561" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="778" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="677" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="564" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="520" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="415" />
       <source>Configure...</source>
       <translation>Einstellungen...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="890" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="893" />
       <source>Create {0} file</source>
       <translation>Erzeuge {0}-Datei</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="891" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="894" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="987" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="990" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="977" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation>Wollen Sie wirklich diese Dateien vom Repository löschen?</translation>
     </message>
@@ -50836,43 +50836,43 @@
       <translation>Sollen sie zur Liste der manuell konfigurierten Geräte hinzugefügt werden?</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="594" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="592" />
       <source>Clear</source>
       <translation>Löschen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="599" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="597" />
       <source>Copy</source>
       <translation>Kopieren</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="603" />
       <source>Paste</source>
       <translation>Einfügen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="612" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="610" />
       <source>Select All</source>
       <translation>Alles auswählen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="638" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="636" />
       <source>Press to disconnect the current device</source>
       <translation>Drücken, um die Verbindung zum aktuelle Geräte zu trennen</translation>
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="643" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="641" />
       <source>Press to connect the selected device</source>
       <translation>Drücken, um eine Verbindung mit den ausgewählten Gerät herzustellen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="675" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="673" />
       <source>No device attached</source>
       <translation>Kein Gerät angeschlossen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="674" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -50885,90 +50885,90 @@
 Drücke zum Abschluss den Resetknopf des Gerätes und warte ein paar Sekunden vor einem neuen Versuch.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="705" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="703" />
       <source>Start REPL</source>
       <translation>REPL starten</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="706" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="704" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Eingabeaufforderung kann nicht gestartet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1234" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1223" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
       <source>Serial Device Connect</source>
       <translation>Serielle Verbindung</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1224" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Gerät am seriellen Port &lt;b&gt;{0}&lt;/b&gt; antwortet nicht. Es hat wahrscheinlich keine MicroPython Firmware geflasht.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1235" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1233" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Kann keine Verbindung zum Gerät an der seriellen Schnittstelle &lt;b&gt;{0}&lt;/b&gt; herstellen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1293" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1284" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1282" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
       <source>Run Script</source>
       <translation>Skript ausführen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1276" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
       <source>There is no editor open. Abort...</source>
       <translation>Es ist kein Editor offen. Abbruch...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1285" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1283" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation>Der aktuelle Editortext enthält kein Skript. Abbruch...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1292" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Skript kann nicht ausgeführt werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
       <source>Start Chart</source>
       <translation>Chart starten</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1329" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Das Chart kann nicht gestartet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1346" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1344" />
       <source>µPy Chart</source>
       <translation>µPy Chart</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1363" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1361" />
       <source>Unsaved Chart Data</source>
       <translation>Nicht gesicherte Chart Daten</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1364" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1362" />
       <source>The chart contains unsaved data.</source>
       <translation>Das Chart enthält ungesicherte Daten.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1412" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1410" />
       <source>Start File Manager</source>
       <translation>Dateimanager starten</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1413" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1411" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der Dateimanager kann nicht gestartet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1433" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1431" />
       <source>µPy Files</source>
       <translation>µPy Dateien</translation>
     </message>
@@ -50993,7 +50993,7 @@
       <translation>Board Daten anzeigen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1735" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1554" />
       <source>Synchronize Time</source>
       <translation>Zeit synchronisieren</translation>
@@ -51019,207 +51019,213 @@
       <translation>Eingebaute Module anzeigen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2138" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1578" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1570" />
       <source>Install Package</source>
       <translation>Paket installieren</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2150" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2183" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2180" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1574" />
       <source>Install Packages</source>
       <translation>Pakete installieren</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1955" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1580" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1959" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
       <source>Compile Python File</source>
       <translation>Python Datei übersetzen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1979" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1970" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1983" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1974" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1588" />
       <source>Compile Current Editor</source>
       <translation>Aktuellen Editor übersetzen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1609" />
       <source>Download Firmware</source>
       <translation>Firmware herunterladen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
-      <source>Show Documentation</source>
-      <translation>Dokumentation anzeigen</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
-      <source>Convert To UF2</source>
-      <translation>Zu UF2 konvertieren</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1616" />
-      <source>Flash UF2 Device</source>
-      <translation>UF2 Gerät flashen</translation>
+      <source>Show Documentation</source>
+      <translation>Dokumentation anzeigen</translation>
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1619" />
+      <source>Convert To UF2</source>
+      <translation>Zu UF2 konvertieren</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1620" />
+      <source>Flash UF2 Device</source>
+      <translation>UF2 Gerät flashen</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1623" />
       <source>Manage Unknown Devices</source>
       <translation>Unbekannte Geräte verwalten</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1622" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1626" />
       <source>Ignored Serial Devices</source>
       <translation>Ignorierte Serielle Geräte</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1625" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1629" />
       <source>Configure</source>
       <translation>Einstellungen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1634" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1638" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation>&lt;h3&gt;Versionsinformationen des Gerätes&lt;/h3&gt;</translation>
     </message>
     <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1649" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1645" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1641" />
       <source>Device Version Information</source>
       <translation>Versionsinformationen des Gerätes</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1646" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1650" />
       <source>No version information available.</source>
       <translation>Keine Versionsinformationen verfügbar.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1670" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1674" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1666" />
       <source>unknown</source>
       <translation>unbekannt</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1680" />
       <source> ({0})</source>
       <translation> ({0})</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1683" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1696" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1687" />
       <source>Device Implementation Information</source>
       <translation>Informationen zur Implementierung</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1688" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;h3&gt;Informationen zur Implementierung&lt;/h3&gt;&lt;p&gt;Dieses Gerät enthält &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1693" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1697" />
       <source>No device implementation information available.</source>
       <translation>Keine Informationen zur Implementierung verfügbar.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1736" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Zeit des angeschlossenen Gerätes wurde mit der lokalen Zeit synchronisiert.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1754" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1758" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Datum und Zeit des Gerätes&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zeit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1762" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1766" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation>&lt;h3&gt;Datum und Zeit des Gerätes&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1782" />
       <source>Device Date and Time</source>
       <translation>Datum und Zeit des Gerätes</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1794" />
       <source>Local Date and Time</source>
       <translation>Lokales Datum und Zeit</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1795" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Lokales Datum und Zeit&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zeit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1832" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1815" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1836" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1819" />
       <source>Date and Time</source>
       <translation>Datum und Zeit</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1816" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1820" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Lokales Datum und Zeit&lt;/th&gt;&lt;th&gt;Datum und Zeit des Gerätes&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zeit&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1837" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Lokales Datum und Zeit&lt;/th&gt;&lt;th&gt;Datum und Zeit des Gerätes&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1857" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1861" />
       <source>Error handling device</source>
       <translation>Fehler bei Gerätekommunikation</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1858" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1862" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Es trat ein Fehler bei der Kommunikation mit dem Gerät auf.&lt;/p&gt;&lt;p&gt;Methode: {0}&lt;/p&gt;&lt;p&gt;Nachricht: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1900" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1904" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation>Der MicroPython Crosscompiler &lt;b&gt;mpy-cross&lt;/b&gt; kann nicht gefunden werden. Stelle sicher, dass er im Suchpfad liegt oder konfiguriere ihn auf der MicroPython Konfigurationsseite.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1926" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1930" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation>Python-Dateien (*.py);;Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1940" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation>Die Python Datei &lt;b&gt;{0}&lt;/b&gt; existiert nicht. Abbruch...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1945" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1949" />
       <source>'mpy-cross' Output</source>
       <translation>'mpy-cross' Ausgabe</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1971" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1975" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation>Der aktuelle Editortext enthält keine Pythondatei. Abbruch...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2063" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2067" />
       <source>Add Unknown Devices</source>
       <translation>Unbekannte Geräte hinzufügen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2068" />
       <source>Select the devices to be added:</source>
       <translation>Wähle die hinzuzufügenden unbekannten Geräte:</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2113" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2117" />
       <source>Plus any modules on the filesystem.</source>
       <translation>Zusätzlich alle Module im Dateisystem.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2151" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2169" />
+      <source>Package '{0}' was installed successfully.</source>
+      <translation>Paket '{0}' wurde erfolgreich installiert.</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2184" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation>Gib die zu installierenden Pakete durch Leerzeichen getrennt ein:</translation>
     </message>
@@ -51272,198 +51278,198 @@
       <translation>zufällig, privat, nicht auflösbar</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="108" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="110" />
       <source>BBC micro:bit</source>
       <translation>BBC micro:bit</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="111" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="113" />
       <source>Calliope mini</source>
       <translation>Calliope mini</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="208" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="210" />
       <source>BBC micro:bit/Calliope Functions</source>
       <translation>BBC micro:bit/Calliope Funktionen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="421" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="409" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="392" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="211" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="411" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="213" />
       <source>Show MicroPython Versions</source>
       <translation>Zeige MicroPython Versionen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="215" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="217" />
       <source>Flash MicroPython</source>
       <translation>MicroPython flashen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="218" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="220" />
       <source>Flash Firmware</source>
       <translation>Firmware flashen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="496" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="222" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="498" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="224" />
       <source>Save Script as 'main.py'</source>
       <translation>Skript als 'main.py' speichern</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="225" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="227" />
       <source>Save the current script as 'main.py' on the connected device</source>
       <translation>Speichert das aktuelle Skript als 'main.py' auf das angeschlossene Gerät</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="229" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="231" />
       <source>Reset {0}</source>
       <translation>{0} zurücksetzen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="375" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="366" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="352" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="335" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="322" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="302" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="377" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="354" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="337" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="324" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="304" />
       <source>Flash MicroPython/Firmware</source>
       <translation>MicroPython/Firmware flashen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="303" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="305" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed and plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;See the &lt;a href="https://microbit.org/guide/firmware/"&gt;micro:bit web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der BBC micro:bit ist nicht bereit zum Flashen der DAPLink Firmware. Folge diesen Anweisungen.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;ziehe das USB Kabel und alle Batterien heraus&lt;/li&gt;&lt;li&gt;halte den RESET Knopf gedrückt und stecke das USB Kabel wieder ein&lt;/li&gt;&lt;li&gt;ein Laufwerk mit Namen MAINTENANCE sollte verfügbar sein&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Siehe auch die &lt;a href="https://microbit.org/guide/firmware/"&gt;micro:bit Web Seite&lt;/a&gt;für Details.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="323" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="325" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MICROBIT is available.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der BBC micro:bit ist nicht bereit zum Flashen der MicroPython Firmware. Stelle sicher, dass ein Laufwerk mit Namen MICROBIT verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="336" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="338" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed an plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;</source>
       <translation>&lt;p&gt;Der "Calliope mini" ist nicht bereit zum Flashen der DAPLink Firmware. Folge diesen Anweisungen.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;ziehe das USB Kabel und alle Batterien heraus&lt;/li&gt;&lt;li&gt;halte den RESET Knopf gedrückt und stecke das USB Kabel wieder ein&lt;/li&gt;&lt;li&gt;ein Laufwerk mit Namen MAINTENANCE sollte verfügbar sein&lt;/li&gt;&lt;/ul&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="353" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="355" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MINI is available.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Der "Calliope mini" ist nicht bereit zum Flashen der MicroPython Firmware. Stelle sicher, dass ein Laufwerk mit Namen MINI verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="370" />
       <source>MicroPython/Firmware Files (*.hex *.bin);;All Files (*)</source>
       <translation>MicroPython/Firmware Dateien (*.hex *.bin);;Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="376" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="378" />
       <source>There are multiple devices ready for flashing. Please make sure, that only one device is prepared.</source>
       <translation>Es sind mehrere Geräte zum Flashen bereit. Bitte stelle sicher, dass nur eines vorbereitet wird.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="395" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation>Die Firmware des verbundenen Gerätes kann nicht ermittelt werden oder das Board enthält kein MicroPython oder CircuitPython. Abbruch...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="410" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="412" />
       <source>&lt;p&gt;The BBC micro:bit generation cannot be determined. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die BBC micro:bit Generation kann nicht ermittelt werden. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="424" />
       <source>&lt;p&gt;The firmware URL for the device type &lt;b&gt;{0}&lt;/b&gt; is not known. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die URL für die Firmware des Gerätetyps &lt;b&gt;{0}&lt;/b&gt; ist nicht bekannt. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="452" />
       <source>unknown</source>
       <translation>unbekannt</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="466" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="468" />
       <source>Firmware</source>
       <translation>Firmware</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="469" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="471" />
       <source>&lt;h4&gt;{0} Version Information&lt;br/&gt;(BBC micro:bit v{1})&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h4&gt;{0} Versionsinformationen&lt;br/&gt;(BBC micro:bit v{1})&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installiert:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Verfügbar:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="478" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="480" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;Update verfügbar!&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="484" />
       <source>{0} Version</source>
       <translation>{0} Version</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="502" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="504" />
       <source>The current editor does not contain a Python script. Write it anyway?</source>
       <translation>Der aktuelle Editor enthält kein Python Skript. Trotzdem schreiben?</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="513" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="515" />
       <source>The script is empty. Aborting.</source>
       <translation>Das Skript ist leer. Abbruch.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="567" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="569" />
       <source>MicroPython Firmware for BBC micro:bit V1</source>
       <translation>MicroPython Firmware für  BBC micro:bit V1</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="599" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="586" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="571" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="601" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="588" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="573" />
       <source>DAPLink Firmware</source>
       <translation>DAPLink Firmware</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="578" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="580" />
       <source>MicroPython Firmware for BBC micro:bit V2</source>
       <translation>MicroPython Firmware für  BBC micro:bit V2</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="582" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="584" />
       <source>CircuitPython Firmware for BBC micro:bit V2</source>
       <translation>CircuitPython Firmware für  BBC micro:bit V2</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="595" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="597" />
       <source>MicroPython Firmware</source>
       <translation>MicroPython Firmware</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="818" />
-      <source>Active</source>
-      <translation>Aktiv</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="819" />
-      <source>Name</source>
-      <translation>Name</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="820" />
-      <source>MAC-Address</source>
-      <translation>MAC-Addresse</translation>
+      <source>Active</source>
+      <translation>Aktiv</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="821" />
+      <source>Name</source>
+      <translation>Name</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="822" />
-      <source>Address Type</source>
-      <translation>Adresstyp</translation>
+      <source>MAC-Address</source>
+      <translation>MAC-Addresse</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="824" />
+      <source>Address Type</source>
+      <translation>Adresstyp</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="826" />
       <source>Connected</source>
       <translation>verbunden</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="825" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="827" />
       <source>Advertising</source>
       <translation>Advertising</translation>
     </message>
@@ -51561,720 +51567,742 @@
   <context>
     <name>MiniEditor</name>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="459" />
+      <location filename="../QScintilla/MiniEditor.py" line="460" />
       <source>About eric Mini Editor</source>
       <translation>Über den eric Mini Editor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="461" />
       <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don'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="529" />
+      <location filename="../QScintilla/MiniEditor.py" line="530" />
       <source>Line: {0:5}</source>
       <translation>Zeile: {0:5}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="533" />
+      <location filename="../QScintilla/MiniEditor.py" line="534" />
       <source>Pos: {0:5}</source>
       <translation>Pos: {0:5}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="547" />
+      <location filename="../QScintilla/MiniEditor.py" line="548" />
       <source>Language: {0}</source>
       <translation>Sprache: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="610" />
       <source>New</source>
       <translation>Neu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="611" />
-      <source>&amp;New</source>
-      <translation>&amp;Neu</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="612" />
+      <source>&amp;New</source>
+      <translation>&amp;Neu</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="613" />
       <source>Ctrl+N</source>
       <comment>File|New</comment>
       <translation>Ctrl+N</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="617" />
+      <location filename="../QScintilla/MiniEditor.py" line="618" />
       <source>Open an empty editor window</source>
       <translation>Öffnet ein leeres Editorfenster</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="619" />
+      <location filename="../QScintilla/MiniEditor.py" line="620" />
       <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="625" />
+      <location filename="../QScintilla/MiniEditor.py" line="626" />
       <source>Open</source>
       <translation>Öffnen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="627" />
-      <source>&amp;Open...</source>
-      <translation>&amp;Öffnen...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="628" />
+      <source>&amp;Open...</source>
+      <translation>&amp;Öffnen...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="629" />
       <source>Ctrl+O</source>
       <comment>File|Open</comment>
       <translation>Ctrl+O</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="633" />
+      <location filename="../QScintilla/MiniEditor.py" line="634" />
       <source>Open a file</source>
       <translation>Datei öffnen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="635" />
+      <location filename="../QScintilla/MiniEditor.py" line="636" />
       <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="644" />
+      <location filename="../QScintilla/MiniEditor.py" line="645" />
       <source>Save</source>
       <translation>Speichern</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="646" />
-      <source>&amp;Save</source>
-      <translation>&amp;Speichern</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="647" />
+      <source>&amp;Save</source>
+      <translation>&amp;Speichern</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="648" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation>Ctrl+S</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="652" />
+      <location filename="../QScintilla/MiniEditor.py" line="653" />
       <source>Save the current file</source>
       <translation>Speichert die aktuelle Datei</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="654" />
+      <location filename="../QScintilla/MiniEditor.py" line="655" />
       <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="663" />
+      <location filename="../QScintilla/MiniEditor.py" line="664" />
       <source>Save as</source>
       <translation>Speichern unter</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="665" />
-      <source>Save &amp;as...</source>
-      <translation>Speichern &amp;unter...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="666" />
+      <source>Save &amp;as...</source>
+      <translation>Speichern &amp;unter...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="667" />
       <source>Shift+Ctrl+S</source>
       <comment>File|Save As</comment>
       <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="671" />
+      <location filename="../QScintilla/MiniEditor.py" line="672" />
       <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="673" />
+      <location filename="../QScintilla/MiniEditor.py" line="674" />
       <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="683" />
+      <location filename="../QScintilla/MiniEditor.py" line="684" />
       <source>Save Copy</source>
       <translation>Kopie speichern</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="686" />
       <source>Save &amp;Copy...</source>
       <translation>&amp;Kopie speichern...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="691" />
+      <location filename="../QScintilla/MiniEditor.py" line="692" />
       <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="693" />
+      <location filename="../QScintilla/MiniEditor.py" line="694" />
       <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="703" />
+      <location filename="../QScintilla/MiniEditor.py" line="704" />
       <source>Close</source>
       <translation>Schließen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="705" />
-      <source>&amp;Close</source>
-      <translation>Schl&amp;ießen</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="706" />
+      <source>&amp;Close</source>
+      <translation>Schl&amp;ießen</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="707" />
       <source>Ctrl+W</source>
       <comment>File|Close</comment>
       <translation>Ctrl+W</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="711" />
+      <location filename="../QScintilla/MiniEditor.py" line="712" />
       <source>Close the editor window</source>
       <translation>Schließt das Editorfenster</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="713" />
+      <location filename="../QScintilla/MiniEditor.py" line="714" />
       <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="719" />
+      <location filename="../QScintilla/MiniEditor.py" line="720" />
       <source>Print</source>
       <translation>Drucken</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="721" />
-      <source>&amp;Print</source>
-      <translation>&amp;Drucken</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="722" />
+      <source>&amp;Print</source>
+      <translation>&amp;Drucken</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="723" />
       <source>Ctrl+P</source>
       <comment>File|Print</comment>
       <translation>Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="727" />
+      <location filename="../QScintilla/MiniEditor.py" line="728" />
       <source>Print the current file</source>
       <translation>Druckt die aktuelle Datei</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="729" />
+      <location filename="../QScintilla/MiniEditor.py" line="730" />
       <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="738" />
+      <location filename="../QScintilla/MiniEditor.py" line="739" />
       <source>Print Preview</source>
       <translation>Druckvorschau</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="747" />
       <source>Print preview of the current file</source>
       <translation>Druckvorschau der aktuellen Datei</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="748" />
+      <location filename="../QScintilla/MiniEditor.py" line="749" />
       <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="761" />
+      <location filename="../QScintilla/MiniEditor.py" line="762" />
       <source>Undo</source>
       <translation>Rückgängig</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="763" />
-      <source>&amp;Undo</source>
-      <translation>&amp;Rückgängig</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="764" />
+      <source>&amp;Undo</source>
+      <translation>&amp;Rückgängig</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="765" />
       <source>Ctrl+Z</source>
       <comment>Edit|Undo</comment>
       <translation>Ctrl+Z</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="765" />
+      <location filename="../QScintilla/MiniEditor.py" line="766" />
       <source>Alt+Backspace</source>
       <comment>Edit|Undo</comment>
       <translation>Alt+Backspace</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="769" />
+      <location filename="../QScintilla/MiniEditor.py" line="770" />
       <source>Undo the last change</source>
       <translation>Die letzte Änderung rückgängig machen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="771" />
+      <location filename="../QScintilla/MiniEditor.py" line="772" />
       <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="780" />
+      <location filename="../QScintilla/MiniEditor.py" line="781" />
       <source>Redo</source>
       <translation>Wiederherstellen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="782" />
-      <source>&amp;Redo</source>
-      <translation>Wieder&amp;herstellen</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="783" />
+      <source>&amp;Redo</source>
+      <translation>Wieder&amp;herstellen</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="784" />
       <source>Ctrl+Shift+Z</source>
       <comment>Edit|Redo</comment>
       <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="788" />
+      <location filename="../QScintilla/MiniEditor.py" line="789" />
       <source>Redo the last change</source>
       <translation>Die letzte Änderung wiederherstellen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="790" />
+      <location filename="../QScintilla/MiniEditor.py" line="791" />
       <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="799" />
+      <location filename="../QScintilla/MiniEditor.py" line="800" />
       <source>Cut</source>
       <translation>Ausschneiden</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="801" />
-      <source>Cu&amp;t</source>
-      <translation>&amp;Ausschneiden</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="802" />
+      <source>Cu&amp;t</source>
+      <translation>&amp;Ausschneiden</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="803" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation>Ctrl+X</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="803" />
+      <location filename="../QScintilla/MiniEditor.py" line="804" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation>Shift+Del</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="807" />
+      <location filename="../QScintilla/MiniEditor.py" line="808" />
       <source>Cut the selection</source>
       <translation>Schneidet die Auswahl aus</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="809" />
+      <location filename="../QScintilla/MiniEditor.py" line="810" />
       <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="819" />
+      <location filename="../QScintilla/MiniEditor.py" line="820" />
       <source>Copy</source>
       <translation>Kopieren</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="821" />
-      <source>&amp;Copy</source>
-      <translation>&amp;Kopieren</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="822" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
-      <translation>Ctrl+C</translation>
+      <source>&amp;Copy</source>
+      <translation>&amp;Kopieren</translation>
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="823" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation>Ctrl+C</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="824" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+Einfg</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="827" />
+      <location filename="../QScintilla/MiniEditor.py" line="828" />
       <source>Copy the selection</source>
       <translation>Kopiert die Auswahl</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="829" />
+      <location filename="../QScintilla/MiniEditor.py" line="830" />
       <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="839" />
+      <location filename="../QScintilla/MiniEditor.py" line="840" />
       <source>Paste</source>
       <translation>Einfügen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="841" />
-      <source>&amp;Paste</source>
-      <translation>Ein&amp;fügen</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="842" />
-      <source>Ctrl+V</source>
-      <comment>Edit|Paste</comment>
-      <translation>Ctrl+V</translation>
+      <source>&amp;Paste</source>
+      <translation>Ein&amp;fügen</translation>
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="843" />
+      <source>Ctrl+V</source>
+      <comment>Edit|Paste</comment>
+      <translation>Ctrl+V</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="844" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation>Shift+Ins</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="847" />
+      <location filename="../QScintilla/MiniEditor.py" line="848" />
       <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="849" />
+      <location filename="../QScintilla/MiniEditor.py" line="850" />
       <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="859" />
+      <location filename="../QScintilla/MiniEditor.py" line="860" />
       <source>Clear</source>
       <translation>Löschen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="861" />
-      <source>Cl&amp;ear</source>
-      <translation>All&amp;es löschen</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="862" />
+      <source>Cl&amp;ear</source>
+      <translation>All&amp;es löschen</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="863" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation>Alt+Shift+C</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="867" />
+      <location filename="../QScintilla/MiniEditor.py" line="868" />
       <source>Clear all text</source>
       <translation>Löscht den gesamten Text</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="869" />
+      <location filename="../QScintilla/MiniEditor.py" line="870" />
       <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="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>About</source>
       <translation>Über</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>&amp;About</source>
       <translation>&amp;Über</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2863" />
+      <location filename="../QScintilla/MiniEditor.py" line="2864" />
       <source>Display information about this software</source>
       <translation>Zeigt Informationen zu diesem Programm an</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2865" />
+      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <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="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About Qt</source>
       <translation>Über Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About &amp;Qt</source>
       <translation>Über &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2877" />
+      <location filename="../QScintilla/MiniEditor.py" line="2878" />
       <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="2880" />
+      <location filename="../QScintilla/MiniEditor.py" line="2881" />
       <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="2889" />
+      <location filename="../QScintilla/MiniEditor.py" line="2890" />
       <source>What's This?</source>
       <translation>Was ist das?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2891" />
-      <source>&amp;What's This?</source>
-      <translation>&amp;Was ist das?</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <source>&amp;What's This?</source>
+      <translation>&amp;Was ist das?</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2893" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2897" />
+      <location filename="../QScintilla/MiniEditor.py" line="2898" />
       <source>Context sensitive help</source>
       <translation>Kontextsensitive Hilfe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2899" />
+      <location filename="../QScintilla/MiniEditor.py" line="2900" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What'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="2917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2918" />
       <source>Preferences</source>
       <translation>Einstellungen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2920" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Einstellungen...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2925" />
+      <location filename="../QScintilla/MiniEditor.py" line="2926" />
       <source>Set the prefered configuration</source>
       <translation>Konfiguriert die Einstellungen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2927" />
+      <location filename="../QScintilla/MiniEditor.py" line="2928" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Einstellungen&lt;/b&gt;&lt;p&gt;Konfiguriert die einstellbaren Parameter der Applikation nach Ihren Wünschen.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2941" />
+      <location filename="../QScintilla/MiniEditor.py" line="2942" />
       <source>&amp;File</source>
       <translation>&amp;Datei</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2953" />
+      <location filename="../QScintilla/MiniEditor.py" line="2954" />
       <source>&amp;Edit</source>
       <translation>&amp;Bearbeiten</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2963" />
+      <location filename="../QScintilla/MiniEditor.py" line="2964" />
       <source>&amp;Search</source>
       <translation>&amp;Suchen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2974" />
       <source>&amp;View</source>
       <translation>&amp;Ansicht</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2979" />
+      <location filename="../QScintilla/MiniEditor.py" line="2980" />
       <source>Se&amp;ttings</source>
       <translation>&amp;Einstellungen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2985" />
       <source>&amp;Help</source>
       <translation>&amp;Hilfe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2996" />
+      <location filename="../QScintilla/MiniEditor.py" line="2997" />
       <source>File</source>
       <translation>Datei</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3008" />
+      <location filename="../QScintilla/MiniEditor.py" line="3009" />
       <source>Edit</source>
       <translation>Bearbeiten</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3017" />
+      <location filename="../QScintilla/MiniEditor.py" line="3018" />
       <source>Search</source>
       <translation>Suchen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3023" />
+      <location filename="../QScintilla/MiniEditor.py" line="3024" />
       <source>View</source>
       <translation>Ansicht</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3029" />
+      <location filename="../QScintilla/MiniEditor.py" line="3030" />
       <source>Settings</source>
       <translation>Einstellungen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3032" />
+      <location filename="../QScintilla/MiniEditor.py" line="3033" />
       <source>Help</source>
       <translation>Hilfe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3045" />
+      <location filename="../QScintilla/MiniEditor.py" line="3046" />
       <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="3055" />
+      <location filename="../QScintilla/MiniEditor.py" line="3056" />
       <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="3064" />
+      <location filename="../QScintilla/MiniEditor.py" line="3065" />
       <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="3073" />
+      <location filename="../QScintilla/MiniEditor.py" line="3074" />
       <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="3087" />
+      <location filename="../QScintilla/MiniEditor.py" line="3088" />
       <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="3094" />
+      <location filename="../QScintilla/MiniEditor.py" line="3095" />
       <source>Ready</source>
       <translation>Bereit</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3169" />
-      <source>eric Mini Editor</source>
-      <translation>eric Mini Editor</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <source>eric Mini Editor</source>
+      <translation>eric Mini Editor</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3171" />
       <source>The document has unsaved changes.</source>
       <translation>Das Dokument hat ungesicherte Änderungen.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3197" />
-      <source>Open File</source>
-      <translation>Datei öffnen</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <source>Open File</source>
+      <translation>Datei öffnen</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3199" />
       <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="3226" />
+      <location filename="../QScintilla/MiniEditor.py" line="3227" />
       <source>File loaded</source>
       <translation>Datei geladen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3307" />
-      <source>Save File</source>
-      <translation>Datei speichern</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <source>Save File</source>
+      <translation>Datei speichern</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3309" />
       <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="3314" />
+      <location filename="../QScintilla/MiniEditor.py" line="3315" />
       <source>File saved</source>
       <translation>Datei gespeichert</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>[*] - {0}</source>
       <translation>[*] - {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>Mini Editor</source>
       <translation>Mini Editor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3683" />
-      <location filename="../QScintilla/MiniEditor.py" line="3654" />
-      <location filename="../QScintilla/MiniEditor.py" line="3338" />
+      <location filename="../QScintilla/MiniEditor.py" line="3684" />
+      <location filename="../QScintilla/MiniEditor.py" line="3655" />
+      <location filename="../QScintilla/MiniEditor.py" line="3339" />
       <source>Untitled</source>
       <translation>Unbenannt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
       <source>{0}[*] - {1}</source>
       <translation>{0} [*] – {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3649" />
+      <location filename="../QScintilla/MiniEditor.py" line="3650" />
       <source>Printing...</source>
       <translation>Drucke...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3665" />
+      <location filename="../QScintilla/MiniEditor.py" line="3666" />
       <source>Printing completed</source>
       <translation>Drucken beendet</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3667" />
+      <location filename="../QScintilla/MiniEditor.py" line="3668" />
       <source>Error while printing</source>
       <translation>Fehler beim Drucken</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3670" />
+      <location filename="../QScintilla/MiniEditor.py" line="3671" />
       <source>Printing aborted</source>
       <translation>Drucken abgebrochen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3724" />
-      <source>Select all</source>
-      <translation>Alles auswählen</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <source>Select all</source>
+      <translation>Alles auswählen</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3726" />
       <source>Deselect all</source>
       <translation>Auswahl aufheben</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3738" />
+      <location filename="../QScintilla/MiniEditor.py" line="3739" />
       <source>Languages</source>
       <translation>Sprachen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3741" />
+      <location filename="../QScintilla/MiniEditor.py" line="3742" />
       <source>No Language</source>
       <translation>Keine Sprache</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3763" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Guessed</source>
       <translation>Ermittelt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3785" />
-      <location filename="../QScintilla/MiniEditor.py" line="3767" />
+      <location filename="../QScintilla/MiniEditor.py" line="3786" />
+      <location filename="../QScintilla/MiniEditor.py" line="3768" />
       <source>Alternatives</source>
       <translation>Alternativen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3783" />
       <source>Alternatives ({0})</source>
       <translation>Alternativen ({0})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3813" />
-      <source>Pygments Lexer</source>
-      <translation>Pygments Lexer</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <source>Pygments Lexer</source>
+      <translation>Pygments Lexer</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3815" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>Wähle den anzuwendenden Pygments Lexer.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4326" />
+      <location filename="../QScintilla/MiniEditor.py" line="4336" />
       <source>EditorConfig Properties</source>
       <translation>EditorConfig Eigenschaften</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4327" />
+      <location filename="../QScintilla/MiniEditor.py" line="4337" />
       <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>
   </context>
   <context>
+    <name>MipLocalInstaller</name>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="185" />
+      <source>Unable to find 'lib' in sys.path. Please enter a target.</source>
+      <translation>'lib' konnte nicht in sys.path gefunden werden. Bitte gib ein Ziel ein.</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="229" />
+      <source>
+
+Package may be partially installed.</source>
+      <translation>
+
+Paket könnte nur teilweise installiert sein.</translation>
+    </message>
+  </context>
+  <context>
     <name>MipPackageDialog</name>
     <message>
+      <location filename="../MicroPython/MipPackageDialog.py" line="34" />
+      <source>Enter the URL of the package index. Leave empty to use the default index ({0}).</source>
+      <translation>Gib die URL des Paketindex ein. Leer lassen, um den Standardindex ({0}) zu verwenden.</translation>
+    </message>
+    <message>
       <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
       <source>Install Package</source>
       <translation>Paket installieren</translation>
@@ -52309,6 +52337,21 @@
       <source>Install .mpy File</source>
       <translation>.mpy Datei installieren</translation>
     </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Target Directory:</source>
+      <translation>Zielverzeichnis:</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Enter the directory to install to (must be contained in sys.path). Leave empty to detect automatically.</source>
+      <translation>Gib das Verzeichnis an, in das installiert werden soll (muss in sys.path sein). Leer lassen zur automatischen Erkennung.</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Package Index:</source>
+      <translation>Paketindex:</translation>
+    </message>
   </context>
   <context>
     <name>MiscellaneousChecker</name>
@@ -52974,194 +53017,194 @@
       <translation>Mehrfachprojekt-Dateien (*.emj);;XML Mehrfachprojekt-Dateien (*.e5m *.e4m)</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="603" />
-      <location filename="../MultiProject/MultiProject.py" line="593" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="591" />
       <source>Multi Project Files (*.emj)</source>
       <translation>Mehrfachprojekt-Dateien (*.emj)</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="599" />
       <source>Save Multiproject</source>
       <translation>Mehrfachprojekt speichern</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="617" />
+      <location filename="../MultiProject/MultiProject.py" line="615" />
       <source>Save File</source>
       <translation>Datei sichern</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="618" />
+      <location filename="../MultiProject/MultiProject.py" line="616" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="644" />
+      <location filename="../MultiProject/MultiProject.py" line="642" />
       <source>Close Multiproject</source>
       <translation>Mehrfachprojekt schließen</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="645" />
+      <location filename="../MultiProject/MultiProject.py" line="643" />
       <source>The current multiproject has unsaved changes.</source>
       <translation>Das aktuelle Mehrfachprojekt hat ungesicherte Änderungen.</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="696" />
+      <source>New multiproject</source>
+      <translation>Neues Mehrfachprojekt</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="698" />
-      <source>New multiproject</source>
-      <translation>Neues Mehrfachprojekt</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>&amp;New...</source>
       <translation>&amp;Neu...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="704" />
+      <source>Generate a new multiproject</source>
+      <translation>Erstelle ein neues Mehrfachprojekt</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="706" />
-      <source>Generate a new multiproject</source>
-      <translation>Erstelle ein neues Mehrfachprojekt</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Neu...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Eingabe der Informationen des neuen Mehrfachprojektes.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="716" />
+      <source>Open multiproject</source>
+      <translation>Mehrfachprojekt öffnen</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="718" />
-      <source>Open multiproject</source>
-      <translation>Mehrfachprojekt öffnen</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="720" />
       <source>&amp;Open...</source>
       <translation>&amp;Öffnen...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="724" />
+      <source>Open an existing multiproject</source>
+      <translation>Öffnet ein bestehendes Mehrfachprojekt</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="726" />
-      <source>Open an existing multiproject</source>
-      <translation>Öffnet ein bestehendes Mehrfachprojekt</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="728" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Öffnen...&lt;/b&gt;&lt;p&gt;Dies öffnet ein bestehendes Mehrfachprojekt.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="732" />
+      <source>Close multiproject</source>
+      <translation>Mehrfachprojekt schließen</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="734" />
-      <source>Close multiproject</source>
-      <translation>Mehrfachprojekt schließen</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&amp;Close</source>
       <translation>Schl&amp;ießen</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="740" />
+      <source>Close the current multiproject</source>
+      <translation>Schließt das aktuelle Mehrfachprojekt</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="742" />
-      <source>Close the current multiproject</source>
-      <translation>Schließt das aktuelle Mehrfachprojekt</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Schließen&lt;/b&gt;&lt;p&gt;Dies schließt das aktuelle Mehrfachprojekt.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="748" />
+      <source>Save multiproject</source>
+      <translation>Mehrfachprojekt speichern</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="750" />
-      <source>Save multiproject</source>
-      <translation>Mehrfachprojekt speichern</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="752" />
       <source>&amp;Save</source>
       <translation>&amp;Speichern</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="756" />
+      <source>Save the current multiproject</source>
+      <translation>Speichert das aktuelle Mehrfachprojekt</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="758" />
-      <source>Save the current multiproject</source>
-      <translation>Speichert das aktuelle Mehrfachprojekt</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="760" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Speichern&lt;/b&gt;&lt;p&gt;Dies speichert das aktuelle Mehrfachprojekt.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <source>Save multiproject as</source>
+      <translation>Mehrfachprojekt speichern unter</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="766" />
-      <source>Save multiproject as</source>
-      <translation>Mehrfachprojekt speichern unter</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="768" />
       <source>Save &amp;as...</source>
       <translation>Speichern &amp;unter...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="775" />
+      <location filename="../MultiProject/MultiProject.py" line="773" />
       <source>Save the current multiproject to a new file</source>
       <translation>Speichert das aktuelle Mehrfachprojekt in eine neue Datei</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="778" />
+      <location filename="../MultiProject/MultiProject.py" line="776" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Speichern unter&lt;/b&gt;&lt;p&gt;Dies speichert das aktuelle Mehrfachprojekt in eine neue Datei.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="785" />
+      <source>Add project to multiproject</source>
+      <translation>Projekt zum Mehrfachprojekt hinzufügen</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="787" />
-      <source>Add project to multiproject</source>
-      <translation>Projekt zum Mehrfachprojekt hinzufügen</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="789" />
       <source>Add &amp;project...</source>
       <translation>&amp;Projekt hinzufügen...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="796" />
+      <location filename="../MultiProject/MultiProject.py" line="794" />
       <source>Add a project to the current multiproject</source>
       <translation>Ein Projekt zum aktuellen Mehrfachprojekt hinzufügen</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="799" />
+      <location filename="../MultiProject/MultiProject.py" line="797" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Projekt hinzufügen...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, mit dem ein Projekt zum aktuellen Mehrfachprojekt hinzugefügt werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="807" />
+      <source>Multiproject properties</source>
+      <translation>Mehrfachprojekteigenschaften</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="809" />
-      <source>Multiproject properties</source>
-      <translation>Mehrfachprojekteigenschaften</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="811" />
       <source>&amp;Properties...</source>
       <translation>&amp;Eigenschaften...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="815" />
+      <source>Show the multiproject properties</source>
+      <translation>Zeigt die Mehrfachprojekt-Eigenschaften an</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="817" />
-      <source>Show the multiproject properties</source>
-      <translation>Zeigt die Mehrfachprojekt-Eigenschaften an</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Eigenschaften...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog an, mit dem die Mehrfachprojekt-Eigenschaften bearbeitet werden können.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="840" />
+      <location filename="../MultiProject/MultiProject.py" line="838" />
       <source>&amp;Multiproject</source>
       <translation>&amp;Mehrfachprojekt</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="841" />
+      <location filename="../MultiProject/MultiProject.py" line="839" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation>Zu&amp;letzt geöffnete Mehrfachprojekte</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="880" />
       <location filename="../MultiProject/MultiProject.py" line="878" />
+      <location filename="../MultiProject/MultiProject.py" line="876" />
       <source>Multiproject</source>
       <translation>Mehrfachprojekt</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="935" />
+      <location filename="../MultiProject/MultiProject.py" line="933" />
       <source>&amp;Clear</source>
       <translation>&amp;Löschen</translation>
     </message>
@@ -69184,7 +69227,7 @@
       <translation>STLink Funktionen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="417" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="415" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation>Zeige MicroPython Versionen</translation>
@@ -69195,7 +69238,7 @@
       <translation>Zeige STLink Geräteinformationen an</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="381" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="379" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="367" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="349" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="239" />
@@ -69233,42 +69276,42 @@
       <translation>MicroPython Firmware Dateien (*.hex *.bin);;Alle Dateien (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="380" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="378" />
       <source>'st-flash' Output</source>
       <translation>'st-flash' Ausgabe</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="400" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="398" />
       <source>'st-info' Output</source>
       <translation>'st-info' Ausgabe</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="401" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="399" />
       <source>STLink Device Information</source>
       <translation>STLink Geräteinformationen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="416" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation>Die Firmware des verbundenen Gerätes kann nicht ermittelt werden oder das Board enthält kein MicroPython. Abbruch...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="444" />
       <source>unknown</source>
       <translation>unbekannt</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h4&gt;MicroPython Versionsinformationen&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installiert:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Verfügbar:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="460" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;Update verfügbar!&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="462" />
       <source>MicroPython Version</source>
       <translation>MicroPython Version</translation>
     </message>
@@ -69757,49 +69800,49 @@
 </translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="155" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="154" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="151" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="150" />
       <source>Find Next</source>
       <translation>Weitersuchen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="168" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="167" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="164" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="163" />
       <source>Find Prev</source>
       <translation>Rückwärtssuchen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="181" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="180" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="177" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="176" />
       <source>Replace and Search</source>
       <translation>Ersetzen und Suchen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="197" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="196" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="191" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="190" />
       <source>Replace Occurrence</source>
       <translation>Fundstelle ersetzen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="211" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="210" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="205" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="204" />
       <source>Replace All</source>
       <translation>Alle ersetzen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1048" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1045" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="597" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="559" />
       <source>'{0}' was not found.</source>
       <translation>„{0}“ wurde nicht gefunden.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1201" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1198" />
       <source>Replaced {0} occurrences.</source>
       <translation>{0} Vorkommen ersetzt.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1207" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1204" />
       <source>Nothing replaced because '{0}' was not found.</source>
       <translation>Es wurde nichts ersetzt, da „{0}“ nicht gefunden wurde.</translation>
     </message>
@@ -77594,50 +77637,50 @@
   <context>
     <name>SvnProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="734" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="591" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="594" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="547" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="394" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="593" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="546" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="596" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="549" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="399" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="210" />
       <source>Version Control</source>
       <translation>Versionskontrolle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="750" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="607" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="753" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="610" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="224" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="758" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="761" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="415" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="226" />
       <source>Update from repository</source>
       <translation>Abgleich mit Repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="756" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="616" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="416" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="230" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="764" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="615" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="767" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="618" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="421" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="232" />
       <source>Commit changes to repository...</source>
       <translation>Änderungen einpflegen...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="763" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="620" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="623" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="423" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="237" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="622" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="625" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="428" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="239" />
       <source>Add to repository</source>
@@ -77652,90 +77695,90 @@
       <translation>Verzeichnisbaum zum Repository hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="769" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="626" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="772" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="629" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="436" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="250" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="441" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="252" />
       <source>Remove from repository (and disk)</source>
       <translation>Vom Repository (und der Platte) löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="634" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="255" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="257" />
       <source>Copy</source>
       <translation>Kopieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="257" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="259" />
       <source>Move</source>
       <translation>Verschieben</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="776" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="779" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="641" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="443" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="262" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="784" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="787" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="643" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="448" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="264" />
       <source>Add to Changelist</source>
       <translation>Zu Änderungsliste hinzufügen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="780" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="783" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="645" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="266" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="788" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="647" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="452" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="268" />
       <source>Remove from Changelist</source>
       <translation>Von Änderungsliste entfernen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="272" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="650" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="653" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="274" />
       <source>Show log browser</source>
       <translation>Zeige Log Browser</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="786" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="655" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="658" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="453" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="279" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="794" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="660" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="281" />
       <source>Show status</source>
       <translation>Status anzeigen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="663" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="287" />
       <source>Show repository info</source>
       <translation>Zeige Repositoryinformationen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="793" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="662" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="665" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="801" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="670" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="673" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="465" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="294" />
       <source>Show differences</source>
@@ -77748,12 +77791,12 @@
       <translation>Unterschiede nebeneinander anzeigen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="799" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="802" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="671" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="466" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="298" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="807" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="810" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="679" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="471" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="306" />
       <source>Show differences (extended)</source>
@@ -77766,12 +77809,12 @@
       <translation>Unterschiede nebeneinander anzeigen (erweitert)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="805" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="472" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="310" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="813" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="685" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="477" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="318" />
       <source>Show differences (URLs)</source>
@@ -77784,34 +77827,34 @@
       <translation>Zeige kommentierte Datei</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="812" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="681" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="815" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="684" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="479" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="319" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="820" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="689" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="823" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="692" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="484" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="327" />
       <source>Revert changes</source>
       <translation>Änderungen rückgängig</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="818" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="690" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="826" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="829" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="333" />
       <source>Merge changes</source>
       <translation>Änderungen zusammenführen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="822" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="691" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="483" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="329" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="830" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="699" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="488" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="337" />
       <source>Conflicts resolved</source>
@@ -77850,106 +77893,106 @@
       <translation>Sperre stehlen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="828" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="697" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="510" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="356" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="836" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="361" />
       <source>Set Property</source>
       <translation>Eigenschaft definieren</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="827" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="830" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="699" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="358" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="835" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="838" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="707" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="363" />
       <source>List Properties</source>
       <translation>Eigenschaften listen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="829" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="698" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="832" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="701" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="360" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="837" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="709" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="365" />
       <source>Delete Property</source>
       <translation>Eigenschaft löschen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="559" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="841" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="710" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="561" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
-      <source>Select all local file entries</source>
-      <translation>Alle lokalen Dateieinträge auswählen</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="836" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="562" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="844" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="713" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
-      <source>Select all versioned file entries</source>
-      <translation>Alle versionierten Dateieinträge auswählen</translation>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
+      <source>Select all local file entries</source>
+      <translation>Alle lokalen Dateieinträge auswählen</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="839" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="708" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="847" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="716" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="567" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
+      <source>Select all versioned file entries</source>
+      <translation>Alle versionierten Dateieinträge auswählen</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="842" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="570" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="526" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="375" />
       <source>Select all local directory entries</source>
       <translation>Alle lokalen Verzeichniseinträge auswählen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="843" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="712" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="846" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="715" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="572" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="528" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="374" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="851" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="720" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="571" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="854" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="723" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="574" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="379" />
       <source>Select all versioned directory entries</source>
       <translation>Alle versionierten Verzeichniseinträge auswählen</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="847" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="576" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="532" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="378" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="855" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="724" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="575" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="858" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="727" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="578" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="534" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="383" />
       <source>Configure...</source>
@@ -90533,8 +90576,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
+      <location filename="../QScintilla/MiniEditor.py" line="1685" />
       <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/MiniEditor.py" line="1683" />
       <location filename="../QScintilla/ShellWindow.py" line="435" />
       <location filename="../QScintilla/ShellWindow.py" line="434" />
       <source>Delete current line</source>
@@ -90542,7 +90585,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
+      <location filename="../QScintilla/MiniEditor.py" line="1686" />
       <location filename="../QScintilla/ShellWindow.py" line="436" />
       <source>Ctrl+Shift+L</source>
       <translation>Ctrl+Shift+L</translation>
@@ -90550,8 +90593,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="1207" />
       <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/MiniEditor.py" line="1205" />
       <location filename="../QScintilla/ShellWindow.py" line="447" />
       <location filename="../QScintilla/ShellWindow.py" line="446" />
       <source>Indent one level</source>
@@ -90559,7 +90602,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
+      <location filename="../QScintilla/MiniEditor.py" line="1208" />
       <location filename="../QScintilla/ShellWindow.py" line="448" />
       <source>Tab</source>
       <translation>Tab</translation>
@@ -90567,8 +90610,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
+      <location filename="../QScintilla/MiniEditor.py" line="1673" />
       <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1671" />
       <location filename="../QScintilla/ShellWindow.py" line="459" />
       <location filename="../QScintilla/ShellWindow.py" line="458" />
       <source>Insert new line</source>
@@ -90576,14 +90619,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
+      <location filename="../QScintilla/MiniEditor.py" line="1674" />
       <location filename="../QScintilla/ShellWindow.py" line="460" />
       <source>Return</source>
       <translation>Return</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
+      <location filename="../QScintilla/MiniEditor.py" line="1675" />
       <location filename="../QScintilla/ShellWindow.py" line="461" />
       <source>Enter</source>
       <translation>Enter</translation>
@@ -90591,8 +90634,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
+      <location filename="../QScintilla/MiniEditor.py" line="1559" />
       <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1557" />
       <location filename="../QScintilla/ShellWindow.py" line="471" />
       <location filename="../QScintilla/ShellWindow.py" line="470" />
       <source>Delete previous character</source>
@@ -90600,21 +90643,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
+      <location filename="../QScintilla/MiniEditor.py" line="1560" />
       <location filename="../QScintilla/ShellWindow.py" line="472" />
       <source>Backspace</source>
       <translation>Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1566" />
+      <location filename="../QScintilla/MiniEditor.py" line="1567" />
       <location filename="../QScintilla/ShellWindow.py" line="479" />
       <source>Meta+H</source>
       <translation>Meta+H</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1571" />
+      <location filename="../QScintilla/MiniEditor.py" line="1572" />
       <location filename="../QScintilla/ShellWindow.py" line="484" />
       <source>Shift+Backspace</source>
       <translation>Shift+Backspace</translation>
@@ -90622,8 +90665,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
+      <location filename="../QScintilla/MiniEditor.py" line="1597" />
       <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1595" />
       <location filename="../QScintilla/ShellWindow.py" line="493" />
       <location filename="../QScintilla/ShellWindow.py" line="492" />
       <source>Delete current character</source>
@@ -90631,14 +90674,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
+      <location filename="../QScintilla/MiniEditor.py" line="1598" />
       <location filename="../QScintilla/ShellWindow.py" line="494" />
       <source>Del</source>
       <translation>Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1604" />
+      <location filename="../QScintilla/MiniEditor.py" line="1605" />
       <location filename="../QScintilla/ShellWindow.py" line="501" />
       <source>Meta+D</source>
       <translation>Meta+D</translation>
@@ -90646,8 +90689,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
+      <location filename="../QScintilla/MiniEditor.py" line="1613" />
       <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/MiniEditor.py" line="1611" />
       <location filename="../QScintilla/ShellWindow.py" line="509" />
       <location filename="../QScintilla/ShellWindow.py" line="508" />
       <source>Delete word to left</source>
@@ -90655,7 +90698,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1614" />
       <location filename="../QScintilla/ShellWindow.py" line="510" />
       <source>Ctrl+Backspace</source>
       <translation>Ctrl+Backspace</translation>
@@ -90663,8 +90706,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1625" />
       <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/MiniEditor.py" line="1623" />
       <location filename="../QScintilla/ShellWindow.py" line="521" />
       <location filename="../QScintilla/ShellWindow.py" line="520" />
       <source>Delete word to right</source>
@@ -90672,7 +90715,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
+      <location filename="../QScintilla/MiniEditor.py" line="1626" />
       <location filename="../QScintilla/ShellWindow.py" line="522" />
       <source>Ctrl+Del</source>
       <translation>Ctrl+Del</translation>
@@ -90680,8 +90723,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
+      <location filename="../QScintilla/MiniEditor.py" line="1637" />
       <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/MiniEditor.py" line="1635" />
       <location filename="../QScintilla/ShellWindow.py" line="533" />
       <location filename="../QScintilla/ShellWindow.py" line="532" />
       <source>Delete line to left</source>
@@ -90689,7 +90732,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1638" />
+      <location filename="../QScintilla/MiniEditor.py" line="1639" />
       <location filename="../QScintilla/ShellWindow.py" line="535" />
       <source>Ctrl+Shift+Backspace</source>
       <translation>Ctrl+Shift+Backspace</translation>
@@ -90697,8 +90740,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
+      <location filename="../QScintilla/MiniEditor.py" line="1651" />
       <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/MiniEditor.py" line="1649" />
       <location filename="../QScintilla/ShellWindow.py" line="547" />
       <location filename="../QScintilla/ShellWindow.py" line="546" />
       <source>Delete line to right</source>
@@ -90706,14 +90749,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1658" />
+      <location filename="../QScintilla/MiniEditor.py" line="1659" />
       <location filename="../QScintilla/ShellWindow.py" line="555" />
       <source>Meta+K</source>
       <translation>Meta+K</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1663" />
+      <location filename="../QScintilla/MiniEditor.py" line="1664" />
       <location filename="../QScintilla/ShellWindow.py" line="560" />
       <source>Ctrl+Shift+Del</source>
       <translation>Ctrl+Shift+Del</translation>
@@ -90721,8 +90764,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
+      <location filename="../QScintilla/MiniEditor.py" line="895" />
       <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/MiniEditor.py" line="893" />
       <location filename="../QScintilla/ShellWindow.py" line="569" />
       <location filename="../QScintilla/ShellWindow.py" line="568" />
       <source>Move left one character</source>
@@ -90730,14 +90773,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
+      <location filename="../QScintilla/MiniEditor.py" line="896" />
       <location filename="../QScintilla/ShellWindow.py" line="570" />
       <source>Left</source>
       <translation>Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="904" />
       <location filename="../QScintilla/ShellWindow.py" line="578" />
       <source>Meta+B</source>
       <translation>Meta+B</translation>
@@ -90745,8 +90788,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="911" />
       <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/MiniEditor.py" line="909" />
       <location filename="../QScintilla/ShellWindow.py" line="585" />
       <location filename="../QScintilla/ShellWindow.py" line="584" />
       <source>Move right one character</source>
@@ -90754,14 +90797,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
+      <location filename="../QScintilla/MiniEditor.py" line="912" />
       <location filename="../QScintilla/ShellWindow.py" line="586" />
       <source>Right</source>
       <translation>Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="918" />
+      <location filename="../QScintilla/MiniEditor.py" line="919" />
       <location filename="../QScintilla/ShellWindow.py" line="593" />
       <source>Meta+F</source>
       <translation>Meta+F</translation>
@@ -90769,8 +90812,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="991" />
       <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/MiniEditor.py" line="989" />
       <location filename="../QScintilla/ShellWindow.py" line="601" />
       <location filename="../QScintilla/ShellWindow.py" line="600" />
       <source>Move left one word</source>
@@ -90779,8 +90822,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="998" />
-      <location filename="../QScintilla/MiniEditor.py" line="966" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/MiniEditor.py" line="967" />
       <location filename="../QScintilla/ShellWindow.py" line="609" />
       <source>Alt+Left</source>
       <translation>Alt+Left</translation>
@@ -90788,8 +90831,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1058" />
-      <location filename="../QScintilla/MiniEditor.py" line="1002" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
+      <location filename="../QScintilla/MiniEditor.py" line="1003" />
       <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Ctrl+Left</source>
       <translation>Ctrl+Left</translation>
@@ -90797,8 +90840,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
+      <location filename="../QScintilla/MiniEditor.py" line="1011" />
       <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/MiniEditor.py" line="1009" />
       <location filename="../QScintilla/ShellWindow.py" line="621" />
       <location filename="../QScintilla/ShellWindow.py" line="620" />
       <source>Move right one word</source>
@@ -90807,8 +90850,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1812" />
-      <location filename="../QScintilla/MiniEditor.py" line="1022" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="1023" />
       <location filename="../QScintilla/ShellWindow.py" line="629" />
       <source>Ctrl+Right</source>
       <translation>Ctrl+Right</translation>
@@ -90816,8 +90859,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1032" />
-      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1033" />
+      <location filename="../QScintilla/MiniEditor.py" line="1030" />
       <location filename="../QScintilla/ShellWindow.py" line="639" />
       <location filename="../QScintilla/ShellWindow.py" line="636" />
       <source>Move to first visible character in document line</source>
@@ -90826,8 +90869,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2073" />
-      <location filename="../QScintilla/MiniEditor.py" line="1042" />
+      <location filename="../QScintilla/MiniEditor.py" line="2074" />
+      <location filename="../QScintilla/MiniEditor.py" line="1043" />
       <location filename="../QScintilla/ShellWindow.py" line="649" />
       <source>Home</source>
       <translation>Home</translation>
@@ -90835,8 +90878,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
+      <location filename="../QScintilla/MiniEditor.py" line="1071" />
       <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/MiniEditor.py" line="1069" />
       <location filename="../QScintilla/ShellWindow.py" line="657" />
       <location filename="../QScintilla/ShellWindow.py" line="656" />
       <source>Move to end of document line</source>
@@ -90844,7 +90887,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1078" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
       <location filename="../QScintilla/ShellWindow.py" line="665" />
       <source>Meta+E</source>
       <translation>Meta+E</translation>
@@ -90852,8 +90895,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1083" />
       <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>End</source>
       <translation>End</translation>
@@ -90861,8 +90904,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="927" />
       <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/MiniEditor.py" line="925" />
       <location filename="../QScintilla/ShellWindow.py" line="677" />
       <location filename="../QScintilla/ShellWindow.py" line="676" />
       <source>Move up one line</source>
@@ -90870,14 +90913,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
+      <location filename="../QScintilla/MiniEditor.py" line="928" />
       <location filename="../QScintilla/ShellWindow.py" line="678" />
       <source>Up</source>
       <translation>Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="934" />
+      <location filename="../QScintilla/MiniEditor.py" line="935" />
       <location filename="../QScintilla/ShellWindow.py" line="685" />
       <source>Meta+P</source>
       <translation>Meta+P</translation>
@@ -90885,8 +90928,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
+      <location filename="../QScintilla/MiniEditor.py" line="943" />
       <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/MiniEditor.py" line="941" />
       <location filename="../QScintilla/ShellWindow.py" line="693" />
       <location filename="../QScintilla/ShellWindow.py" line="692" />
       <source>Move down one line</source>
@@ -90894,14 +90937,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="944" />
       <location filename="../QScintilla/ShellWindow.py" line="694" />
       <source>Down</source>
       <translation>Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="950" />
+      <location filename="../QScintilla/MiniEditor.py" line="951" />
       <location filename="../QScintilla/ShellWindow.py" line="701" />
       <source>Meta+N</source>
       <translation>Meta+N</translation>
@@ -90909,8 +90952,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1194" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
+      <location filename="../QScintilla/MiniEditor.py" line="1092" />
       <location filename="../QScintilla/ShellWindow.py" line="710" />
       <source>Ctrl+Down</source>
       <translation>Ctrl+Down</translation>
@@ -90918,8 +90961,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1174" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
+      <location filename="../QScintilla/MiniEditor.py" line="1104" />
       <location filename="../QScintilla/ShellWindow.py" line="722" />
       <source>Ctrl+Up</source>
       <translation>Ctrl+Up</translation>
@@ -90927,8 +90970,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1139" />
       <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/MiniEditor.py" line="1137" />
       <location filename="../QScintilla/ShellWindow.py" line="733" />
       <location filename="../QScintilla/ShellWindow.py" line="732" />
       <source>Move up one page</source>
@@ -90936,7 +90979,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
+      <location filename="../QScintilla/MiniEditor.py" line="1140" />
       <location filename="../QScintilla/ShellWindow.py" line="734" />
       <source>PgUp</source>
       <translation>PgUp</translation>
@@ -90944,8 +90987,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
+      <location filename="../QScintilla/MiniEditor.py" line="1151" />
       <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1149" />
       <location filename="../QScintilla/ShellWindow.py" line="745" />
       <location filename="../QScintilla/ShellWindow.py" line="744" />
       <source>Move down one page</source>
@@ -90953,14 +90996,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1152" />
       <location filename="../QScintilla/ShellWindow.py" line="746" />
       <source>PgDown</source>
       <translation>PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1158" />
+      <location filename="../QScintilla/MiniEditor.py" line="1159" />
       <location filename="../QScintilla/ShellWindow.py" line="753" />
       <source>Meta+V</source>
       <translation>Meta+V</translation>
@@ -90968,8 +91011,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
+      <location filename="../QScintilla/MiniEditor.py" line="1859" />
       <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/MiniEditor.py" line="1857" />
       <location filename="../QScintilla/ShellWindow.py" line="761" />
       <location filename="../QScintilla/ShellWindow.py" line="760" />
       <source>Escape</source>
@@ -90977,7 +91020,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
+      <location filename="../QScintilla/MiniEditor.py" line="1860" />
       <location filename="../QScintilla/ShellWindow.py" line="762" />
       <source>Esc</source>
       <translation>Esc</translation>
@@ -90985,8 +91028,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1233" />
+      <location filename="../QScintilla/MiniEditor.py" line="1230" />
       <location filename="../QScintilla/ShellWindow.py" line="775" />
       <location filename="../QScintilla/ShellWindow.py" line="772" />
       <source>Extend selection left one character</source>
@@ -90994,14 +91037,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1235" />
+      <location filename="../QScintilla/MiniEditor.py" line="1236" />
       <location filename="../QScintilla/ShellWindow.py" line="778" />
       <source>Shift+Left</source>
       <translation>Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1242" />
+      <location filename="../QScintilla/MiniEditor.py" line="1243" />
       <location filename="../QScintilla/ShellWindow.py" line="785" />
       <source>Meta+Shift+B</source>
       <translation>Meta+Shift+B</translation>
@@ -91009,8 +91052,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1253" />
+      <location filename="../QScintilla/MiniEditor.py" line="1250" />
       <location filename="../QScintilla/ShellWindow.py" line="795" />
       <location filename="../QScintilla/ShellWindow.py" line="792" />
       <source>Extend selection right one character</source>
@@ -91018,14 +91061,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1255" />
+      <location filename="../QScintilla/MiniEditor.py" line="1256" />
       <location filename="../QScintilla/ShellWindow.py" line="798" />
       <source>Shift+Right</source>
       <translation>Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1262" />
+      <location filename="../QScintilla/MiniEditor.py" line="1263" />
       <location filename="../QScintilla/ShellWindow.py" line="805" />
       <source>Meta+Shift+F</source>
       <translation>Meta+Shift+F</translation>
@@ -91033,8 +91076,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
+      <location filename="../QScintilla/MiniEditor.py" line="1347" />
       <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/MiniEditor.py" line="1345" />
       <location filename="../QScintilla/ShellWindow.py" line="813" />
       <location filename="../QScintilla/ShellWindow.py" line="812" />
       <source>Extend selection left one word</source>
@@ -91043,8 +91086,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1355" />
-      <location filename="../QScintilla/MiniEditor.py" line="1315" />
+      <location filename="../QScintilla/MiniEditor.py" line="1356" />
+      <location filename="../QScintilla/MiniEditor.py" line="1316" />
       <location filename="../QScintilla/ShellWindow.py" line="822" />
       <source>Alt+Shift+Left</source>
       <translation>Alt+Shift+Left</translation>
@@ -91052,8 +91095,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2276" />
-      <location filename="../QScintilla/MiniEditor.py" line="1361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2277" />
+      <location filename="../QScintilla/MiniEditor.py" line="1362" />
       <location filename="../QScintilla/ShellWindow.py" line="828" />
       <source>Ctrl+Shift+Left</source>
       <translation>Ctrl+Shift+Left</translation>
@@ -91061,8 +91104,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1372" />
-      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1373" />
+      <location filename="../QScintilla/MiniEditor.py" line="1370" />
       <location filename="../QScintilla/ShellWindow.py" line="839" />
       <location filename="../QScintilla/ShellWindow.py" line="836" />
       <source>Extend selection right one word</source>
@@ -91072,9 +91115,9 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1383" />
-      <location filename="../QScintilla/MiniEditor.py" line="1337" />
+      <location filename="../QScintilla/MiniEditor.py" line="2151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1384" />
+      <location filename="../QScintilla/MiniEditor.py" line="1338" />
       <location filename="../QScintilla/ShellWindow.py" line="850" />
       <source>Alt+Shift+Right</source>
       <translation>Alt+Shift+Right</translation>
@@ -91082,8 +91125,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1837" />
-      <location filename="../QScintilla/MiniEditor.py" line="1389" />
+      <location filename="../QScintilla/MiniEditor.py" line="1838" />
+      <location filename="../QScintilla/MiniEditor.py" line="1390" />
       <location filename="../QScintilla/ShellWindow.py" line="856" />
       <source>Ctrl+Shift+Right</source>
       <translation>Ctrl+Shift+Right</translation>
@@ -91091,8 +91134,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1401" />
-      <location filename="../QScintilla/MiniEditor.py" line="1397" />
+      <location filename="../QScintilla/MiniEditor.py" line="1402" />
+      <location filename="../QScintilla/MiniEditor.py" line="1398" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
       <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
@@ -91100,7 +91143,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1412" />
+      <location filename="../QScintilla/MiniEditor.py" line="1413" />
       <location filename="../QScintilla/ShellWindow.py" line="879" />
       <source>Shift+Home</source>
       <translation>Shift+Home</translation>
@@ -91108,8 +91151,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1422" />
-      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1423" />
+      <location filename="../QScintilla/MiniEditor.py" line="1420" />
       <location filename="../QScintilla/ShellWindow.py" line="889" />
       <location filename="../QScintilla/ShellWindow.py" line="886" />
       <source>Extend selection to end of document line</source>
@@ -91117,14 +91160,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1432" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
       <location filename="../QScintilla/ShellWindow.py" line="899" />
       <source>Meta+Shift+E</source>
       <translation>Meta+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1437" />
       <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Shift+End</source>
       <translation>Shift+End</translation>
@@ -91133,21 +91176,21 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2532" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
       <location filename="../QScintilla/ShellWindow.py" line="917" />
       <source>Search</source>
       <translation>Suchen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2534" />
+      <location filename="../QScintilla/MiniEditor.py" line="2535" />
       <location filename="../QScintilla/ShellWindow.py" line="919" />
       <source>&amp;Search...</source>
       <translation>&amp;Suchen...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2536" />
+      <location filename="../QScintilla/MiniEditor.py" line="2537" />
       <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
@@ -91155,7 +91198,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2543" />
+      <location filename="../QScintilla/MiniEditor.py" line="2544" />
       <location filename="../QScintilla/ShellWindow.py" line="928" />
       <source>Search for a text</source>
       <translation>Sucht nach Text</translation>
@@ -91167,21 +91210,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
       <location filename="../QScintilla/ShellWindow.py" line="943" />
       <source>Search next</source>
       <translation>Weitersuchen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2560" />
+      <location filename="../QScintilla/MiniEditor.py" line="2561" />
       <location filename="../QScintilla/ShellWindow.py" line="945" />
       <source>Search &amp;next</source>
       <translation>&amp;Weitersuchen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2562" />
+      <location filename="../QScintilla/MiniEditor.py" line="2563" />
       <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>F3</source>
       <comment>Search|Search next</comment>
@@ -91189,7 +91232,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2569" />
+      <location filename="../QScintilla/MiniEditor.py" line="2570" />
       <location filename="../QScintilla/ShellWindow.py" line="954" />
       <source>Search next occurrence of text</source>
       <translation>Das nächste Vorkommen des Textes in der Seite suchen</translation>
@@ -91201,21 +91244,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2584" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
       <location filename="../QScintilla/ShellWindow.py" line="971" />
       <source>Search previous</source>
       <translation>Rückwärtssuchen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2586" />
+      <location filename="../QScintilla/MiniEditor.py" line="2587" />
       <location filename="../QScintilla/ShellWindow.py" line="973" />
       <source>Search &amp;previous</source>
       <translation>&amp;Rückwärtssuchen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2588" />
+      <location filename="../QScintilla/MiniEditor.py" line="2589" />
       <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
@@ -91223,7 +91266,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2597" />
+      <location filename="../QScintilla/MiniEditor.py" line="2598" />
       <location filename="../QScintilla/ShellWindow.py" line="984" />
       <source>Search previous occurrence of text</source>
       <translation>Das vorherige Vorkommen des Textes in der Seite suchen</translation>
@@ -91235,21 +91278,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2757" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
       <location filename="../QScintilla/ShellWindow.py" line="1010" />
       <source>Zoom in</source>
       <translation>Vergrößern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2759" />
+      <location filename="../QScintilla/MiniEditor.py" line="2760" />
       <location filename="../QScintilla/ShellWindow.py" line="1012" />
       <source>Zoom &amp;in</source>
       <translation>Ver&amp;größern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/MiniEditor.py" line="2762" />
       <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
@@ -91257,7 +91300,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2764" />
+      <location filename="../QScintilla/MiniEditor.py" line="2765" />
       <location filename="../QScintilla/ShellWindow.py" line="1017" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
@@ -91265,35 +91308,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/MiniEditor.py" line="2771" />
       <location filename="../QScintilla/ShellWindow.py" line="1023" />
       <source>Zoom in on the text</source>
       <translation>Text vergrößern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2773" />
+      <location filename="../QScintilla/MiniEditor.py" line="2774" />
       <location filename="../QScintilla/ShellWindow.py" line="1026" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Vergrößern&lt;/b&gt;&lt;p&gt;Den angezeigten Text vergrößern.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2783" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
       <location filename="../QScintilla/ShellWindow.py" line="1036" />
       <source>Zoom out</source>
       <translation>Verkleinern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2785" />
+      <location filename="../QScintilla/MiniEditor.py" line="2786" />
       <location filename="../QScintilla/ShellWindow.py" line="1038" />
       <source>Zoom &amp;out</source>
       <translation>Ver&amp;kleinern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/MiniEditor.py" line="2788" />
       <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
@@ -91301,7 +91344,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2790" />
+      <location filename="../QScintilla/MiniEditor.py" line="2791" />
       <location filename="../QScintilla/ShellWindow.py" line="1043" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
@@ -91309,35 +91352,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/MiniEditor.py" line="2797" />
       <location filename="../QScintilla/ShellWindow.py" line="1049" />
       <source>Zoom out on the text</source>
       <translation>Text verkleinern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2799" />
+      <location filename="../QScintilla/MiniEditor.py" line="2800" />
       <location filename="../QScintilla/ShellWindow.py" line="1052" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Verkleinern&lt;/b&gt;&lt;p&gt;Den angezeigten Text verkleinern.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2809" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
       <location filename="../QScintilla/ShellWindow.py" line="1062" />
       <source>Zoom reset</source>
       <translation>Vergrößerung zurücksetzen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2811" />
+      <location filename="../QScintilla/MiniEditor.py" line="2812" />
       <location filename="../QScintilla/ShellWindow.py" line="1064" />
       <source>Zoom &amp;reset</source>
       <translation>Vergrößerung &amp;zurücksetzen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2813" />
+      <location filename="../QScintilla/MiniEditor.py" line="2814" />
       <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
@@ -91345,42 +91388,42 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/MiniEditor.py" line="2821" />
       <location filename="../QScintilla/ShellWindow.py" line="1073" />
       <source>Reset the zoom of the text</source>
       <translation>Die Textgröße zurücksetzen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2823" />
+      <location filename="../QScintilla/MiniEditor.py" line="2824" />
       <location filename="../QScintilla/ShellWindow.py" line="1076" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Vergrößerung zurücksetzen&lt;/b&gt;&lt;p&gt;Setzt die Vergrößerung auf den Wert 100% zurück.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2834" />
+      <location filename="../QScintilla/MiniEditor.py" line="2835" />
       <location filename="../QScintilla/ShellWindow.py" line="1087" />
       <source>Zoom</source>
       <translation>Maßstab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2836" />
+      <location filename="../QScintilla/MiniEditor.py" line="2837" />
       <location filename="../QScintilla/ShellWindow.py" line="1089" />
       <source>&amp;Zoom</source>
       <translation>&amp;Maßstab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/MiniEditor.py" line="2844" />
       <location filename="../QScintilla/ShellWindow.py" line="1096" />
       <source>Zoom the text</source>
       <translation>Den Maßstab des Textes ändern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2846" />
+      <location filename="../QScintilla/MiniEditor.py" line="2847" />
       <location filename="../QScintilla/ShellWindow.py" line="1099" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Maßstab&lt;/b&gt;&lt;p&gt;dies ändert den Textmaßstab. Es wird ein dialog eingeblendet, in dem der Maßstab eingegeben werden kann.&lt;/p&gt;</translation>
@@ -91388,984 +91431,984 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="804" />
       <location filename="../ViewManager/ViewManager.py" line="802" />
-      <location filename="../QScintilla/MiniEditor.py" line="740" />
+      <location filename="../QScintilla/MiniEditor.py" line="741" />
       <source>Print Preview</source>
       <translation>Druckvorschau</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
+      <location filename="../QScintilla/MiniEditor.py" line="959" />
       <location filename="../QScintilla/MiniEditor.py" line="958" />
-      <location filename="../QScintilla/MiniEditor.py" line="957" />
       <source>Move left one word part</source>
       <translation>Ein Wortteil nach links</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
+      <location filename="../QScintilla/MiniEditor.py" line="975" />
       <location filename="../QScintilla/MiniEditor.py" line="974" />
-      <location filename="../QScintilla/MiniEditor.py" line="973" />
       <source>Move right one word part</source>
       <translation>Ein Wortteil nach rechts</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2128" />
-      <location filename="../QScintilla/MiniEditor.py" line="1018" />
-      <location filename="../QScintilla/MiniEditor.py" line="982" />
+      <location filename="../QScintilla/MiniEditor.py" line="2129" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/MiniEditor.py" line="983" />
       <source>Alt+Right</source>
       <translation>Alt+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1051" />
       <location filename="../QScintilla/MiniEditor.py" line="1050" />
-      <location filename="../QScintilla/MiniEditor.py" line="1049" />
       <source>Move to start of display line</source>
       <translation>Zum Beginn der Anzeigezeile springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="1063" />
       <source>Alt+Home</source>
       <translation>Alt+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
+      <location filename="../QScintilla/MiniEditor.py" line="1091" />
       <location filename="../QScintilla/MiniEditor.py" line="1090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1089" />
       <source>Scroll view down one line</source>
       <translation>Eine Zeile nach unten rollen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
+      <location filename="../QScintilla/MiniEditor.py" line="1103" />
       <location filename="../QScintilla/MiniEditor.py" line="1102" />
-      <location filename="../QScintilla/MiniEditor.py" line="1101" />
       <source>Scroll view up one line</source>
       <translation>Eine Zeile nach oben rollen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
+      <location filename="../QScintilla/MiniEditor.py" line="1115" />
       <location filename="../QScintilla/MiniEditor.py" line="1114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1113" />
       <source>Move up one paragraph</source>
       <translation>Einen Absatz nach oben</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
+      <location filename="../QScintilla/MiniEditor.py" line="1116" />
       <source>Alt+Up</source>
       <translation>Alt+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
+      <location filename="../QScintilla/MiniEditor.py" line="1127" />
       <location filename="../QScintilla/MiniEditor.py" line="1126" />
-      <location filename="../QScintilla/MiniEditor.py" line="1125" />
       <source>Move down one paragraph</source>
       <translation>Einen Absatz nach unten</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
+      <location filename="../QScintilla/MiniEditor.py" line="1128" />
       <source>Alt+Down</source>
       <translation>Alt+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
+      <location filename="../QScintilla/MiniEditor.py" line="1167" />
       <location filename="../QScintilla/MiniEditor.py" line="1166" />
-      <location filename="../QScintilla/MiniEditor.py" line="1165" />
       <source>Move to start of document</source>
       <translation>Zum Dokumentenanfang springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1178" />
+      <location filename="../QScintilla/MiniEditor.py" line="1179" />
       <source>Ctrl+Home</source>
       <translation>Ctrl+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
+      <location filename="../QScintilla/MiniEditor.py" line="1187" />
       <location filename="../QScintilla/MiniEditor.py" line="1186" />
-      <location filename="../QScintilla/MiniEditor.py" line="1185" />
       <source>Move to end of document</source>
       <translation>Zum Dokumentenende springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1198" />
+      <location filename="../QScintilla/MiniEditor.py" line="1199" />
       <source>Ctrl+End</source>
       <translation>Ctrl+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
+      <location filename="../QScintilla/MiniEditor.py" line="1219" />
       <location filename="../QScintilla/MiniEditor.py" line="1218" />
-      <location filename="../QScintilla/MiniEditor.py" line="1217" />
       <source>Unindent one level</source>
       <translation>Eine Ebene ausrücken</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
+      <location filename="../QScintilla/MiniEditor.py" line="1220" />
       <source>Shift+Tab</source>
       <translation>Shift+Tab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
+      <location filename="../QScintilla/MiniEditor.py" line="1271" />
       <location filename="../QScintilla/MiniEditor.py" line="1270" />
-      <location filename="../QScintilla/MiniEditor.py" line="1269" />
       <source>Extend selection up one line</source>
       <translation>Auswahl um eine Zeile nach oben erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
+      <location filename="../QScintilla/MiniEditor.py" line="1272" />
       <source>Shift+Up</source>
       <translation>Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1278" />
+      <location filename="../QScintilla/MiniEditor.py" line="1279" />
       <source>Meta+Shift+P</source>
       <translation>Meta+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
+      <location filename="../QScintilla/MiniEditor.py" line="1287" />
       <location filename="../QScintilla/MiniEditor.py" line="1286" />
-      <location filename="../QScintilla/MiniEditor.py" line="1285" />
       <source>Extend selection down one line</source>
       <translation>Auswahl um eine Zeile nach unten erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
+      <location filename="../QScintilla/MiniEditor.py" line="1288" />
       <source>Shift+Down</source>
       <translation>Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1294" />
+      <location filename="../QScintilla/MiniEditor.py" line="1295" />
       <source>Meta+Shift+N</source>
       <translation>Meta+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1304" />
-      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1305" />
+      <location filename="../QScintilla/MiniEditor.py" line="1302" />
       <source>Extend selection left one word part</source>
       <translation>Auswahl um einen Wortteil nach links erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1326" />
-      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1327" />
+      <location filename="../QScintilla/MiniEditor.py" line="1324" />
       <source>Extend selection right one word part</source>
       <translation>Auswahl um einen Wortteil nach rechts erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1446" />
-      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1447" />
+      <location filename="../QScintilla/MiniEditor.py" line="1444" />
       <source>Extend selection up one paragraph</source>
       <translation>Auswahl um einen Absatz nach oben erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1449" />
+      <location filename="../QScintilla/MiniEditor.py" line="1450" />
       <source>Alt+Shift+Up</source>
       <translation>Alt+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1462" />
-      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1463" />
+      <location filename="../QScintilla/MiniEditor.py" line="1460" />
       <source>Extend selection down one paragraph</source>
       <translation>Auswahl um einen Absatz nach unten erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1465" />
+      <location filename="../QScintilla/MiniEditor.py" line="1466" />
       <source>Alt+Shift+Down</source>
       <translation>Alt+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1477" />
       <location filename="../QScintilla/MiniEditor.py" line="1476" />
-      <location filename="../QScintilla/MiniEditor.py" line="1475" />
       <source>Extend selection up one page</source>
       <translation>Auswahl um eine Seite nach oben erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
+      <location filename="../QScintilla/MiniEditor.py" line="1478" />
       <source>Shift+PgUp</source>
       <translation>Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="1489" />
       <location filename="../QScintilla/MiniEditor.py" line="1488" />
-      <location filename="../QScintilla/MiniEditor.py" line="1487" />
       <source>Extend selection down one page</source>
       <translation>Auswahl um eine Seite nach unten erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
+      <location filename="../QScintilla/MiniEditor.py" line="1490" />
       <source>Shift+PgDown</source>
       <translation>Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1496" />
+      <location filename="../QScintilla/MiniEditor.py" line="1497" />
       <source>Meta+Shift+V</source>
       <translation>Meta+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1506" />
-      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1507" />
+      <location filename="../QScintilla/MiniEditor.py" line="1504" />
       <source>Extend selection to start of document</source>
       <translation>Auswahl zum Dokumentenanfang erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1516" />
+      <location filename="../QScintilla/MiniEditor.py" line="1517" />
       <source>Ctrl+Shift+Up</source>
       <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1521" />
+      <location filename="../QScintilla/MiniEditor.py" line="1522" />
       <source>Ctrl+Shift+Home</source>
       <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1533" />
+      <location filename="../QScintilla/MiniEditor.py" line="1530" />
       <source>Extend selection to end of document</source>
       <translation>Auswahl zum Dokumentenende erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1543" />
+      <location filename="../QScintilla/MiniEditor.py" line="1544" />
       <source>Ctrl+Shift+Down</source>
       <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1549" />
+      <location filename="../QScintilla/MiniEditor.py" line="1550" />
       <source>Ctrl+Shift+End</source>
       <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1583" />
+      <location filename="../QScintilla/MiniEditor.py" line="1580" />
       <source>Delete previous character if not at start of line</source>
       <translation>Zeichen links löschen, wenn nicht am Zeilenanfang</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1697" />
       <location filename="../QScintilla/MiniEditor.py" line="1696" />
-      <location filename="../QScintilla/MiniEditor.py" line="1695" />
       <source>Duplicate current line</source>
       <translation>Aktuelle Zeile duplizieren</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
+      <location filename="../QScintilla/MiniEditor.py" line="1698" />
       <source>Ctrl+D</source>
       <translation>Ctrl+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1710" />
-      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1711" />
+      <location filename="../QScintilla/MiniEditor.py" line="1708" />
       <source>Swap current and previous lines</source>
       <translation>Aktuelle Zeile mit vorhergehender tauschen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1713" />
+      <location filename="../QScintilla/MiniEditor.py" line="1714" />
       <source>Ctrl+T</source>
       <translation>Ctrl+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="1725" />
       <location filename="../QScintilla/MiniEditor.py" line="1724" />
-      <location filename="../QScintilla/MiniEditor.py" line="1723" />
       <source>Reverse selected lines</source>
       <translation>Ausgewählte Zeilen umkehren</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
+      <location filename="../QScintilla/MiniEditor.py" line="1726" />
       <source>Meta+Alt+R</source>
       <translation>Meta+Ctrl+Alt+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
+      <location filename="../QScintilla/MiniEditor.py" line="1737" />
       <location filename="../QScintilla/MiniEditor.py" line="1736" />
-      <location filename="../QScintilla/MiniEditor.py" line="1735" />
       <source>Cut current line</source>
       <translation>Aktuelle Zeile ausschneiden</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
+      <location filename="../QScintilla/MiniEditor.py" line="1738" />
       <source>Alt+Shift+L</source>
       <translation>Alt+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
+      <location filename="../QScintilla/MiniEditor.py" line="1749" />
       <location filename="../QScintilla/MiniEditor.py" line="1748" />
-      <location filename="../QScintilla/MiniEditor.py" line="1747" />
       <source>Copy current line</source>
       <translation>Aktuelle Zeile kopieren</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="1750" />
       <source>Ctrl+Shift+T</source>
       <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
+      <location filename="../QScintilla/MiniEditor.py" line="1761" />
       <location filename="../QScintilla/MiniEditor.py" line="1760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1759" />
       <source>Toggle insert/overtype</source>
       <translation>Einfügen/Überschreiben umschalten</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
+      <location filename="../QScintilla/MiniEditor.py" line="1762" />
       <source>Ins</source>
       <translation>Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1775" />
+      <location filename="../QScintilla/MiniEditor.py" line="1772" />
       <source>Convert selection to lower case</source>
       <translation>Auswahl in Kleinbuchstaben umwandeln</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1777" />
+      <location filename="../QScintilla/MiniEditor.py" line="1778" />
       <source>Alt+Shift+U</source>
       <translation>Alt+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1791" />
+      <location filename="../QScintilla/MiniEditor.py" line="1788" />
       <source>Convert selection to upper case</source>
       <translation>Auswahl in Großbuchstaben umwandeln</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1793" />
+      <location filename="../QScintilla/MiniEditor.py" line="1794" />
       <source>Ctrl+Shift+U</source>
       <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
+      <location filename="../QScintilla/MiniEditor.py" line="1805" />
       <location filename="../QScintilla/MiniEditor.py" line="1804" />
-      <location filename="../QScintilla/MiniEditor.py" line="1803" />
       <source>Move to end of display line</source>
       <translation>Zum Ende der Anzeigezeile springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1816" />
+      <location filename="../QScintilla/MiniEditor.py" line="1817" />
       <source>Alt+End</source>
       <translation>Alt+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1827" />
+      <location filename="../QScintilla/MiniEditor.py" line="1824" />
       <source>Extend selection to end of display line</source>
       <translation>Auswahl zum Ende der Anzeigezeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
+      <location filename="../QScintilla/MiniEditor.py" line="1847" />
       <location filename="../QScintilla/MiniEditor.py" line="1846" />
-      <location filename="../QScintilla/MiniEditor.py" line="1845" />
       <source>Formfeed</source>
       <translation>Seitenumbruch</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1872" />
-      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1873" />
+      <location filename="../QScintilla/MiniEditor.py" line="1870" />
       <source>Extend rectangular selection down one line</source>
       <translation>Rechteckige Auswahl um eine Zeile nach unten erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1875" />
+      <location filename="../QScintilla/MiniEditor.py" line="1876" />
       <source>Alt+Ctrl+Down</source>
       <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1883" />
+      <location filename="../QScintilla/MiniEditor.py" line="1884" />
       <source>Meta+Alt+Shift+N</source>
       <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1894" />
-      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1895" />
+      <location filename="../QScintilla/MiniEditor.py" line="1892" />
       <source>Extend rectangular selection up one line</source>
       <translation>Rechteckige Auswahl um eine Zeile nach oben erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1897" />
+      <location filename="../QScintilla/MiniEditor.py" line="1898" />
       <source>Alt+Ctrl+Up</source>
       <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1905" />
+      <location filename="../QScintilla/MiniEditor.py" line="1906" />
       <source>Meta+Alt+Shift+P</source>
       <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1916" />
-      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1917" />
+      <location filename="../QScintilla/MiniEditor.py" line="1914" />
       <source>Extend rectangular selection left one character</source>
       <translation>Rechteckige Auswahl um ein Zeichen nach links erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1919" />
+      <location filename="../QScintilla/MiniEditor.py" line="1920" />
       <source>Alt+Ctrl+Left</source>
       <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1927" />
+      <location filename="../QScintilla/MiniEditor.py" line="1928" />
       <source>Meta+Alt+Shift+B</source>
       <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1938" />
-      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1939" />
+      <location filename="../QScintilla/MiniEditor.py" line="1936" />
       <source>Extend rectangular selection right one character</source>
       <translation>Rechteckige Auswahl um ein Zeichen nach rechts erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1941" />
+      <location filename="../QScintilla/MiniEditor.py" line="1942" />
       <source>Alt+Ctrl+Right</source>
       <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1949" />
+      <location filename="../QScintilla/MiniEditor.py" line="1950" />
       <source>Meta+Alt+Shift+F</source>
       <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1962" />
-      <location filename="../QScintilla/MiniEditor.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1963" />
+      <location filename="../QScintilla/MiniEditor.py" line="1958" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation>Rechteckige Auswahl zum ersten sichtbaren Zeichen der Dokumentzeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1975" />
+      <location filename="../QScintilla/MiniEditor.py" line="1976" />
       <source>Alt+Shift+Home</source>
       <translation>Alt+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1986" />
-      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1987" />
+      <location filename="../QScintilla/MiniEditor.py" line="1984" />
       <source>Extend rectangular selection to end of document line</source>
       <translation>Rechteckige Auswahl zum Ende der Dokumentenzeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1997" />
+      <location filename="../QScintilla/MiniEditor.py" line="1998" />
       <source>Meta+Alt+Shift+E</source>
       <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2002" />
+      <location filename="../QScintilla/MiniEditor.py" line="2003" />
       <source>Alt+Shift+End</source>
       <translation>Alt+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2012" />
-      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2013" />
+      <location filename="../QScintilla/MiniEditor.py" line="2010" />
       <source>Extend rectangular selection up one page</source>
       <translation>Rechteckige Auswahl um eine Seite nach oben erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2015" />
+      <location filename="../QScintilla/MiniEditor.py" line="2016" />
       <source>Alt+Shift+PgUp</source>
       <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2028" />
-      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2029" />
+      <location filename="../QScintilla/MiniEditor.py" line="2026" />
       <source>Extend rectangular selection down one page</source>
       <translation>Rechteckige Auswahl um eine Seite nach unten erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2031" />
+      <location filename="../QScintilla/MiniEditor.py" line="2032" />
       <source>Alt+Shift+PgDown</source>
       <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2039" />
+      <location filename="../QScintilla/MiniEditor.py" line="2040" />
       <source>Meta+Alt+Shift+V</source>
       <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2515" />
       <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2513" />
+      <location filename="../QScintilla/MiniEditor.py" line="2049" />
       <location filename="../QScintilla/MiniEditor.py" line="2048" />
-      <location filename="../QScintilla/MiniEditor.py" line="2047" />
       <source>Duplicate current selection</source>
       <translation>Aktuelle Auswahl duplizieren</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2516" />
+      <location filename="../QScintilla/MiniEditor.py" line="2050" />
       <source>Ctrl+Shift+D</source>
       <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2063" />
-      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2061" />
       <source>Scroll to start of document</source>
       <translation>Zum Dokumentenanfang rollen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
+      <location filename="../QScintilla/MiniEditor.py" line="2083" />
       <location filename="../QScintilla/MiniEditor.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="2081" />
       <source>Scroll to end of document</source>
       <translation>Zum Dokumentenende rollen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2101" />
-      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2102" />
+      <location filename="../QScintilla/MiniEditor.py" line="2099" />
       <source>Scroll vertically to center current line</source>
       <translation>Vertical rollen, um aktuelle Zeile zu zentrieren</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2111" />
+      <location filename="../QScintilla/MiniEditor.py" line="2112" />
       <source>Meta+L</source>
       <translation>Meta+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
+      <location filename="../QScintilla/MiniEditor.py" line="2121" />
       <location filename="../QScintilla/MiniEditor.py" line="2120" />
-      <location filename="../QScintilla/MiniEditor.py" line="2119" />
       <source>Move to end of next word</source>
       <translation>Zum Ende des nächsten Wortes springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2139" />
-      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2140" />
+      <location filename="../QScintilla/MiniEditor.py" line="2137" />
       <source>Extend selection to end of next word</source>
       <translation>Auswahl bis zum Ende des nächsten Wortes erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2162" />
-      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2163" />
+      <location filename="../QScintilla/MiniEditor.py" line="2160" />
       <source>Move to end of previous word</source>
       <translation>Zum Ende des vorigen Wortes springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2179" />
-      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2180" />
+      <location filename="../QScintilla/MiniEditor.py" line="2177" />
       <source>Extend selection to end of previous word</source>
       <translation>Auswahl bis zum Ende des vorigen Wortes erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2196" />
-      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2197" />
+      <location filename="../QScintilla/MiniEditor.py" line="2194" />
       <source>Move to start of document line</source>
       <translation>Zum Beginn der Dokumentenzeile springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2206" />
+      <location filename="../QScintilla/MiniEditor.py" line="2207" />
       <source>Meta+A</source>
       <translation>Meta+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2218" />
+      <location filename="../QScintilla/MiniEditor.py" line="2215" />
       <source>Extend selection to start of document line</source>
       <translation>Auswahl zum Beginn der Dokumentenzeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2228" />
+      <location filename="../QScintilla/MiniEditor.py" line="2229" />
       <source>Meta+Shift+A</source>
       <translation>Meta+Shift+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2241" />
-      <location filename="../QScintilla/MiniEditor.py" line="2237" />
+      <location filename="../QScintilla/MiniEditor.py" line="2242" />
+      <location filename="../QScintilla/MiniEditor.py" line="2238" />
       <source>Extend rectangular selection to start of document line</source>
       <translation>Rechteckige Auswahl zum Beginn der Dokumentenzeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2253" />
+      <location filename="../QScintilla/MiniEditor.py" line="2254" />
       <source>Meta+Alt+Shift+A</source>
       <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2265" />
-      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2266" />
+      <location filename="../QScintilla/MiniEditor.py" line="2263" />
       <source>Extend selection to start of display line</source>
       <translation>Auswahl zum Beginn der Anzeigezeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2288" />
-      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2289" />
+      <location filename="../QScintilla/MiniEditor.py" line="2286" />
       <source>Move to start of display or document line</source>
       <translation>Zum Beginn der Dokumenten- oder Anzeigezeile springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2306" />
-      <location filename="../QScintilla/MiniEditor.py" line="2302" />
+      <location filename="../QScintilla/MiniEditor.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="2303" />
       <source>Extend selection to start of display or document line</source>
       <translation>Auswahl zum Beginn der Dokumenten- oder Anzeigezeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2325" />
-      <location filename="../QScintilla/MiniEditor.py" line="2321" />
+      <location filename="../QScintilla/MiniEditor.py" line="2326" />
+      <location filename="../QScintilla/MiniEditor.py" line="2322" />
       <source>Move to first visible character in display or document line</source>
       <translation>Zum ersten sichtbaren Zeichen der Dokument- oder Anzeigezeile springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2345" />
-      <location filename="../QScintilla/MiniEditor.py" line="2340" />
+      <location filename="../QScintilla/MiniEditor.py" line="2346" />
+      <location filename="../QScintilla/MiniEditor.py" line="2341" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation>Auswahl zum ersten sichtbaren Zeichen der Dokument- oder Anzeigezeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2364" />
-      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2365" />
+      <location filename="../QScintilla/MiniEditor.py" line="2362" />
       <source>Move to end of display or document line</source>
       <translation>Zum Ende der Dokumenten- oder Anzeigezeile springen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2381" />
-      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2382" />
+      <location filename="../QScintilla/MiniEditor.py" line="2379" />
       <source>Extend selection to end of display or document line</source>
       <translation>Auswahl zum Ende der Dokumenten- oder Anzeigezeile erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="2397" />
       <location filename="../QScintilla/MiniEditor.py" line="2396" />
-      <location filename="../QScintilla/MiniEditor.py" line="2395" />
       <source>Stuttered move up one page</source>
       <translation>„Stotternd“ um eine Seite nach oben</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2411" />
-      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2412" />
+      <location filename="../QScintilla/MiniEditor.py" line="2409" />
       <source>Stuttered extend selection up one page</source>
       <translation>Auswahl „stotternd“ um eine Seite nach oben erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2428" />
-      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2429" />
+      <location filename="../QScintilla/MiniEditor.py" line="2426" />
       <source>Stuttered move down one page</source>
       <translation>„Stotternd“ um eine Seite nach unten</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2446" />
+      <location filename="../QScintilla/MiniEditor.py" line="2443" />
       <source>Stuttered extend selection down one page</source>
       <translation>Auswahl „stotternd“ um eine Seite nach unten erweitern</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2462" />
-      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2463" />
+      <location filename="../QScintilla/MiniEditor.py" line="2460" />
       <source>Delete right to end of next word</source>
       <translation>Rechts bis zum Ende des nächsten Wortes löschen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2472" />
+      <location filename="../QScintilla/MiniEditor.py" line="2473" />
       <source>Alt+Del</source>
       <translation>Alt+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2484" />
+      <location filename="../QScintilla/MiniEditor.py" line="2481" />
       <source>Move selected lines up one line</source>
       <translation>Ausgewählte Zeilen um eine Zeile nach oben</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2500" />
-      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2501" />
+      <location filename="../QScintilla/MiniEditor.py" line="2498" />
       <source>Move selected lines down one line</source>
       <translation>Ausgewählte Zeilen um eine Zeile nach unten</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2546" />
+      <location filename="../QScintilla/MiniEditor.py" line="2547" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Suchen&lt;/b&gt;&lt;p&gt;Sucht einen Text im aktuellen Editor. Es wird ein Dialog eingeblendet, in dem der Suchtext und verschieden Suchoptionen eingegeben werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2572" />
+      <location filename="../QScintilla/MiniEditor.py" line="2573" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Weitersuchen&lt;/b&gt;&lt;p&gt;Nach der nächsten Textstelle im aktuellen Editor suchen. Der zuvor eingegebene Suchtext und die Suchoptionen werden weiterverwendet.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2602" />
+      <location filename="../QScintilla/MiniEditor.py" line="2603" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Rückwärtssuchen&lt;/b&gt;&lt;p&gt;Nach der vorherigen Textstelle im aktuellen Editor suchen. Der zuvor eingegebene Suchtext und die Suchoptionen werden weiterverwendet.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2616" />
-      <location filename="../QScintilla/MiniEditor.py" line="2614" />
+      <location filename="../QScintilla/MiniEditor.py" line="2617" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Clear search markers</source>
       <translation>Suchmarkierungen löschen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2618" />
+      <location filename="../QScintilla/MiniEditor.py" line="2619" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation>Ctrl+3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2627" />
+      <location filename="../QScintilla/MiniEditor.py" line="2628" />
       <source>Clear all displayed search markers</source>
       <translation>Löscht alle angezeigten Suchmarkierungen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2632" />
+      <location filename="../QScintilla/MiniEditor.py" line="2633" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Suchmarkierungen löschen&lt;/b&gt;&lt;p&gt;Löscht alle angezeigten Suchmarkierungen.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2642" />
+      <location filename="../QScintilla/MiniEditor.py" line="2643" />
       <source>Replace</source>
       <translation>Ersetzen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2644" />
       <source>&amp;Replace...</source>
       <translation>&amp;Ersetzen...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2645" />
+      <location filename="../QScintilla/MiniEditor.py" line="2646" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation>Ctrl+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2652" />
+      <location filename="../QScintilla/MiniEditor.py" line="2653" />
       <source>Replace some text</source>
       <translation>Ersetzt Text</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2655" />
+      <location filename="../QScintilla/MiniEditor.py" line="2656" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ersetzen&lt;/b&gt;&lt;p&gt;Dies sucht nach Text im aktuellen Editor und ersetzt ihn. Es wird ein Dialog eingeblendet, in dem der Suchtext, der Ersetzungstext und verschieden Such- und Ersetzungsoptionen eingegeben werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2669" />
-      <location filename="../QScintilla/MiniEditor.py" line="2667" />
+      <location filename="../QScintilla/MiniEditor.py" line="2670" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Replace and Search</source>
       <translation>Ersetzen und Suchen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2671" />
+      <location filename="../QScintilla/MiniEditor.py" line="2672" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation>Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2680" />
+      <location filename="../QScintilla/MiniEditor.py" line="2681" />
       <source>Replace the found text and search the next occurrence</source>
       <translation>Erstezt den gefundenen Text und sucht das nächste Vorkommen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2685" />
+      <location filename="../QScintilla/MiniEditor.py" line="2686" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ersetzen und Suchen&lt;/b&gt;&lt;p&gt;Ersetzt den Text an der Fundstelle im aktuellen Editor und sucht das nächste Vorkommen. Der zuvor eingegebene Suchtext und die Suchoptionen werden wiederverwendet.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2701" />
-      <location filename="../QScintilla/MiniEditor.py" line="2699" />
+      <location filename="../QScintilla/MiniEditor.py" line="2702" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Replace Occurrence</source>
       <translation>Fundstelle ersetzen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2703" />
+      <location filename="../QScintilla/MiniEditor.py" line="2704" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation>Ctrl+Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2712" />
+      <location filename="../QScintilla/MiniEditor.py" line="2713" />
       <source>Replace the found text</source>
       <translation>Ersetzt den gefundenen Text</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2715" />
+      <location filename="../QScintilla/MiniEditor.py" line="2716" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Fundstelle ersetzen&lt;/b&gt;&lt;p&gt;Ersetzt den Text an der Fundstelle im aktuellen Editor.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2728" />
-      <location filename="../QScintilla/MiniEditor.py" line="2726" />
+      <location filename="../QScintilla/MiniEditor.py" line="2729" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Replace All</source>
       <translation>Alle ersetzen</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2730" />
+      <location filename="../QScintilla/MiniEditor.py" line="2731" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation>Shift+Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2739" />
+      <location filename="../QScintilla/MiniEditor.py" line="2740" />
       <source>Replace search text occurrences</source>
       <translation>Ersetzt alle Fundstellen des Suchtextes</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2742" />
+      <location filename="../QScintilla/MiniEditor.py" line="2743" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Alle ersetzen&lt;/b&gt;&lt;p&gt;Ersetzt alle Fundstellen des Suchtextes im aktuellen Editor.&lt;/p&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_empty.ts	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/i18n/eric7_empty.ts	Sat Apr 15 18:22:09 2023 +0200
@@ -1716,77 +1716,77 @@
   <context>
     <name>BaseDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="190" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="196" />
       <source>Device Data Not Available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="191" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="197" />
       <source>&lt;p&gt;The device data is not available. Try to connect to the device again. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="244" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="250" />
       <source>Unsupported Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="254" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="260" />
       <source>REPL is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="273" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="279" />
       <source>Plotter is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="292" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="298" />
       <source>Running scripts is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="311" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="317" />
       <source>File Manager is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="366" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="372" />
       <source>Select Device Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="367" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="373" />
       <source>Select the directory for the connected device:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="513" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="519" />
       <source>Detected an error without indications.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1400" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1464" />
       <source>Operation not supported.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>Yes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>No</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>yes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>no</source>
       <translation type="unfinished" />
     </message>
@@ -3944,17 +3944,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="141" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
       <source>WIZnet 5x00 Ethernet</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="143" />
       <source>&lt;p&gt;Support for &lt;b&gt;WIZnet 5x00&lt;/b&gt; Ethernet boards could not be detected. Is the module &lt;b&gt;adafruit_wiznet5k&lt;/b&gt; installed?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="176" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="177" />
       <source>CircuitPython</source>
       <translation type="unfinished" />
     </message>
@@ -4122,114 +4122,114 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1127" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="864" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1128" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="865" />
       <source>unknown ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1576" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1499" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1039" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="960" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1577" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1500" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1040" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="961" />
       <source>The device volume is not available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1003" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="975" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
       <source>Write WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1539" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1005" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="977" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1546" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="984" />
+      <source>Aborted</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1195" />
+      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1266" />
+      <source>CircuitPython does not support reporting of connected clients.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
+      <source>Active</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
+      <source>Connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
+      <source>IPv4 Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
+      <source>Netmask</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
+      <source>Gateway</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
+      <source>DNS</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1677" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
+      <source>Chip Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1358" />
+      <source>max. Sockets</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1538" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1545" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1011" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="983" />
-      <source>Aborted</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1194" />
-      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1265" />
-      <source>CircuitPython does not support reporting of connected clients.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1674" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1349" />
-      <source>Active</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1680" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
-      <source>Connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
-      <source>IPv4 Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
-      <source>Netmask</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
-      <source>Gateway</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
-      <source>DNS</source>
+      <source>Write Connect Script</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1676" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
-      <source>Chip Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
-      <source>max. Sockets</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1537" />
-      <source>Write Connect Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
       <source>Name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1678" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1679" />
       <source>Address Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1682" />
       <source>Advertising</source>
       <translation type="unfinished" />
     </message>
@@ -10195,12 +10195,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1378" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1380" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1379" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1381" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -12035,7 +12035,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9146" />
+      <location filename="../QScintilla/Editor.py" line="9154" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12308,7 +12308,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8264" />
+      <location filename="../QScintilla/Editor.py" line="8272" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation type="unfinished" />
@@ -12369,7 +12369,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5923" />
+      <location filename="../QScintilla/Editor.py" line="5932" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation type="unfinished" />
@@ -12603,356 +12603,356 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5097" />
+      <location filename="../QScintilla/Editor.py" line="5106" />
       <source>Autocompletion</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5098" />
+      <location filename="../QScintilla/Editor.py" line="5107" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5226" />
+      <location filename="../QScintilla/Editor.py" line="5235" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5227" />
+      <location filename="../QScintilla/Editor.py" line="5236" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5519" />
+      <location filename="../QScintilla/Editor.py" line="5528" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5520" />
+      <location filename="../QScintilla/Editor.py" line="5529" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5927" />
+      <location filename="../QScintilla/Editor.py" line="5936" />
       <source>Disable breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6307" />
+      <location filename="../QScintilla/Editor.py" line="6315" />
       <source>Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6308" />
+      <location filename="../QScintilla/Editor.py" line="6316" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="6391" />
       <location filename="../QScintilla/Editor.py" line="6383" />
-      <location filename="../QScintilla/Editor.py" line="6375" />
       <source>Show Code Coverage Annotations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6376" />
-      <source>All lines have been covered.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="6384" />
+      <source>All lines have been covered.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="6392" />
       <source>There is no coverage file available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6488" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <source>Profile Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6489" />
+      <location filename="../QScintilla/Editor.py" line="6497" />
       <source>Please select a profile file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6650" />
-      <location filename="../QScintilla/Editor.py" line="6644" />
+      <location filename="../QScintilla/Editor.py" line="6658" />
+      <location filename="../QScintilla/Editor.py" line="6652" />
       <source>Syntax Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6651" />
+      <location filename="../QScintilla/Editor.py" line="6659" />
       <source>No syntax error message available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
-      <location filename="../QScintilla/Editor.py" line="6856" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6864" />
       <source>Warning</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
       <source>No warning messages available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6926" />
+      <location filename="../QScintilla/Editor.py" line="6934" />
       <source>Style: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6929" />
+      <location filename="../QScintilla/Editor.py" line="6937" />
       <source>Warning: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6936" />
+      <location filename="../QScintilla/Editor.py" line="6944" />
       <source>Error: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Macro Name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Select a macro name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7069" />
+      <location filename="../QScintilla/Editor.py" line="7077" />
       <source>Load macro file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7115" />
-      <location filename="../QScintilla/Editor.py" line="7071" />
+      <location filename="../QScintilla/Editor.py" line="7123" />
+      <location filename="../QScintilla/Editor.py" line="7079" />
       <source>Macro files (*.macro)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7093" />
-      <location filename="../QScintilla/Editor.py" line="7083" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
+      <location filename="../QScintilla/Editor.py" line="7091" />
       <source>Error loading macro</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7084" />
+      <location filename="../QScintilla/Editor.py" line="7092" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7094" />
+      <location filename="../QScintilla/Editor.py" line="7102" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7113" />
+      <location filename="../QScintilla/Editor.py" line="7121" />
       <source>Save macro file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7131" />
+      <location filename="../QScintilla/Editor.py" line="7139" />
       <source>Save macro</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7132" />
+      <location filename="../QScintilla/Editor.py" line="7140" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7147" />
+      <location filename="../QScintilla/Editor.py" line="7155" />
       <source>Error saving macro</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7148" />
+      <location filename="../QScintilla/Editor.py" line="7156" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7161" />
+      <location filename="../QScintilla/Editor.py" line="7169" />
       <source>Start Macro Recording</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7162" />
+      <location filename="../QScintilla/Editor.py" line="7170" />
       <source>Macro recording is already active. Start new?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7188" />
+      <location filename="../QScintilla/Editor.py" line="7196" />
       <source>Macro Recording</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7189" />
+      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7340" />
+      <location filename="../QScintilla/Editor.py" line="7348" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7346" />
+      <location filename="../QScintilla/Editor.py" line="7354" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7353" />
+      <location filename="../QScintilla/Editor.py" line="7361" />
       <source>File changed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7403" />
+      <location filename="../QScintilla/Editor.py" line="7411" />
       <source>{0} (ro)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7708" />
+      <location filename="../QScintilla/Editor.py" line="7716" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7709" />
+      <location filename="../QScintilla/Editor.py" line="7717" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7729" />
+      <location filename="../QScintilla/Editor.py" line="7737" />
       <source>Resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7739" />
       <source>Add file...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7732" />
+      <location filename="../QScintilla/Editor.py" line="7740" />
       <source>Add files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7733" />
+      <location filename="../QScintilla/Editor.py" line="7741" />
       <source>Add aliased file...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7735" />
+      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7738" />
+      <location filename="../QScintilla/Editor.py" line="7746" />
       <source>Add resource frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7765" />
       <source>Add file resource</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7771" />
+      <location filename="../QScintilla/Editor.py" line="7779" />
       <source>Add file resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7795" />
-      <location filename="../QScintilla/Editor.py" line="7789" />
+      <location filename="../QScintilla/Editor.py" line="7803" />
+      <location filename="../QScintilla/Editor.py" line="7797" />
       <source>Add aliased file resource</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7796" />
+      <location filename="../QScintilla/Editor.py" line="7804" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7871" />
+      <location filename="../QScintilla/Editor.py" line="7879" />
       <source>Package Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7872" />
+      <location filename="../QScintilla/Editor.py" line="7880" />
       <source>Include class attributes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7892" />
+      <location filename="../QScintilla/Editor.py" line="7900" />
       <source>Imports Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7893" />
+      <location filename="../QScintilla/Editor.py" line="7901" />
       <source>Include imports from external modules?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7912" />
+      <location filename="../QScintilla/Editor.py" line="7920" />
       <source>Application Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7913" />
+      <location filename="../QScintilla/Editor.py" line="7921" />
       <source>Include module names?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8268" />
+      <location filename="../QScintilla/Editor.py" line="8276" />
       <source>Add to dictionary</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8270" />
+      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8688" />
+      <location filename="../QScintilla/Editor.py" line="8696" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8689" />
+      <location filename="../QScintilla/Editor.py" line="8697" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8782" />
+      <location filename="../QScintilla/Editor.py" line="8790" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8783" />
+      <location filename="../QScintilla/Editor.py" line="8791" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8879" />
+      <location filename="../QScintilla/Editor.py" line="8887" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8885" />
+      <location filename="../QScintilla/Editor.py" line="8893" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8953" />
+      <location filename="../QScintilla/Editor.py" line="8961" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8954" />
+      <location filename="../QScintilla/Editor.py" line="8962" />
       <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" />
     </message>
@@ -18005,12 +18005,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="222" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="225" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -22855,7 +22855,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2719" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished" />
@@ -22918,370 +22918,370 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2277" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2319" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2340" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2341" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2405" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2387" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2388" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2434" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2423" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <source>List Bundle Heads</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
-      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2452" />
-      <source>List Bundle Heads</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2518" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2821" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
       <source>Git Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2747" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2729" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
       <source>Create Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2748" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2765" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2784" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
-      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2810" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3154" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3040" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3041" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3176" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3233" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3264" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3311" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
       <source>Copy Changesets (Cancel)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3429" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3552" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3503" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
       <source>Select a stash (empty for latest stash):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3462" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
       <source>Restore Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3516" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3566" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3602" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3603" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3634" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3743" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
       <source>Performing Repository Housekeeping</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3784" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
       <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3797" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3820" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
       <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3825" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3898" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4005" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4018" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
       <source>All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4022" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
       <source>Submodule Path</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4023" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4072" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4105" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4175" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4136" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4259" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -25606,83 +25606,83 @@
   <context>
     <name>GitProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="473" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="589" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="429" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="324" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="184" />
       <source>Version Control</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="602" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="492" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="340" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="200" />
       <source>Commit changes to repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="609" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="496" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="499" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="347" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="207" />
       <source>Add/Stage to repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="614" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="504" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="352" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="212" />
       <source>Unstage changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="621" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="508" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="511" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="359" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="219" />
       <source>Remove from repository (and disk)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="365" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="225" />
       <source>Remove from repository only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="513" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="230" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="518" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="232" />
       <source>Move</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="523" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="237" />
       <source>Show log browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="372" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="244" />
       <source>Show status</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="635" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="534" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="537" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="251" />
       <source>Show differences</source>
@@ -25694,8 +25694,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="543" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="385" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="263" />
       <source>Show differences (extended)</source>
@@ -25722,71 +25722,71 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="648" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="547" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="550" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="392" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="289" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="656" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="441" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
-      <source>Select all local file entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="558" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="444" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
-      <source>Select all versioned file entries</source>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
+      <source>Select all local file entries</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="662" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="561" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="447" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
+      <source>Select all versioned file entries</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="564" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="450" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="406" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="301" />
       <source>Select all local directory entries</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="666" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="454" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="305" />
       <source>Select all versioned directory entries</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="414" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="309" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="709" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="712" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="699" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="842" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="843" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -30090,27 +30090,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="198" />
+      <location filename="../Globals/__init__.py" line="199" />
       <source>{0:4.2f} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="201" />
+      <location filename="../Globals/__init__.py" line="202" />
       <source>{0:4.2f} KiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="204" />
+      <location filename="../Globals/__init__.py" line="205" />
       <source>{0:4.2f} MiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="207" />
+      <location filename="../Globals/__init__.py" line="208" />
       <source>{0:4.2f} GiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="210" />
+      <location filename="../Globals/__init__.py" line="211" />
       <source>{0:4.2f} TiB</source>
       <translation type="unfinished" />
     </message>
@@ -36295,75 +36295,75 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="692" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="579" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="535" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="431" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="289" />
       <source>Version Control</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="595" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="598" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="305" />
       <source>Commit changes to repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="606" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="455" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="313" />
       <source>Add to repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="722" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="725" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="461" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="319" />
       <source>Remove from repository (and disk)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="986" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="973" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="989" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="976" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="467" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="325" />
       <source>Remove from repository only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="614" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="617" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="330" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="619" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="332" />
       <source>Move</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="621" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="624" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="337" />
       <source>Show log browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="729" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="732" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="474" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="344" />
       <source>Show status</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="736" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="739" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="481" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="351" />
       <source>Show differences</source>
@@ -36375,8 +36375,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="644" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="487" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="363" />
       <source>Show differences (extended)</source>
@@ -36403,95 +36403,95 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="749" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="752" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="494" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="389" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="753" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="756" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="655" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="498" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="393" />
       <source>Conflicts resolved</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="755" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="654" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="657" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="500" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="395" />
       <source>Conflicts unresolved</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="757" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="656" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="760" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="502" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="397" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="660" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="547" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
-      <source>Select all local file entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="764" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="663" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="550" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
-      <source>Select all versioned file entries</source>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
+      <source>Select all local file entries</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="767" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="553" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
+      <source>Select all versioned file entries</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="556" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="407" />
       <source>Select all local directory entries</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="560" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="411" />
       <source>Select all versioned directory entries</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="775" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="674" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="561" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="778" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="677" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="564" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="520" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="415" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="890" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="893" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="891" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="894" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="987" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="990" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="977" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation type="unfinished" />
     </message>
@@ -50594,43 +50594,43 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="594" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="592" />
       <source>Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="599" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="597" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="603" />
       <source>Paste</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="612" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="610" />
       <source>Select All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="638" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="636" />
       <source>Press to disconnect the current device</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="643" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="641" />
       <source>Press to connect the selected device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="675" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="673" />
       <source>No device attached</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="674" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -50639,90 +50639,90 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="705" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="703" />
       <source>Start REPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="706" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="704" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1234" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1223" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1224" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1235" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1233" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1293" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1284" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1282" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
       <source>Run Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1276" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
       <source>There is no editor open. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1285" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1283" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1292" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
       <source>Start Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1329" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1346" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1344" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1363" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1361" />
       <source>Unsaved Chart Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1364" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1362" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1412" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1410" />
       <source>Start File Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1413" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1411" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1433" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1431" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
@@ -50747,7 +50747,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1735" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1554" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
@@ -50773,207 +50773,213 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2138" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1578" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1570" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2150" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2183" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2180" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1574" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1955" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1580" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1959" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1979" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1970" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1983" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1974" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1588" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1609" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
-      <source>Show Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
-      <source>Convert To UF2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1616" />
-      <source>Flash UF2 Device</source>
+      <source>Show Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1619" />
+      <source>Convert To UF2</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1620" />
+      <source>Flash UF2 Device</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1623" />
       <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1622" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1626" />
       <source>Ignored Serial Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1625" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1629" />
       <source>Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1634" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1638" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1649" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1645" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1641" />
       <source>Device Version Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1646" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1650" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1670" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1674" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1666" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1680" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1683" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1696" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1687" />
       <source>Device Implementation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1688" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1693" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1697" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1736" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1754" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1758" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1762" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1766" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1782" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1794" />
       <source>Local Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1795" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1832" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1815" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1836" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1819" />
       <source>Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1816" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1820" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1837" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1857" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1861" />
       <source>Error handling device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1858" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1862" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1900" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1904" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1926" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1930" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1940" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1945" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1949" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1971" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1975" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2063" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2067" />
       <source>Add Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2068" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2113" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2117" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2151" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2169" />
+      <source>Package '{0}' was installed successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2184" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -51026,198 +51032,198 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="108" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="110" />
       <source>BBC micro:bit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="111" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="113" />
       <source>Calliope mini</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="208" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="210" />
       <source>BBC micro:bit/Calliope Functions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="421" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="409" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="392" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="211" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="411" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="213" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="215" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="217" />
       <source>Flash MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="218" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="220" />
       <source>Flash Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="496" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="222" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="498" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="224" />
       <source>Save Script as 'main.py'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="225" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="227" />
       <source>Save the current script as 'main.py' on the connected device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="229" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="231" />
       <source>Reset {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="375" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="366" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="352" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="335" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="322" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="302" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="377" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="354" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="337" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="324" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="304" />
       <source>Flash MicroPython/Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="303" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="305" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed and plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;See the &lt;a href="https://microbit.org/guide/firmware/"&gt;micro:bit web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="323" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="325" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MICROBIT is available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="336" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="338" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed an plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="353" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="355" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MINI is available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="370" />
       <source>MicroPython/Firmware Files (*.hex *.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="376" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="378" />
       <source>There are multiple devices ready for flashing. Please make sure, that only one device is prepared.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="395" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="410" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="412" />
       <source>&lt;p&gt;The BBC micro:bit generation cannot be determined. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="424" />
       <source>&lt;p&gt;The firmware URL for the device type &lt;b&gt;{0}&lt;/b&gt; is not known. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="452" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="466" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="468" />
       <source>Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="469" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="471" />
       <source>&lt;h4&gt;{0} Version Information&lt;br/&gt;(BBC micro:bit v{1})&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="478" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="480" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="484" />
       <source>{0} Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="502" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="504" />
       <source>The current editor does not contain a Python script. Write it anyway?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="513" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="515" />
       <source>The script is empty. Aborting.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="567" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="569" />
       <source>MicroPython Firmware for BBC micro:bit V1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="599" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="586" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="571" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="601" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="588" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="573" />
       <source>DAPLink Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="578" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="580" />
       <source>MicroPython Firmware for BBC micro:bit V2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="582" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="584" />
       <source>CircuitPython Firmware for BBC micro:bit V2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="595" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="597" />
       <source>MicroPython Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="818" />
-      <source>Active</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="819" />
-      <source>Name</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="820" />
-      <source>MAC-Address</source>
+      <source>Active</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="821" />
+      <source>Name</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="822" />
-      <source>Address Type</source>
+      <source>MAC-Address</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="824" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="826" />
       <source>Connected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="825" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="827" />
       <source>Advertising</source>
       <translation type="unfinished" />
     </message>
@@ -51315,720 +51321,740 @@
   <context>
     <name>MiniEditor</name>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="459" />
+      <location filename="../QScintilla/MiniEditor.py" line="460" />
       <source>About eric Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="461" />
       <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don't need the power of a full blown editor.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="529" />
+      <location filename="../QScintilla/MiniEditor.py" line="530" />
       <source>Line: {0:5}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="533" />
+      <location filename="../QScintilla/MiniEditor.py" line="534" />
       <source>Pos: {0:5}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="547" />
+      <location filename="../QScintilla/MiniEditor.py" line="548" />
       <source>Language: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="610" />
       <source>New</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="611" />
-      <source>&amp;New</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="612" />
+      <source>&amp;New</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="613" />
       <source>Ctrl+N</source>
       <comment>File|New</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="617" />
+      <location filename="../QScintilla/MiniEditor.py" line="618" />
       <source>Open an empty editor window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="619" />
+      <location filename="../QScintilla/MiniEditor.py" line="620" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="625" />
+      <location filename="../QScintilla/MiniEditor.py" line="626" />
       <source>Open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="627" />
-      <source>&amp;Open...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="628" />
+      <source>&amp;Open...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="629" />
       <source>Ctrl+O</source>
       <comment>File|Open</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="633" />
+      <location filename="../QScintilla/MiniEditor.py" line="634" />
       <source>Open a file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="635" />
+      <location filename="../QScintilla/MiniEditor.py" line="636" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="644" />
+      <location filename="../QScintilla/MiniEditor.py" line="645" />
       <source>Save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="646" />
-      <source>&amp;Save</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="647" />
+      <source>&amp;Save</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="648" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="652" />
+      <location filename="../QScintilla/MiniEditor.py" line="653" />
       <source>Save the current file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="654" />
+      <location filename="../QScintilla/MiniEditor.py" line="655" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="663" />
+      <location filename="../QScintilla/MiniEditor.py" line="664" />
       <source>Save as</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="665" />
-      <source>Save &amp;as...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="666" />
+      <source>Save &amp;as...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="667" />
       <source>Shift+Ctrl+S</source>
       <comment>File|Save As</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="671" />
+      <location filename="../QScintilla/MiniEditor.py" line="672" />
       <source>Save the current file to a new one</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="673" />
+      <location filename="../QScintilla/MiniEditor.py" line="674" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="683" />
+      <location filename="../QScintilla/MiniEditor.py" line="684" />
       <source>Save Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="686" />
       <source>Save &amp;Copy...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="691" />
+      <location filename="../QScintilla/MiniEditor.py" line="692" />
       <source>Save a copy of the current file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="693" />
+      <location filename="../QScintilla/MiniEditor.py" line="694" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="703" />
+      <location filename="../QScintilla/MiniEditor.py" line="704" />
       <source>Close</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="705" />
-      <source>&amp;Close</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="706" />
+      <source>&amp;Close</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="707" />
       <source>Ctrl+W</source>
       <comment>File|Close</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="711" />
+      <location filename="../QScintilla/MiniEditor.py" line="712" />
       <source>Close the editor window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="713" />
+      <location filename="../QScintilla/MiniEditor.py" line="714" />
       <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="719" />
+      <location filename="../QScintilla/MiniEditor.py" line="720" />
       <source>Print</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="721" />
-      <source>&amp;Print</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="722" />
+      <source>&amp;Print</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="723" />
       <source>Ctrl+P</source>
       <comment>File|Print</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="727" />
+      <location filename="../QScintilla/MiniEditor.py" line="728" />
       <source>Print the current file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="729" />
+      <location filename="../QScintilla/MiniEditor.py" line="730" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="738" />
+      <location filename="../QScintilla/MiniEditor.py" line="739" />
       <source>Print Preview</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="747" />
       <source>Print preview of the current file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="748" />
+      <location filename="../QScintilla/MiniEditor.py" line="749" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="761" />
+      <location filename="../QScintilla/MiniEditor.py" line="762" />
       <source>Undo</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="763" />
-      <source>&amp;Undo</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="764" />
-      <source>Ctrl+Z</source>
-      <comment>Edit|Undo</comment>
+      <source>&amp;Undo</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="765" />
+      <source>Ctrl+Z</source>
+      <comment>Edit|Undo</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="766" />
       <source>Alt+Backspace</source>
       <comment>Edit|Undo</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="769" />
+      <location filename="../QScintilla/MiniEditor.py" line="770" />
       <source>Undo the last change</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="771" />
+      <location filename="../QScintilla/MiniEditor.py" line="772" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="780" />
+      <location filename="../QScintilla/MiniEditor.py" line="781" />
       <source>Redo</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="782" />
-      <source>&amp;Redo</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="783" />
+      <source>&amp;Redo</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="784" />
       <source>Ctrl+Shift+Z</source>
       <comment>Edit|Redo</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="788" />
+      <location filename="../QScintilla/MiniEditor.py" line="789" />
       <source>Redo the last change</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="790" />
+      <location filename="../QScintilla/MiniEditor.py" line="791" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="799" />
+      <location filename="../QScintilla/MiniEditor.py" line="800" />
       <source>Cut</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="801" />
-      <source>Cu&amp;t</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="802" />
-      <source>Ctrl+X</source>
-      <comment>Edit|Cut</comment>
+      <source>Cu&amp;t</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="803" />
+      <source>Ctrl+X</source>
+      <comment>Edit|Cut</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="804" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="807" />
+      <location filename="../QScintilla/MiniEditor.py" line="808" />
       <source>Cut the selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="809" />
+      <location filename="../QScintilla/MiniEditor.py" line="810" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="819" />
+      <location filename="../QScintilla/MiniEditor.py" line="820" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="821" />
-      <source>&amp;Copy</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="822" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
+      <source>&amp;Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="823" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="824" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="827" />
+      <location filename="../QScintilla/MiniEditor.py" line="828" />
       <source>Copy the selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="829" />
+      <location filename="../QScintilla/MiniEditor.py" line="830" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="839" />
+      <location filename="../QScintilla/MiniEditor.py" line="840" />
       <source>Paste</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="841" />
-      <source>&amp;Paste</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="842" />
-      <source>Ctrl+V</source>
-      <comment>Edit|Paste</comment>
+      <source>&amp;Paste</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="843" />
+      <source>Ctrl+V</source>
+      <comment>Edit|Paste</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="844" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="847" />
+      <location filename="../QScintilla/MiniEditor.py" line="848" />
       <source>Paste the last cut/copied text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="849" />
+      <location filename="../QScintilla/MiniEditor.py" line="850" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="859" />
+      <location filename="../QScintilla/MiniEditor.py" line="860" />
       <source>Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="861" />
-      <source>Cl&amp;ear</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="862" />
+      <source>Cl&amp;ear</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="863" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="867" />
+      <location filename="../QScintilla/MiniEditor.py" line="868" />
       <source>Clear all text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="869" />
+      <location filename="../QScintilla/MiniEditor.py" line="870" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>About</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>&amp;About</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2863" />
+      <location filename="../QScintilla/MiniEditor.py" line="2864" />
       <source>Display information about this software</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2865" />
+      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About &amp;Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2877" />
+      <location filename="../QScintilla/MiniEditor.py" line="2878" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2880" />
+      <location filename="../QScintilla/MiniEditor.py" line="2881" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2889" />
+      <location filename="../QScintilla/MiniEditor.py" line="2890" />
       <source>What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2891" />
-      <source>&amp;What's This?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <source>&amp;What's This?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2893" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2897" />
+      <location filename="../QScintilla/MiniEditor.py" line="2898" />
       <source>Context sensitive help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2899" />
+      <location filename="../QScintilla/MiniEditor.py" line="2900" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What'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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2918" />
       <source>Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2920" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2925" />
+      <location filename="../QScintilla/MiniEditor.py" line="2926" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2927" />
+      <location filename="../QScintilla/MiniEditor.py" line="2928" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2941" />
+      <location filename="../QScintilla/MiniEditor.py" line="2942" />
       <source>&amp;File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2953" />
+      <location filename="../QScintilla/MiniEditor.py" line="2954" />
       <source>&amp;Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2963" />
+      <location filename="../QScintilla/MiniEditor.py" line="2964" />
       <source>&amp;Search</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2974" />
       <source>&amp;View</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2979" />
+      <location filename="../QScintilla/MiniEditor.py" line="2980" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2985" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2996" />
+      <location filename="../QScintilla/MiniEditor.py" line="2997" />
       <source>File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3008" />
+      <location filename="../QScintilla/MiniEditor.py" line="3009" />
       <source>Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3017" />
+      <location filename="../QScintilla/MiniEditor.py" line="3018" />
       <source>Search</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3023" />
+      <location filename="../QScintilla/MiniEditor.py" line="3024" />
       <source>View</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3029" />
+      <location filename="../QScintilla/MiniEditor.py" line="3030" />
       <source>Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3032" />
+      <location filename="../QScintilla/MiniEditor.py" line="3033" />
       <source>Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3045" />
+      <location filename="../QScintilla/MiniEditor.py" line="3046" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3055" />
+      <location filename="../QScintilla/MiniEditor.py" line="3056" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3064" />
+      <location filename="../QScintilla/MiniEditor.py" line="3065" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3073" />
+      <location filename="../QScintilla/MiniEditor.py" line="3074" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3087" />
+      <location filename="../QScintilla/MiniEditor.py" line="3088" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3094" />
+      <location filename="../QScintilla/MiniEditor.py" line="3095" />
       <source>Ready</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3169" />
-      <source>eric Mini Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <source>eric Mini Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3171" />
       <source>The document has unsaved changes.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3197" />
-      <source>Open File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <source>Open File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3199" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3226" />
+      <location filename="../QScintilla/MiniEditor.py" line="3227" />
       <source>File loaded</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3307" />
-      <source>Save File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <source>Save File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3309" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3314" />
+      <location filename="../QScintilla/MiniEditor.py" line="3315" />
       <source>File saved</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>[*] - {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3683" />
-      <location filename="../QScintilla/MiniEditor.py" line="3654" />
-      <location filename="../QScintilla/MiniEditor.py" line="3338" />
+      <location filename="../QScintilla/MiniEditor.py" line="3684" />
+      <location filename="../QScintilla/MiniEditor.py" line="3655" />
+      <location filename="../QScintilla/MiniEditor.py" line="3339" />
       <source>Untitled</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
       <source>{0}[*] - {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3649" />
+      <location filename="../QScintilla/MiniEditor.py" line="3650" />
       <source>Printing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3665" />
+      <location filename="../QScintilla/MiniEditor.py" line="3666" />
       <source>Printing completed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3667" />
+      <location filename="../QScintilla/MiniEditor.py" line="3668" />
       <source>Error while printing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3670" />
+      <location filename="../QScintilla/MiniEditor.py" line="3671" />
       <source>Printing aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3724" />
-      <source>Select all</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <source>Select all</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3726" />
       <source>Deselect all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3738" />
+      <location filename="../QScintilla/MiniEditor.py" line="3739" />
       <source>Languages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3741" />
+      <location filename="../QScintilla/MiniEditor.py" line="3742" />
       <source>No Language</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3763" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Guessed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3785" />
-      <location filename="../QScintilla/MiniEditor.py" line="3767" />
+      <location filename="../QScintilla/MiniEditor.py" line="3786" />
+      <location filename="../QScintilla/MiniEditor.py" line="3768" />
       <source>Alternatives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3783" />
       <source>Alternatives ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3813" />
-      <source>Pygments Lexer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <source>Pygments Lexer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3815" />
       <source>Select the Pygments lexer to apply.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4326" />
+      <location filename="../QScintilla/MiniEditor.py" line="4336" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4327" />
+      <location filename="../QScintilla/MiniEditor.py" line="4337" />
       <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" />
     </message>
   </context>
   <context>
+    <name>MipLocalInstaller</name>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="185" />
+      <source>Unable to find 'lib' in sys.path. Please enter a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="229" />
+      <source>
+
+Package may be partially installed.</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>MipPackageDialog</name>
     <message>
+      <location filename="../MicroPython/MipPackageDialog.py" line="34" />
+      <source>Enter the URL of the package index. Leave empty to use the default index ({0}).</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
       <source>Install Package</source>
       <translation type="unfinished" />
@@ -52063,6 +52089,21 @@
       <source>Install .mpy File</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Target Directory:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Enter the directory to install to (must be contained in sys.path). Leave empty to detect automatically.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Package Index:</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>MiscellaneousChecker</name>
@@ -52722,194 +52763,194 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="603" />
-      <location filename="../MultiProject/MultiProject.py" line="593" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="591" />
       <source>Multi Project Files (*.emj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="599" />
       <source>Save Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="617" />
+      <location filename="../MultiProject/MultiProject.py" line="615" />
       <source>Save File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="618" />
+      <location filename="../MultiProject/MultiProject.py" line="616" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="644" />
+      <location filename="../MultiProject/MultiProject.py" line="642" />
       <source>Close Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="645" />
+      <location filename="../MultiProject/MultiProject.py" line="643" />
       <source>The current multiproject has unsaved changes.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="696" />
+      <source>New multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="698" />
-      <source>New multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>&amp;New...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="704" />
+      <source>Generate a new multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="706" />
-      <source>Generate a new multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="716" />
+      <source>Open multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="718" />
-      <source>Open multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="720" />
       <source>&amp;Open...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="724" />
+      <source>Open an existing multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="726" />
-      <source>Open an existing multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="728" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="732" />
+      <source>Close multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="734" />
-      <source>Close multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&amp;Close</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="740" />
+      <source>Close the current multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="742" />
-      <source>Close the current multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="748" />
+      <source>Save multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="750" />
-      <source>Save multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="752" />
       <source>&amp;Save</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="756" />
+      <source>Save the current multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="758" />
-      <source>Save the current multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="760" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <source>Save multiproject as</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="766" />
-      <source>Save multiproject as</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="768" />
       <source>Save &amp;as...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="775" />
+      <location filename="../MultiProject/MultiProject.py" line="773" />
       <source>Save the current multiproject to a new file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="778" />
+      <location filename="../MultiProject/MultiProject.py" line="776" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="785" />
+      <source>Add project to multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="787" />
-      <source>Add project to multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="789" />
       <source>Add &amp;project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="796" />
+      <location filename="../MultiProject/MultiProject.py" line="794" />
       <source>Add a project to the current multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="799" />
+      <location filename="../MultiProject/MultiProject.py" line="797" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="807" />
+      <source>Multiproject properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="809" />
-      <source>Multiproject properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="811" />
       <source>&amp;Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="815" />
+      <source>Show the multiproject properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="817" />
-      <source>Show the multiproject properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="840" />
+      <location filename="../MultiProject/MultiProject.py" line="838" />
       <source>&amp;Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="841" />
+      <location filename="../MultiProject/MultiProject.py" line="839" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="880" />
       <location filename="../MultiProject/MultiProject.py" line="878" />
+      <location filename="../MultiProject/MultiProject.py" line="876" />
       <source>Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="935" />
+      <location filename="../MultiProject/MultiProject.py" line="933" />
       <source>&amp;Clear</source>
       <translation type="unfinished" />
     </message>
@@ -68776,7 +68817,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="417" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="415" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -68787,7 +68828,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="381" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="379" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="367" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="349" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="239" />
@@ -68825,42 +68866,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="380" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="378" />
       <source>'st-flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="400" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="398" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="401" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="399" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="416" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="444" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="460" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="462" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -69314,49 +69355,49 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="155" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="154" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="151" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="150" />
       <source>Find Next</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="168" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="167" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="164" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="163" />
       <source>Find Prev</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="181" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="180" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="177" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="176" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="197" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="196" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="191" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="190" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="211" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="210" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="205" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="204" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1048" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1045" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="597" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="559" />
       <source>'{0}' was not found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1201" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1198" />
       <source>Replaced {0} occurrences.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1207" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1204" />
       <source>Nothing replaced because '{0}' was not found.</source>
       <translation type="unfinished" />
     </message>
@@ -77065,50 +77106,50 @@
   <context>
     <name>SvnProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="734" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="591" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="594" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="547" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="394" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="593" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="546" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="596" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="549" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="399" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="210" />
       <source>Version Control</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="750" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="607" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="753" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="610" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="224" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="758" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="761" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="415" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="226" />
       <source>Update from repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="756" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="616" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="416" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="230" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="764" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="615" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="767" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="618" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="421" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="232" />
       <source>Commit changes to repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="763" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="620" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="623" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="423" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="237" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="622" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="625" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="428" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="239" />
       <source>Add to repository</source>
@@ -77123,90 +77164,90 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="769" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="626" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="772" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="629" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="436" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="250" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="441" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="252" />
       <source>Remove from repository (and disk)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="634" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="255" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="257" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="257" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="259" />
       <source>Move</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="776" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="779" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="641" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="443" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="262" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="784" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="787" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="643" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="448" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="264" />
       <source>Add to Changelist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="780" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="783" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="645" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="266" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="788" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="647" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="452" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="268" />
       <source>Remove from Changelist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="272" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="650" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="653" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="274" />
       <source>Show log browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="786" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="655" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="658" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="453" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="279" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="794" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="660" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="281" />
       <source>Show status</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="663" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="287" />
       <source>Show repository info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="793" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="662" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="665" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="801" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="670" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="673" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="465" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="294" />
       <source>Show differences</source>
@@ -77219,12 +77260,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="799" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="802" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="671" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="466" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="298" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="807" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="810" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="679" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="471" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="306" />
       <source>Show differences (extended)</source>
@@ -77237,12 +77278,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="805" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="472" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="310" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="813" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="685" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="477" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="318" />
       <source>Show differences (URLs)</source>
@@ -77255,34 +77296,34 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="812" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="681" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="815" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="684" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="479" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="319" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="820" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="689" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="823" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="692" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="484" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="327" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="818" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="690" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="826" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="829" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="333" />
       <source>Merge changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="822" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="691" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="483" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="329" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="830" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="699" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="488" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="337" />
       <source>Conflicts resolved</source>
@@ -77321,106 +77362,106 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="828" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="697" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="510" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="356" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="836" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="361" />
       <source>Set Property</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="827" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="830" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="699" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="358" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="835" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="838" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="707" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="363" />
       <source>List Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="829" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="698" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="832" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="701" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="360" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="837" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="709" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="365" />
       <source>Delete Property</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="559" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="841" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="710" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="561" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
-      <source>Select all local file entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="836" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="562" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="844" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="713" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
-      <source>Select all versioned file entries</source>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
+      <source>Select all local file entries</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="839" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="708" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="847" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="716" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="567" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
+      <source>Select all versioned file entries</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="842" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="570" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="526" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="375" />
       <source>Select all local directory entries</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="843" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="712" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="846" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="715" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="572" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="528" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="374" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="851" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="720" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="571" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="854" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="723" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="574" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="379" />
       <source>Select all versioned directory entries</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="847" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="576" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="532" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="378" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="855" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="724" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="575" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="858" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="727" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="578" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="534" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="383" />
       <source>Configure...</source>
@@ -89927,8 +89968,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
+      <location filename="../QScintilla/MiniEditor.py" line="1685" />
       <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/MiniEditor.py" line="1683" />
       <location filename="../QScintilla/ShellWindow.py" line="435" />
       <location filename="../QScintilla/ShellWindow.py" line="434" />
       <source>Delete current line</source>
@@ -89936,7 +89977,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
+      <location filename="../QScintilla/MiniEditor.py" line="1686" />
       <location filename="../QScintilla/ShellWindow.py" line="436" />
       <source>Ctrl+Shift+L</source>
       <translation type="unfinished" />
@@ -89944,8 +89985,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="1207" />
       <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/MiniEditor.py" line="1205" />
       <location filename="../QScintilla/ShellWindow.py" line="447" />
       <location filename="../QScintilla/ShellWindow.py" line="446" />
       <source>Indent one level</source>
@@ -89953,7 +89994,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
+      <location filename="../QScintilla/MiniEditor.py" line="1208" />
       <location filename="../QScintilla/ShellWindow.py" line="448" />
       <source>Tab</source>
       <translation type="unfinished" />
@@ -89961,8 +90002,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
+      <location filename="../QScintilla/MiniEditor.py" line="1673" />
       <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1671" />
       <location filename="../QScintilla/ShellWindow.py" line="459" />
       <location filename="../QScintilla/ShellWindow.py" line="458" />
       <source>Insert new line</source>
@@ -89970,14 +90011,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
+      <location filename="../QScintilla/MiniEditor.py" line="1674" />
       <location filename="../QScintilla/ShellWindow.py" line="460" />
       <source>Return</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
+      <location filename="../QScintilla/MiniEditor.py" line="1675" />
       <location filename="../QScintilla/ShellWindow.py" line="461" />
       <source>Enter</source>
       <translation type="unfinished" />
@@ -89985,8 +90026,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
+      <location filename="../QScintilla/MiniEditor.py" line="1559" />
       <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1557" />
       <location filename="../QScintilla/ShellWindow.py" line="471" />
       <location filename="../QScintilla/ShellWindow.py" line="470" />
       <source>Delete previous character</source>
@@ -89994,21 +90035,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
+      <location filename="../QScintilla/MiniEditor.py" line="1560" />
       <location filename="../QScintilla/ShellWindow.py" line="472" />
       <source>Backspace</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1566" />
+      <location filename="../QScintilla/MiniEditor.py" line="1567" />
       <location filename="../QScintilla/ShellWindow.py" line="479" />
       <source>Meta+H</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1571" />
+      <location filename="../QScintilla/MiniEditor.py" line="1572" />
       <location filename="../QScintilla/ShellWindow.py" line="484" />
       <source>Shift+Backspace</source>
       <translation type="unfinished" />
@@ -90016,8 +90057,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
+      <location filename="../QScintilla/MiniEditor.py" line="1597" />
       <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1595" />
       <location filename="../QScintilla/ShellWindow.py" line="493" />
       <location filename="../QScintilla/ShellWindow.py" line="492" />
       <source>Delete current character</source>
@@ -90025,14 +90066,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
+      <location filename="../QScintilla/MiniEditor.py" line="1598" />
       <location filename="../QScintilla/ShellWindow.py" line="494" />
       <source>Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1604" />
+      <location filename="../QScintilla/MiniEditor.py" line="1605" />
       <location filename="../QScintilla/ShellWindow.py" line="501" />
       <source>Meta+D</source>
       <translation type="unfinished" />
@@ -90040,8 +90081,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
+      <location filename="../QScintilla/MiniEditor.py" line="1613" />
       <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/MiniEditor.py" line="1611" />
       <location filename="../QScintilla/ShellWindow.py" line="509" />
       <location filename="../QScintilla/ShellWindow.py" line="508" />
       <source>Delete word to left</source>
@@ -90049,7 +90090,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1614" />
       <location filename="../QScintilla/ShellWindow.py" line="510" />
       <source>Ctrl+Backspace</source>
       <translation type="unfinished" />
@@ -90057,8 +90098,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1625" />
       <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/MiniEditor.py" line="1623" />
       <location filename="../QScintilla/ShellWindow.py" line="521" />
       <location filename="../QScintilla/ShellWindow.py" line="520" />
       <source>Delete word to right</source>
@@ -90066,7 +90107,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
+      <location filename="../QScintilla/MiniEditor.py" line="1626" />
       <location filename="../QScintilla/ShellWindow.py" line="522" />
       <source>Ctrl+Del</source>
       <translation type="unfinished" />
@@ -90074,8 +90115,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
+      <location filename="../QScintilla/MiniEditor.py" line="1637" />
       <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/MiniEditor.py" line="1635" />
       <location filename="../QScintilla/ShellWindow.py" line="533" />
       <location filename="../QScintilla/ShellWindow.py" line="532" />
       <source>Delete line to left</source>
@@ -90083,7 +90124,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1638" />
+      <location filename="../QScintilla/MiniEditor.py" line="1639" />
       <location filename="../QScintilla/ShellWindow.py" line="535" />
       <source>Ctrl+Shift+Backspace</source>
       <translation type="unfinished" />
@@ -90091,8 +90132,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
+      <location filename="../QScintilla/MiniEditor.py" line="1651" />
       <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/MiniEditor.py" line="1649" />
       <location filename="../QScintilla/ShellWindow.py" line="547" />
       <location filename="../QScintilla/ShellWindow.py" line="546" />
       <source>Delete line to right</source>
@@ -90100,14 +90141,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1658" />
+      <location filename="../QScintilla/MiniEditor.py" line="1659" />
       <location filename="../QScintilla/ShellWindow.py" line="555" />
       <source>Meta+K</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1663" />
+      <location filename="../QScintilla/MiniEditor.py" line="1664" />
       <location filename="../QScintilla/ShellWindow.py" line="560" />
       <source>Ctrl+Shift+Del</source>
       <translation type="unfinished" />
@@ -90115,8 +90156,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
+      <location filename="../QScintilla/MiniEditor.py" line="895" />
       <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/MiniEditor.py" line="893" />
       <location filename="../QScintilla/ShellWindow.py" line="569" />
       <location filename="../QScintilla/ShellWindow.py" line="568" />
       <source>Move left one character</source>
@@ -90124,14 +90165,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
+      <location filename="../QScintilla/MiniEditor.py" line="896" />
       <location filename="../QScintilla/ShellWindow.py" line="570" />
       <source>Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="904" />
       <location filename="../QScintilla/ShellWindow.py" line="578" />
       <source>Meta+B</source>
       <translation type="unfinished" />
@@ -90139,8 +90180,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="911" />
       <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/MiniEditor.py" line="909" />
       <location filename="../QScintilla/ShellWindow.py" line="585" />
       <location filename="../QScintilla/ShellWindow.py" line="584" />
       <source>Move right one character</source>
@@ -90148,14 +90189,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
+      <location filename="../QScintilla/MiniEditor.py" line="912" />
       <location filename="../QScintilla/ShellWindow.py" line="586" />
       <source>Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="918" />
+      <location filename="../QScintilla/MiniEditor.py" line="919" />
       <location filename="../QScintilla/ShellWindow.py" line="593" />
       <source>Meta+F</source>
       <translation type="unfinished" />
@@ -90163,8 +90204,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="991" />
       <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/MiniEditor.py" line="989" />
       <location filename="../QScintilla/ShellWindow.py" line="601" />
       <location filename="../QScintilla/ShellWindow.py" line="600" />
       <source>Move left one word</source>
@@ -90173,8 +90214,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="998" />
-      <location filename="../QScintilla/MiniEditor.py" line="966" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/MiniEditor.py" line="967" />
       <location filename="../QScintilla/ShellWindow.py" line="609" />
       <source>Alt+Left</source>
       <translation type="unfinished" />
@@ -90182,8 +90223,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1058" />
-      <location filename="../QScintilla/MiniEditor.py" line="1002" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
+      <location filename="../QScintilla/MiniEditor.py" line="1003" />
       <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Ctrl+Left</source>
       <translation type="unfinished" />
@@ -90191,8 +90232,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
+      <location filename="../QScintilla/MiniEditor.py" line="1011" />
       <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/MiniEditor.py" line="1009" />
       <location filename="../QScintilla/ShellWindow.py" line="621" />
       <location filename="../QScintilla/ShellWindow.py" line="620" />
       <source>Move right one word</source>
@@ -90201,8 +90242,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1812" />
-      <location filename="../QScintilla/MiniEditor.py" line="1022" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="1023" />
       <location filename="../QScintilla/ShellWindow.py" line="629" />
       <source>Ctrl+Right</source>
       <translation type="unfinished" />
@@ -90210,8 +90251,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1032" />
-      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1033" />
+      <location filename="../QScintilla/MiniEditor.py" line="1030" />
       <location filename="../QScintilla/ShellWindow.py" line="639" />
       <location filename="../QScintilla/ShellWindow.py" line="636" />
       <source>Move to first visible character in document line</source>
@@ -90220,8 +90261,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2073" />
-      <location filename="../QScintilla/MiniEditor.py" line="1042" />
+      <location filename="../QScintilla/MiniEditor.py" line="2074" />
+      <location filename="../QScintilla/MiniEditor.py" line="1043" />
       <location filename="../QScintilla/ShellWindow.py" line="649" />
       <source>Home</source>
       <translation type="unfinished" />
@@ -90229,8 +90270,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
+      <location filename="../QScintilla/MiniEditor.py" line="1071" />
       <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/MiniEditor.py" line="1069" />
       <location filename="../QScintilla/ShellWindow.py" line="657" />
       <location filename="../QScintilla/ShellWindow.py" line="656" />
       <source>Move to end of document line</source>
@@ -90238,7 +90279,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1078" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
       <location filename="../QScintilla/ShellWindow.py" line="665" />
       <source>Meta+E</source>
       <translation type="unfinished" />
@@ -90246,8 +90287,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1083" />
       <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>End</source>
       <translation type="unfinished" />
@@ -90255,8 +90296,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="927" />
       <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/MiniEditor.py" line="925" />
       <location filename="../QScintilla/ShellWindow.py" line="677" />
       <location filename="../QScintilla/ShellWindow.py" line="676" />
       <source>Move up one line</source>
@@ -90264,14 +90305,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
+      <location filename="../QScintilla/MiniEditor.py" line="928" />
       <location filename="../QScintilla/ShellWindow.py" line="678" />
       <source>Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="934" />
+      <location filename="../QScintilla/MiniEditor.py" line="935" />
       <location filename="../QScintilla/ShellWindow.py" line="685" />
       <source>Meta+P</source>
       <translation type="unfinished" />
@@ -90279,8 +90320,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
+      <location filename="../QScintilla/MiniEditor.py" line="943" />
       <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/MiniEditor.py" line="941" />
       <location filename="../QScintilla/ShellWindow.py" line="693" />
       <location filename="../QScintilla/ShellWindow.py" line="692" />
       <source>Move down one line</source>
@@ -90288,14 +90329,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="944" />
       <location filename="../QScintilla/ShellWindow.py" line="694" />
       <source>Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="950" />
+      <location filename="../QScintilla/MiniEditor.py" line="951" />
       <location filename="../QScintilla/ShellWindow.py" line="701" />
       <source>Meta+N</source>
       <translation type="unfinished" />
@@ -90303,8 +90344,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1194" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
+      <location filename="../QScintilla/MiniEditor.py" line="1092" />
       <location filename="../QScintilla/ShellWindow.py" line="710" />
       <source>Ctrl+Down</source>
       <translation type="unfinished" />
@@ -90312,8 +90353,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1174" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
+      <location filename="../QScintilla/MiniEditor.py" line="1104" />
       <location filename="../QScintilla/ShellWindow.py" line="722" />
       <source>Ctrl+Up</source>
       <translation type="unfinished" />
@@ -90321,8 +90362,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1139" />
       <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/MiniEditor.py" line="1137" />
       <location filename="../QScintilla/ShellWindow.py" line="733" />
       <location filename="../QScintilla/ShellWindow.py" line="732" />
       <source>Move up one page</source>
@@ -90330,7 +90371,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
+      <location filename="../QScintilla/MiniEditor.py" line="1140" />
       <location filename="../QScintilla/ShellWindow.py" line="734" />
       <source>PgUp</source>
       <translation type="unfinished" />
@@ -90338,8 +90379,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
+      <location filename="../QScintilla/MiniEditor.py" line="1151" />
       <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1149" />
       <location filename="../QScintilla/ShellWindow.py" line="745" />
       <location filename="../QScintilla/ShellWindow.py" line="744" />
       <source>Move down one page</source>
@@ -90347,14 +90388,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1152" />
       <location filename="../QScintilla/ShellWindow.py" line="746" />
       <source>PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1158" />
+      <location filename="../QScintilla/MiniEditor.py" line="1159" />
       <location filename="../QScintilla/ShellWindow.py" line="753" />
       <source>Meta+V</source>
       <translation type="unfinished" />
@@ -90362,8 +90403,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
+      <location filename="../QScintilla/MiniEditor.py" line="1859" />
       <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/MiniEditor.py" line="1857" />
       <location filename="../QScintilla/ShellWindow.py" line="761" />
       <location filename="../QScintilla/ShellWindow.py" line="760" />
       <source>Escape</source>
@@ -90371,7 +90412,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
+      <location filename="../QScintilla/MiniEditor.py" line="1860" />
       <location filename="../QScintilla/ShellWindow.py" line="762" />
       <source>Esc</source>
       <translation type="unfinished" />
@@ -90379,8 +90420,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1233" />
+      <location filename="../QScintilla/MiniEditor.py" line="1230" />
       <location filename="../QScintilla/ShellWindow.py" line="775" />
       <location filename="../QScintilla/ShellWindow.py" line="772" />
       <source>Extend selection left one character</source>
@@ -90388,14 +90429,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1235" />
+      <location filename="../QScintilla/MiniEditor.py" line="1236" />
       <location filename="../QScintilla/ShellWindow.py" line="778" />
       <source>Shift+Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1242" />
+      <location filename="../QScintilla/MiniEditor.py" line="1243" />
       <location filename="../QScintilla/ShellWindow.py" line="785" />
       <source>Meta+Shift+B</source>
       <translation type="unfinished" />
@@ -90403,8 +90444,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1253" />
+      <location filename="../QScintilla/MiniEditor.py" line="1250" />
       <location filename="../QScintilla/ShellWindow.py" line="795" />
       <location filename="../QScintilla/ShellWindow.py" line="792" />
       <source>Extend selection right one character</source>
@@ -90412,14 +90453,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1255" />
+      <location filename="../QScintilla/MiniEditor.py" line="1256" />
       <location filename="../QScintilla/ShellWindow.py" line="798" />
       <source>Shift+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1262" />
+      <location filename="../QScintilla/MiniEditor.py" line="1263" />
       <location filename="../QScintilla/ShellWindow.py" line="805" />
       <source>Meta+Shift+F</source>
       <translation type="unfinished" />
@@ -90427,8 +90468,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
+      <location filename="../QScintilla/MiniEditor.py" line="1347" />
       <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/MiniEditor.py" line="1345" />
       <location filename="../QScintilla/ShellWindow.py" line="813" />
       <location filename="../QScintilla/ShellWindow.py" line="812" />
       <source>Extend selection left one word</source>
@@ -90437,8 +90478,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1355" />
-      <location filename="../QScintilla/MiniEditor.py" line="1315" />
+      <location filename="../QScintilla/MiniEditor.py" line="1356" />
+      <location filename="../QScintilla/MiniEditor.py" line="1316" />
       <location filename="../QScintilla/ShellWindow.py" line="822" />
       <source>Alt+Shift+Left</source>
       <translation type="unfinished" />
@@ -90446,8 +90487,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2276" />
-      <location filename="../QScintilla/MiniEditor.py" line="1361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2277" />
+      <location filename="../QScintilla/MiniEditor.py" line="1362" />
       <location filename="../QScintilla/ShellWindow.py" line="828" />
       <source>Ctrl+Shift+Left</source>
       <translation type="unfinished" />
@@ -90455,8 +90496,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1372" />
-      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1373" />
+      <location filename="../QScintilla/MiniEditor.py" line="1370" />
       <location filename="../QScintilla/ShellWindow.py" line="839" />
       <location filename="../QScintilla/ShellWindow.py" line="836" />
       <source>Extend selection right one word</source>
@@ -90466,9 +90507,9 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1383" />
-      <location filename="../QScintilla/MiniEditor.py" line="1337" />
+      <location filename="../QScintilla/MiniEditor.py" line="2151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1384" />
+      <location filename="../QScintilla/MiniEditor.py" line="1338" />
       <location filename="../QScintilla/ShellWindow.py" line="850" />
       <source>Alt+Shift+Right</source>
       <translation type="unfinished" />
@@ -90476,8 +90517,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1837" />
-      <location filename="../QScintilla/MiniEditor.py" line="1389" />
+      <location filename="../QScintilla/MiniEditor.py" line="1838" />
+      <location filename="../QScintilla/MiniEditor.py" line="1390" />
       <location filename="../QScintilla/ShellWindow.py" line="856" />
       <source>Ctrl+Shift+Right</source>
       <translation type="unfinished" />
@@ -90485,8 +90526,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1401" />
-      <location filename="../QScintilla/MiniEditor.py" line="1397" />
+      <location filename="../QScintilla/MiniEditor.py" line="1402" />
+      <location filename="../QScintilla/MiniEditor.py" line="1398" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
       <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
@@ -90494,7 +90535,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1412" />
+      <location filename="../QScintilla/MiniEditor.py" line="1413" />
       <location filename="../QScintilla/ShellWindow.py" line="879" />
       <source>Shift+Home</source>
       <translation type="unfinished" />
@@ -90502,8 +90543,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1422" />
-      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1423" />
+      <location filename="../QScintilla/MiniEditor.py" line="1420" />
       <location filename="../QScintilla/ShellWindow.py" line="889" />
       <location filename="../QScintilla/ShellWindow.py" line="886" />
       <source>Extend selection to end of document line</source>
@@ -90511,14 +90552,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1432" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
       <location filename="../QScintilla/ShellWindow.py" line="899" />
       <source>Meta+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1437" />
       <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Shift+End</source>
       <translation type="unfinished" />
@@ -90527,21 +90568,21 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2532" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
       <location filename="../QScintilla/ShellWindow.py" line="917" />
       <source>Search</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2534" />
+      <location filename="../QScintilla/MiniEditor.py" line="2535" />
       <location filename="../QScintilla/ShellWindow.py" line="919" />
       <source>&amp;Search...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2536" />
+      <location filename="../QScintilla/MiniEditor.py" line="2537" />
       <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
@@ -90549,7 +90590,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2543" />
+      <location filename="../QScintilla/MiniEditor.py" line="2544" />
       <location filename="../QScintilla/ShellWindow.py" line="928" />
       <source>Search for a text</source>
       <translation type="unfinished" />
@@ -90561,21 +90602,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
       <location filename="../QScintilla/ShellWindow.py" line="943" />
       <source>Search next</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2560" />
+      <location filename="../QScintilla/MiniEditor.py" line="2561" />
       <location filename="../QScintilla/ShellWindow.py" line="945" />
       <source>Search &amp;next</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2562" />
+      <location filename="../QScintilla/MiniEditor.py" line="2563" />
       <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>F3</source>
       <comment>Search|Search next</comment>
@@ -90583,7 +90624,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2569" />
+      <location filename="../QScintilla/MiniEditor.py" line="2570" />
       <location filename="../QScintilla/ShellWindow.py" line="954" />
       <source>Search next occurrence of text</source>
       <translation type="unfinished" />
@@ -90595,21 +90636,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2584" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
       <location filename="../QScintilla/ShellWindow.py" line="971" />
       <source>Search previous</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2586" />
+      <location filename="../QScintilla/MiniEditor.py" line="2587" />
       <location filename="../QScintilla/ShellWindow.py" line="973" />
       <source>Search &amp;previous</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2588" />
+      <location filename="../QScintilla/MiniEditor.py" line="2589" />
       <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
@@ -90617,7 +90658,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2597" />
+      <location filename="../QScintilla/MiniEditor.py" line="2598" />
       <location filename="../QScintilla/ShellWindow.py" line="984" />
       <source>Search previous occurrence of text</source>
       <translation type="unfinished" />
@@ -90629,21 +90670,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2757" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
       <location filename="../QScintilla/ShellWindow.py" line="1010" />
       <source>Zoom in</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2759" />
+      <location filename="../QScintilla/MiniEditor.py" line="2760" />
       <location filename="../QScintilla/ShellWindow.py" line="1012" />
       <source>Zoom &amp;in</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/MiniEditor.py" line="2762" />
       <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
@@ -90651,7 +90692,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2764" />
+      <location filename="../QScintilla/MiniEditor.py" line="2765" />
       <location filename="../QScintilla/ShellWindow.py" line="1017" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
@@ -90659,35 +90700,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/MiniEditor.py" line="2771" />
       <location filename="../QScintilla/ShellWindow.py" line="1023" />
       <source>Zoom in on the text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2773" />
+      <location filename="../QScintilla/MiniEditor.py" line="2774" />
       <location filename="../QScintilla/ShellWindow.py" line="1026" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2783" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
       <location filename="../QScintilla/ShellWindow.py" line="1036" />
       <source>Zoom out</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2785" />
+      <location filename="../QScintilla/MiniEditor.py" line="2786" />
       <location filename="../QScintilla/ShellWindow.py" line="1038" />
       <source>Zoom &amp;out</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/MiniEditor.py" line="2788" />
       <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
@@ -90695,7 +90736,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2790" />
+      <location filename="../QScintilla/MiniEditor.py" line="2791" />
       <location filename="../QScintilla/ShellWindow.py" line="1043" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
@@ -90703,35 +90744,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/MiniEditor.py" line="2797" />
       <location filename="../QScintilla/ShellWindow.py" line="1049" />
       <source>Zoom out on the text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2799" />
+      <location filename="../QScintilla/MiniEditor.py" line="2800" />
       <location filename="../QScintilla/ShellWindow.py" line="1052" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2809" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
       <location filename="../QScintilla/ShellWindow.py" line="1062" />
       <source>Zoom reset</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2811" />
+      <location filename="../QScintilla/MiniEditor.py" line="2812" />
       <location filename="../QScintilla/ShellWindow.py" line="1064" />
       <source>Zoom &amp;reset</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2813" />
+      <location filename="../QScintilla/MiniEditor.py" line="2814" />
       <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
@@ -90739,42 +90780,42 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/MiniEditor.py" line="2821" />
       <location filename="../QScintilla/ShellWindow.py" line="1073" />
       <source>Reset the zoom of the text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2823" />
+      <location filename="../QScintilla/MiniEditor.py" line="2824" />
       <location filename="../QScintilla/ShellWindow.py" line="1076" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2834" />
+      <location filename="../QScintilla/MiniEditor.py" line="2835" />
       <location filename="../QScintilla/ShellWindow.py" line="1087" />
       <source>Zoom</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2836" />
+      <location filename="../QScintilla/MiniEditor.py" line="2837" />
       <location filename="../QScintilla/ShellWindow.py" line="1089" />
       <source>&amp;Zoom</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/MiniEditor.py" line="2844" />
       <location filename="../QScintilla/ShellWindow.py" line="1096" />
       <source>Zoom the text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2846" />
+      <location filename="../QScintilla/MiniEditor.py" line="2847" />
       <location filename="../QScintilla/ShellWindow.py" line="1099" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation type="unfinished" />
@@ -90782,984 +90823,984 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="804" />
       <location filename="../ViewManager/ViewManager.py" line="802" />
-      <location filename="../QScintilla/MiniEditor.py" line="740" />
+      <location filename="../QScintilla/MiniEditor.py" line="741" />
       <source>Print Preview</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
+      <location filename="../QScintilla/MiniEditor.py" line="959" />
       <location filename="../QScintilla/MiniEditor.py" line="958" />
-      <location filename="../QScintilla/MiniEditor.py" line="957" />
       <source>Move left one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
+      <location filename="../QScintilla/MiniEditor.py" line="975" />
       <location filename="../QScintilla/MiniEditor.py" line="974" />
-      <location filename="../QScintilla/MiniEditor.py" line="973" />
       <source>Move right one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2128" />
-      <location filename="../QScintilla/MiniEditor.py" line="1018" />
-      <location filename="../QScintilla/MiniEditor.py" line="982" />
+      <location filename="../QScintilla/MiniEditor.py" line="2129" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/MiniEditor.py" line="983" />
       <source>Alt+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1051" />
       <location filename="../QScintilla/MiniEditor.py" line="1050" />
-      <location filename="../QScintilla/MiniEditor.py" line="1049" />
       <source>Move to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="1063" />
       <source>Alt+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
+      <location filename="../QScintilla/MiniEditor.py" line="1091" />
       <location filename="../QScintilla/MiniEditor.py" line="1090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1089" />
       <source>Scroll view down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
+      <location filename="../QScintilla/MiniEditor.py" line="1103" />
       <location filename="../QScintilla/MiniEditor.py" line="1102" />
-      <location filename="../QScintilla/MiniEditor.py" line="1101" />
       <source>Scroll view up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
+      <location filename="../QScintilla/MiniEditor.py" line="1115" />
       <location filename="../QScintilla/MiniEditor.py" line="1114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1113" />
       <source>Move up one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
+      <location filename="../QScintilla/MiniEditor.py" line="1116" />
       <source>Alt+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
+      <location filename="../QScintilla/MiniEditor.py" line="1127" />
       <location filename="../QScintilla/MiniEditor.py" line="1126" />
-      <location filename="../QScintilla/MiniEditor.py" line="1125" />
       <source>Move down one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
+      <location filename="../QScintilla/MiniEditor.py" line="1128" />
       <source>Alt+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
+      <location filename="../QScintilla/MiniEditor.py" line="1167" />
       <location filename="../QScintilla/MiniEditor.py" line="1166" />
-      <location filename="../QScintilla/MiniEditor.py" line="1165" />
       <source>Move to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1178" />
+      <location filename="../QScintilla/MiniEditor.py" line="1179" />
       <source>Ctrl+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
+      <location filename="../QScintilla/MiniEditor.py" line="1187" />
       <location filename="../QScintilla/MiniEditor.py" line="1186" />
-      <location filename="../QScintilla/MiniEditor.py" line="1185" />
       <source>Move to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1198" />
+      <location filename="../QScintilla/MiniEditor.py" line="1199" />
       <source>Ctrl+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
+      <location filename="../QScintilla/MiniEditor.py" line="1219" />
       <location filename="../QScintilla/MiniEditor.py" line="1218" />
-      <location filename="../QScintilla/MiniEditor.py" line="1217" />
       <source>Unindent one level</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
+      <location filename="../QScintilla/MiniEditor.py" line="1220" />
       <source>Shift+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
+      <location filename="../QScintilla/MiniEditor.py" line="1271" />
       <location filename="../QScintilla/MiniEditor.py" line="1270" />
-      <location filename="../QScintilla/MiniEditor.py" line="1269" />
       <source>Extend selection up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
+      <location filename="../QScintilla/MiniEditor.py" line="1272" />
       <source>Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1278" />
+      <location filename="../QScintilla/MiniEditor.py" line="1279" />
       <source>Meta+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
+      <location filename="../QScintilla/MiniEditor.py" line="1287" />
       <location filename="../QScintilla/MiniEditor.py" line="1286" />
-      <location filename="../QScintilla/MiniEditor.py" line="1285" />
       <source>Extend selection down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
+      <location filename="../QScintilla/MiniEditor.py" line="1288" />
       <source>Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1294" />
+      <location filename="../QScintilla/MiniEditor.py" line="1295" />
       <source>Meta+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1304" />
-      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1305" />
+      <location filename="../QScintilla/MiniEditor.py" line="1302" />
       <source>Extend selection left one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1326" />
-      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1327" />
+      <location filename="../QScintilla/MiniEditor.py" line="1324" />
       <source>Extend selection right one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1446" />
-      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1447" />
+      <location filename="../QScintilla/MiniEditor.py" line="1444" />
       <source>Extend selection up one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1449" />
+      <location filename="../QScintilla/MiniEditor.py" line="1450" />
       <source>Alt+Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1462" />
-      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1463" />
+      <location filename="../QScintilla/MiniEditor.py" line="1460" />
       <source>Extend selection down one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1465" />
+      <location filename="../QScintilla/MiniEditor.py" line="1466" />
       <source>Alt+Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1477" />
       <location filename="../QScintilla/MiniEditor.py" line="1476" />
-      <location filename="../QScintilla/MiniEditor.py" line="1475" />
       <source>Extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
+      <location filename="../QScintilla/MiniEditor.py" line="1478" />
       <source>Shift+PgUp</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="1489" />
       <location filename="../QScintilla/MiniEditor.py" line="1488" />
-      <location filename="../QScintilla/MiniEditor.py" line="1487" />
       <source>Extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
+      <location filename="../QScintilla/MiniEditor.py" line="1490" />
       <source>Shift+PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1496" />
+      <location filename="../QScintilla/MiniEditor.py" line="1497" />
       <source>Meta+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1506" />
-      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1507" />
+      <location filename="../QScintilla/MiniEditor.py" line="1504" />
       <source>Extend selection to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1516" />
+      <location filename="../QScintilla/MiniEditor.py" line="1517" />
       <source>Ctrl+Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1521" />
+      <location filename="../QScintilla/MiniEditor.py" line="1522" />
       <source>Ctrl+Shift+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1533" />
+      <location filename="../QScintilla/MiniEditor.py" line="1530" />
       <source>Extend selection to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1543" />
+      <location filename="../QScintilla/MiniEditor.py" line="1544" />
       <source>Ctrl+Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1549" />
+      <location filename="../QScintilla/MiniEditor.py" line="1550" />
       <source>Ctrl+Shift+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1583" />
+      <location filename="../QScintilla/MiniEditor.py" line="1580" />
       <source>Delete previous character if not at start of line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1697" />
       <location filename="../QScintilla/MiniEditor.py" line="1696" />
-      <location filename="../QScintilla/MiniEditor.py" line="1695" />
       <source>Duplicate current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
+      <location filename="../QScintilla/MiniEditor.py" line="1698" />
       <source>Ctrl+D</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1710" />
-      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1711" />
+      <location filename="../QScintilla/MiniEditor.py" line="1708" />
       <source>Swap current and previous lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1713" />
+      <location filename="../QScintilla/MiniEditor.py" line="1714" />
       <source>Ctrl+T</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="1725" />
       <location filename="../QScintilla/MiniEditor.py" line="1724" />
-      <location filename="../QScintilla/MiniEditor.py" line="1723" />
       <source>Reverse selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
+      <location filename="../QScintilla/MiniEditor.py" line="1726" />
       <source>Meta+Alt+R</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
+      <location filename="../QScintilla/MiniEditor.py" line="1737" />
       <location filename="../QScintilla/MiniEditor.py" line="1736" />
-      <location filename="../QScintilla/MiniEditor.py" line="1735" />
       <source>Cut current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
+      <location filename="../QScintilla/MiniEditor.py" line="1738" />
       <source>Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
+      <location filename="../QScintilla/MiniEditor.py" line="1749" />
       <location filename="../QScintilla/MiniEditor.py" line="1748" />
-      <location filename="../QScintilla/MiniEditor.py" line="1747" />
       <source>Copy current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="1750" />
       <source>Ctrl+Shift+T</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
+      <location filename="../QScintilla/MiniEditor.py" line="1761" />
       <location filename="../QScintilla/MiniEditor.py" line="1760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1759" />
       <source>Toggle insert/overtype</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
+      <location filename="../QScintilla/MiniEditor.py" line="1762" />
       <source>Ins</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1775" />
+      <location filename="../QScintilla/MiniEditor.py" line="1772" />
       <source>Convert selection to lower case</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1777" />
+      <location filename="../QScintilla/MiniEditor.py" line="1778" />
       <source>Alt+Shift+U</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1791" />
+      <location filename="../QScintilla/MiniEditor.py" line="1788" />
       <source>Convert selection to upper case</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1793" />
+      <location filename="../QScintilla/MiniEditor.py" line="1794" />
       <source>Ctrl+Shift+U</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
+      <location filename="../QScintilla/MiniEditor.py" line="1805" />
       <location filename="../QScintilla/MiniEditor.py" line="1804" />
-      <location filename="../QScintilla/MiniEditor.py" line="1803" />
       <source>Move to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1816" />
+      <location filename="../QScintilla/MiniEditor.py" line="1817" />
       <source>Alt+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1827" />
+      <location filename="../QScintilla/MiniEditor.py" line="1824" />
       <source>Extend selection to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
+      <location filename="../QScintilla/MiniEditor.py" line="1847" />
       <location filename="../QScintilla/MiniEditor.py" line="1846" />
-      <location filename="../QScintilla/MiniEditor.py" line="1845" />
       <source>Formfeed</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1872" />
-      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1873" />
+      <location filename="../QScintilla/MiniEditor.py" line="1870" />
       <source>Extend rectangular selection down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1875" />
+      <location filename="../QScintilla/MiniEditor.py" line="1876" />
       <source>Alt+Ctrl+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1883" />
+      <location filename="../QScintilla/MiniEditor.py" line="1884" />
       <source>Meta+Alt+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1894" />
-      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1895" />
+      <location filename="../QScintilla/MiniEditor.py" line="1892" />
       <source>Extend rectangular selection up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1897" />
+      <location filename="../QScintilla/MiniEditor.py" line="1898" />
       <source>Alt+Ctrl+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1905" />
+      <location filename="../QScintilla/MiniEditor.py" line="1906" />
       <source>Meta+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1916" />
-      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1917" />
+      <location filename="../QScintilla/MiniEditor.py" line="1914" />
       <source>Extend rectangular selection left one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1919" />
+      <location filename="../QScintilla/MiniEditor.py" line="1920" />
       <source>Alt+Ctrl+Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1927" />
+      <location filename="../QScintilla/MiniEditor.py" line="1928" />
       <source>Meta+Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1938" />
-      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1939" />
+      <location filename="../QScintilla/MiniEditor.py" line="1936" />
       <source>Extend rectangular selection right one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1941" />
+      <location filename="../QScintilla/MiniEditor.py" line="1942" />
       <source>Alt+Ctrl+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1949" />
+      <location filename="../QScintilla/MiniEditor.py" line="1950" />
       <source>Meta+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1962" />
-      <location filename="../QScintilla/MiniEditor.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1963" />
+      <location filename="../QScintilla/MiniEditor.py" line="1958" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1975" />
+      <location filename="../QScintilla/MiniEditor.py" line="1976" />
       <source>Alt+Shift+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1986" />
-      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1987" />
+      <location filename="../QScintilla/MiniEditor.py" line="1984" />
       <source>Extend rectangular selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1997" />
+      <location filename="../QScintilla/MiniEditor.py" line="1998" />
       <source>Meta+Alt+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2002" />
+      <location filename="../QScintilla/MiniEditor.py" line="2003" />
       <source>Alt+Shift+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2012" />
-      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2013" />
+      <location filename="../QScintilla/MiniEditor.py" line="2010" />
       <source>Extend rectangular selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2015" />
+      <location filename="../QScintilla/MiniEditor.py" line="2016" />
       <source>Alt+Shift+PgUp</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2028" />
-      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2029" />
+      <location filename="../QScintilla/MiniEditor.py" line="2026" />
       <source>Extend rectangular selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2031" />
+      <location filename="../QScintilla/MiniEditor.py" line="2032" />
       <source>Alt+Shift+PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2039" />
+      <location filename="../QScintilla/MiniEditor.py" line="2040" />
       <source>Meta+Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2515" />
       <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2513" />
+      <location filename="../QScintilla/MiniEditor.py" line="2049" />
       <location filename="../QScintilla/MiniEditor.py" line="2048" />
-      <location filename="../QScintilla/MiniEditor.py" line="2047" />
       <source>Duplicate current selection</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2516" />
+      <location filename="../QScintilla/MiniEditor.py" line="2050" />
       <source>Ctrl+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2063" />
-      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2061" />
       <source>Scroll to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
+      <location filename="../QScintilla/MiniEditor.py" line="2083" />
       <location filename="../QScintilla/MiniEditor.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="2081" />
       <source>Scroll to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2101" />
-      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2102" />
+      <location filename="../QScintilla/MiniEditor.py" line="2099" />
       <source>Scroll vertically to center current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2111" />
+      <location filename="../QScintilla/MiniEditor.py" line="2112" />
       <source>Meta+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
+      <location filename="../QScintilla/MiniEditor.py" line="2121" />
       <location filename="../QScintilla/MiniEditor.py" line="2120" />
-      <location filename="../QScintilla/MiniEditor.py" line="2119" />
       <source>Move to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2139" />
-      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2140" />
+      <location filename="../QScintilla/MiniEditor.py" line="2137" />
       <source>Extend selection to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2162" />
-      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2163" />
+      <location filename="../QScintilla/MiniEditor.py" line="2160" />
       <source>Move to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2179" />
-      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2180" />
+      <location filename="../QScintilla/MiniEditor.py" line="2177" />
       <source>Extend selection to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2196" />
-      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2197" />
+      <location filename="../QScintilla/MiniEditor.py" line="2194" />
       <source>Move to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2206" />
+      <location filename="../QScintilla/MiniEditor.py" line="2207" />
       <source>Meta+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2218" />
+      <location filename="../QScintilla/MiniEditor.py" line="2215" />
       <source>Extend selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2228" />
+      <location filename="../QScintilla/MiniEditor.py" line="2229" />
       <source>Meta+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2241" />
-      <location filename="../QScintilla/MiniEditor.py" line="2237" />
+      <location filename="../QScintilla/MiniEditor.py" line="2242" />
+      <location filename="../QScintilla/MiniEditor.py" line="2238" />
       <source>Extend rectangular selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2253" />
+      <location filename="../QScintilla/MiniEditor.py" line="2254" />
       <source>Meta+Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2265" />
-      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2266" />
+      <location filename="../QScintilla/MiniEditor.py" line="2263" />
       <source>Extend selection to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2288" />
-      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2289" />
+      <location filename="../QScintilla/MiniEditor.py" line="2286" />
       <source>Move to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2306" />
-      <location filename="../QScintilla/MiniEditor.py" line="2302" />
+      <location filename="../QScintilla/MiniEditor.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="2303" />
       <source>Extend selection to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2325" />
-      <location filename="../QScintilla/MiniEditor.py" line="2321" />
+      <location filename="../QScintilla/MiniEditor.py" line="2326" />
+      <location filename="../QScintilla/MiniEditor.py" line="2322" />
       <source>Move to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2345" />
-      <location filename="../QScintilla/MiniEditor.py" line="2340" />
+      <location filename="../QScintilla/MiniEditor.py" line="2346" />
+      <location filename="../QScintilla/MiniEditor.py" line="2341" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2364" />
-      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2365" />
+      <location filename="../QScintilla/MiniEditor.py" line="2362" />
       <source>Move to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2381" />
-      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2382" />
+      <location filename="../QScintilla/MiniEditor.py" line="2379" />
       <source>Extend selection to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="2397" />
       <location filename="../QScintilla/MiniEditor.py" line="2396" />
-      <location filename="../QScintilla/MiniEditor.py" line="2395" />
       <source>Stuttered move up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2411" />
-      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2412" />
+      <location filename="../QScintilla/MiniEditor.py" line="2409" />
       <source>Stuttered extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2428" />
-      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2429" />
+      <location filename="../QScintilla/MiniEditor.py" line="2426" />
       <source>Stuttered move down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2446" />
+      <location filename="../QScintilla/MiniEditor.py" line="2443" />
       <source>Stuttered extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2462" />
-      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2463" />
+      <location filename="../QScintilla/MiniEditor.py" line="2460" />
       <source>Delete right to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2472" />
+      <location filename="../QScintilla/MiniEditor.py" line="2473" />
       <source>Alt+Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2484" />
+      <location filename="../QScintilla/MiniEditor.py" line="2481" />
       <source>Move selected lines up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2500" />
-      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2501" />
+      <location filename="../QScintilla/MiniEditor.py" line="2498" />
       <source>Move selected lines down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2546" />
+      <location filename="../QScintilla/MiniEditor.py" line="2547" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2572" />
+      <location filename="../QScintilla/MiniEditor.py" line="2573" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2602" />
+      <location filename="../QScintilla/MiniEditor.py" line="2603" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2616" />
-      <location filename="../QScintilla/MiniEditor.py" line="2614" />
+      <location filename="../QScintilla/MiniEditor.py" line="2617" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Clear search markers</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2618" />
+      <location filename="../QScintilla/MiniEditor.py" line="2619" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2627" />
+      <location filename="../QScintilla/MiniEditor.py" line="2628" />
       <source>Clear all displayed search markers</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2632" />
+      <location filename="../QScintilla/MiniEditor.py" line="2633" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2642" />
+      <location filename="../QScintilla/MiniEditor.py" line="2643" />
       <source>Replace</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2644" />
       <source>&amp;Replace...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2645" />
+      <location filename="../QScintilla/MiniEditor.py" line="2646" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2652" />
+      <location filename="../QScintilla/MiniEditor.py" line="2653" />
       <source>Replace some text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2655" />
+      <location filename="../QScintilla/MiniEditor.py" line="2656" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2669" />
-      <location filename="../QScintilla/MiniEditor.py" line="2667" />
+      <location filename="../QScintilla/MiniEditor.py" line="2670" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2671" />
+      <location filename="../QScintilla/MiniEditor.py" line="2672" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2680" />
+      <location filename="../QScintilla/MiniEditor.py" line="2681" />
       <source>Replace the found text and search the next occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2685" />
+      <location filename="../QScintilla/MiniEditor.py" line="2686" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2701" />
-      <location filename="../QScintilla/MiniEditor.py" line="2699" />
+      <location filename="../QScintilla/MiniEditor.py" line="2702" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2703" />
+      <location filename="../QScintilla/MiniEditor.py" line="2704" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2712" />
+      <location filename="../QScintilla/MiniEditor.py" line="2713" />
       <source>Replace the found text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2715" />
+      <location filename="../QScintilla/MiniEditor.py" line="2716" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2728" />
-      <location filename="../QScintilla/MiniEditor.py" line="2726" />
+      <location filename="../QScintilla/MiniEditor.py" line="2729" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2730" />
+      <location filename="../QScintilla/MiniEditor.py" line="2731" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2739" />
+      <location filename="../QScintilla/MiniEditor.py" line="2740" />
       <source>Replace search text occurrences</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2742" />
+      <location filename="../QScintilla/MiniEditor.py" line="2743" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_en.ts	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/i18n/eric7_en.ts	Sat Apr 15 18:22:09 2023 +0200
@@ -1716,77 +1716,77 @@
   <context>
     <name>BaseDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="190" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="196" />
       <source>Device Data Not Available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="191" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="197" />
       <source>&lt;p&gt;The device data is not available. Try to connect to the device again. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="244" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="250" />
       <source>Unsupported Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="254" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="260" />
       <source>REPL is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="273" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="279" />
       <source>Plotter is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="292" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="298" />
       <source>Running scripts is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="311" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="317" />
       <source>File Manager is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="366" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="372" />
       <source>Select Device Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="367" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="373" />
       <source>Select the directory for the connected device:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="513" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="519" />
       <source>Detected an error without indications.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1400" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1464" />
       <source>Operation not supported.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>Yes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>No</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>yes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>no</source>
       <translation type="unfinished" />
     </message>
@@ -3945,17 +3945,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="141" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
       <source>WIZnet 5x00 Ethernet</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="143" />
       <source>&lt;p&gt;Support for &lt;b&gt;WIZnet 5x00&lt;/b&gt; Ethernet boards could not be detected. Is the module &lt;b&gt;adafruit_wiznet5k&lt;/b&gt; installed?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="176" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="177" />
       <source>CircuitPython</source>
       <translation type="unfinished" />
     </message>
@@ -4123,114 +4123,114 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1127" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="864" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1128" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="865" />
       <source>unknown ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1576" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1499" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1039" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="960" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1577" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1500" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1040" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="961" />
       <source>The device volume is not available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1003" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="975" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
       <source>Write WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1539" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1005" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="977" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1546" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="984" />
+      <source>Aborted</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1195" />
+      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1266" />
+      <source>CircuitPython does not support reporting of connected clients.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
+      <source>Active</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
+      <source>Connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
+      <source>IPv4 Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
+      <source>Netmask</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
+      <source>Gateway</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
+      <source>DNS</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1677" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
+      <source>Chip Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1358" />
+      <source>max. Sockets</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1538" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1545" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1011" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="983" />
-      <source>Aborted</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1194" />
-      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1265" />
-      <source>CircuitPython does not support reporting of connected clients.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1674" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1349" />
-      <source>Active</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1680" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
-      <source>Connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
-      <source>IPv4 Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
-      <source>Netmask</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
-      <source>Gateway</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
-      <source>DNS</source>
+      <source>Write Connect Script</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1676" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
-      <source>Chip Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
-      <source>max. Sockets</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1537" />
-      <source>Write Connect Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
       <source>Name</source>
       <translation>Name</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1678" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1679" />
       <source>Address Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1682" />
       <source>Advertising</source>
       <translation type="unfinished" />
     </message>
@@ -10204,12 +10204,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1378" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1380" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1379" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1381" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -12051,7 +12051,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9146" />
+      <location filename="../QScintilla/Editor.py" line="9154" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12324,7 +12324,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8264" />
+      <location filename="../QScintilla/Editor.py" line="8272" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation type="unfinished" />
@@ -12385,7 +12385,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5923" />
+      <location filename="../QScintilla/Editor.py" line="5932" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation type="unfinished" />
@@ -12619,356 +12619,356 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5097" />
+      <location filename="../QScintilla/Editor.py" line="5106" />
       <source>Autocompletion</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5098" />
+      <location filename="../QScintilla/Editor.py" line="5107" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5226" />
+      <location filename="../QScintilla/Editor.py" line="5235" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5227" />
+      <location filename="../QScintilla/Editor.py" line="5236" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5519" />
+      <location filename="../QScintilla/Editor.py" line="5528" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5520" />
+      <location filename="../QScintilla/Editor.py" line="5529" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5927" />
+      <location filename="../QScintilla/Editor.py" line="5936" />
       <source>Disable breakpoint</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6307" />
+      <location filename="../QScintilla/Editor.py" line="6315" />
       <source>Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6308" />
+      <location filename="../QScintilla/Editor.py" line="6316" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="6391" />
       <location filename="../QScintilla/Editor.py" line="6383" />
-      <location filename="../QScintilla/Editor.py" line="6375" />
       <source>Show Code Coverage Annotations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6376" />
-      <source>All lines have been covered.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="6384" />
+      <source>All lines have been covered.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="6392" />
       <source>There is no coverage file available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6488" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <source>Profile Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6489" />
+      <location filename="../QScintilla/Editor.py" line="6497" />
       <source>Please select a profile file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6650" />
-      <location filename="../QScintilla/Editor.py" line="6644" />
+      <location filename="../QScintilla/Editor.py" line="6658" />
+      <location filename="../QScintilla/Editor.py" line="6652" />
       <source>Syntax Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6651" />
+      <location filename="../QScintilla/Editor.py" line="6659" />
       <source>No syntax error message available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
-      <location filename="../QScintilla/Editor.py" line="6856" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6864" />
       <source>Warning</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
       <source>No warning messages available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6926" />
+      <location filename="../QScintilla/Editor.py" line="6934" />
       <source>Style: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6929" />
+      <location filename="../QScintilla/Editor.py" line="6937" />
       <source>Warning: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6936" />
+      <location filename="../QScintilla/Editor.py" line="6944" />
       <source>Error: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Macro Name</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Select a macro name:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7069" />
+      <location filename="../QScintilla/Editor.py" line="7077" />
       <source>Load macro file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7115" />
-      <location filename="../QScintilla/Editor.py" line="7071" />
+      <location filename="../QScintilla/Editor.py" line="7123" />
+      <location filename="../QScintilla/Editor.py" line="7079" />
       <source>Macro files (*.macro)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7093" />
-      <location filename="../QScintilla/Editor.py" line="7083" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
+      <location filename="../QScintilla/Editor.py" line="7091" />
       <source>Error loading macro</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7084" />
+      <location filename="../QScintilla/Editor.py" line="7092" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7094" />
+      <location filename="../QScintilla/Editor.py" line="7102" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7113" />
+      <location filename="../QScintilla/Editor.py" line="7121" />
       <source>Save macro file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7131" />
+      <location filename="../QScintilla/Editor.py" line="7139" />
       <source>Save macro</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7132" />
+      <location filename="../QScintilla/Editor.py" line="7140" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7147" />
+      <location filename="../QScintilla/Editor.py" line="7155" />
       <source>Error saving macro</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7148" />
+      <location filename="../QScintilla/Editor.py" line="7156" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7161" />
+      <location filename="../QScintilla/Editor.py" line="7169" />
       <source>Start Macro Recording</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7162" />
+      <location filename="../QScintilla/Editor.py" line="7170" />
       <source>Macro recording is already active. Start new?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7188" />
+      <location filename="../QScintilla/Editor.py" line="7196" />
       <source>Macro Recording</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7189" />
+      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7340" />
+      <location filename="../QScintilla/Editor.py" line="7348" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7346" />
+      <location filename="../QScintilla/Editor.py" line="7354" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7353" />
+      <location filename="../QScintilla/Editor.py" line="7361" />
       <source>File changed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7403" />
+      <location filename="../QScintilla/Editor.py" line="7411" />
       <source>{0} (ro)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7708" />
+      <location filename="../QScintilla/Editor.py" line="7716" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7709" />
+      <location filename="../QScintilla/Editor.py" line="7717" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7729" />
+      <location filename="../QScintilla/Editor.py" line="7737" />
       <source>Resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7739" />
       <source>Add file...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7732" />
+      <location filename="../QScintilla/Editor.py" line="7740" />
       <source>Add files...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7733" />
+      <location filename="../QScintilla/Editor.py" line="7741" />
       <source>Add aliased file...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7735" />
+      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7738" />
+      <location filename="../QScintilla/Editor.py" line="7746" />
       <source>Add resource frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7765" />
       <source>Add file resource</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7771" />
+      <location filename="../QScintilla/Editor.py" line="7779" />
       <source>Add file resources</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7795" />
-      <location filename="../QScintilla/Editor.py" line="7789" />
+      <location filename="../QScintilla/Editor.py" line="7803" />
+      <location filename="../QScintilla/Editor.py" line="7797" />
       <source>Add aliased file resource</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7796" />
+      <location filename="../QScintilla/Editor.py" line="7804" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7871" />
+      <location filename="../QScintilla/Editor.py" line="7879" />
       <source>Package Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7872" />
+      <location filename="../QScintilla/Editor.py" line="7880" />
       <source>Include class attributes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7892" />
+      <location filename="../QScintilla/Editor.py" line="7900" />
       <source>Imports Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7893" />
+      <location filename="../QScintilla/Editor.py" line="7901" />
       <source>Include imports from external modules?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7912" />
+      <location filename="../QScintilla/Editor.py" line="7920" />
       <source>Application Diagram</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7913" />
+      <location filename="../QScintilla/Editor.py" line="7921" />
       <source>Include module names?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8268" />
+      <location filename="../QScintilla/Editor.py" line="8276" />
       <source>Add to dictionary</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8270" />
+      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8688" />
+      <location filename="../QScintilla/Editor.py" line="8696" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8689" />
+      <location filename="../QScintilla/Editor.py" line="8697" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8782" />
+      <location filename="../QScintilla/Editor.py" line="8790" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8783" />
+      <location filename="../QScintilla/Editor.py" line="8791" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8879" />
+      <location filename="../QScintilla/Editor.py" line="8887" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8885" />
+      <location filename="../QScintilla/Editor.py" line="8893" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8953" />
+      <location filename="../QScintilla/Editor.py" line="8961" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8954" />
+      <location filename="../QScintilla/Editor.py" line="8962" />
       <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" />
     </message>
@@ -18021,12 +18021,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="222" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="225" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -22874,7 +22874,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2719" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished" />
@@ -22937,370 +22937,370 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2277" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2319" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2340" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2341" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2405" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2387" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2388" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2434" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2423" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <source>List Bundle Heads</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
-      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2452" />
-      <source>List Bundle Heads</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2518" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2821" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
       <source>Git Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
       <source>Process Generation Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2747" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2729" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
       <source>Create Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2748" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2765" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2784" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
-      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2810" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3154" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3040" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3041" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3176" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3233" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3264" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3311" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
       <source>Copy Changesets (Cancel)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3429" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3552" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3503" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
       <source>Select a stash (empty for latest stash):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3462" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
       <source>Restore Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3516" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3566" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3602" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3603" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3634" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3743" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
       <source>Performing Repository Housekeeping</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3784" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
       <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3797" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3820" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
       <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3825" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3898" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4005" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4018" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
       <source>All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4022" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
       <source>Submodule Path</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4023" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4072" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4105" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4175" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4136" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4259" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -25625,83 +25625,83 @@
   <context>
     <name>GitProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="473" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="589" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="429" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="324" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="184" />
       <source>Version Control</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="602" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="492" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="340" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="200" />
       <source>Commit changes to repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="609" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="496" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="499" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="347" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="207" />
       <source>Add/Stage to repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="614" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="504" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="352" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="212" />
       <source>Unstage changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="621" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="508" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="511" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="359" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="219" />
       <source>Remove from repository (and disk)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="365" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="225" />
       <source>Remove from repository only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="513" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="230" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="518" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="232" />
       <source>Move</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="523" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="237" />
       <source>Show log browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="372" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="244" />
       <source>Show status</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="635" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="534" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="537" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="251" />
       <source>Show differences</source>
@@ -25713,8 +25713,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="543" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="385" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="263" />
       <source>Show differences (extended)</source>
@@ -25741,71 +25741,71 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="648" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="547" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="550" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="392" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="289" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="656" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="441" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
-      <source>Select all local file entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="558" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="444" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
-      <source>Select all versioned file entries</source>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
+      <source>Select all local file entries</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="662" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="561" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="447" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
+      <source>Select all versioned file entries</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="564" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="450" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="406" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="301" />
       <source>Select all local directory entries</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="666" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="454" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="305" />
       <source>Select all versioned directory entries</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="414" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="309" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="709" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="712" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="699" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="842" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="843" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -30112,27 +30112,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="198" />
+      <location filename="../Globals/__init__.py" line="199" />
       <source>{0:4.2f} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="201" />
+      <location filename="../Globals/__init__.py" line="202" />
       <source>{0:4.2f} KiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="204" />
+      <location filename="../Globals/__init__.py" line="205" />
       <source>{0:4.2f} MiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="207" />
+      <location filename="../Globals/__init__.py" line="208" />
       <source>{0:4.2f} GiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="210" />
+      <location filename="../Globals/__init__.py" line="211" />
       <source>{0:4.2f} TiB</source>
       <translation type="unfinished" />
     </message>
@@ -36319,75 +36319,75 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="692" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="579" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="535" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="431" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="289" />
       <source>Version Control</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="595" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="598" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="305" />
       <source>Commit changes to repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="606" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="455" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="313" />
       <source>Add to repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="722" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="725" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="461" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="319" />
       <source>Remove from repository (and disk)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="986" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="973" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="989" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="976" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="467" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="325" />
       <source>Remove from repository only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="614" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="617" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="330" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="619" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="332" />
       <source>Move</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="621" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="624" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="337" />
       <source>Show log browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="729" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="732" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="474" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="344" />
       <source>Show status</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="736" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="739" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="481" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="351" />
       <source>Show differences</source>
@@ -36399,8 +36399,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="644" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="487" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="363" />
       <source>Show differences (extended)</source>
@@ -36427,95 +36427,95 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="749" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="752" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="494" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="389" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="753" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="756" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="655" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="498" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="393" />
       <source>Conflicts resolved</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="755" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="654" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="657" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="500" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="395" />
       <source>Conflicts unresolved</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="757" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="656" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="760" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="502" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="397" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="660" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="547" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
-      <source>Select all local file entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="764" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="663" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="550" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
-      <source>Select all versioned file entries</source>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
+      <source>Select all local file entries</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="767" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="553" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
+      <source>Select all versioned file entries</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="556" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="407" />
       <source>Select all local directory entries</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="560" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="411" />
       <source>Select all versioned directory entries</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="775" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="674" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="561" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="778" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="677" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="564" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="520" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="415" />
       <source>Configure...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="890" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="893" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="891" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="894" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="987" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="990" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="977" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation type="unfinished" />
     </message>
@@ -50640,43 +50640,43 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="594" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="592" />
       <source>Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="599" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="597" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="603" />
       <source>Paste</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="612" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="610" />
       <source>Select All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="638" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="636" />
       <source>Press to disconnect the current device</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="643" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="641" />
       <source>Press to connect the selected device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="675" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="673" />
       <source>No device attached</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="674" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -50685,90 +50685,90 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="705" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="703" />
       <source>Start REPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="706" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="704" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1234" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1223" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1224" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1235" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1233" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1293" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1284" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1282" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
       <source>Run Script</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1276" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
       <source>There is no editor open. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1285" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1283" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1292" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
       <source>Start Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1329" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1346" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1344" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1363" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1361" />
       <source>Unsaved Chart Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1364" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1362" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1412" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1410" />
       <source>Start File Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1413" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1411" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1433" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1431" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
@@ -50793,7 +50793,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1735" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1554" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
@@ -50819,207 +50819,213 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2138" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1578" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1570" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2150" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2183" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2180" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1574" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1955" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1580" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1959" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1979" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1970" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1983" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1974" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1588" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1609" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
-      <source>Show Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
-      <source>Convert To UF2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1616" />
-      <source>Flash UF2 Device</source>
+      <source>Show Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1619" />
+      <source>Convert To UF2</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1620" />
+      <source>Flash UF2 Device</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1623" />
       <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1622" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1626" />
       <source>Ignored Serial Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1625" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1629" />
       <source>Configure</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1634" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1638" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1649" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1645" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1641" />
       <source>Device Version Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1646" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1650" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1670" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1674" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1666" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1680" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1683" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1696" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1687" />
       <source>Device Implementation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1688" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1693" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1697" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1736" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1754" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1758" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1762" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1766" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1782" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1794" />
       <source>Local Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1795" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1832" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1815" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1836" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1819" />
       <source>Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1816" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1820" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1837" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1857" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1861" />
       <source>Error handling device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1858" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1862" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1900" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1904" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1926" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1930" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1940" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1945" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1949" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1971" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1975" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2063" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2067" />
       <source>Add Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2068" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2113" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2117" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2151" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2169" />
+      <source>Package '{0}' was installed successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2184" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -51072,198 +51078,198 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="108" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="110" />
       <source>BBC micro:bit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="111" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="113" />
       <source>Calliope mini</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="208" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="210" />
       <source>BBC micro:bit/Calliope Functions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="421" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="409" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="392" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="211" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="411" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="213" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="215" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="217" />
       <source>Flash MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="218" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="220" />
       <source>Flash Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="496" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="222" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="498" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="224" />
       <source>Save Script as 'main.py'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="225" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="227" />
       <source>Save the current script as 'main.py' on the connected device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="229" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="231" />
       <source>Reset {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="375" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="366" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="352" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="335" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="322" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="302" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="377" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="354" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="337" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="324" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="304" />
       <source>Flash MicroPython/Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="303" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="305" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed and plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;See the &lt;a href="https://microbit.org/guide/firmware/"&gt;micro:bit web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="323" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="325" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MICROBIT is available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="336" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="338" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed an plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="353" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="355" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MINI is available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="370" />
       <source>MicroPython/Firmware Files (*.hex *.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="376" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="378" />
       <source>There are multiple devices ready for flashing. Please make sure, that only one device is prepared.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="395" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="410" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="412" />
       <source>&lt;p&gt;The BBC micro:bit generation cannot be determined. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="424" />
       <source>&lt;p&gt;The firmware URL for the device type &lt;b&gt;{0}&lt;/b&gt; is not known. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="452" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="466" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="468" />
       <source>Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="469" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="471" />
       <source>&lt;h4&gt;{0} Version Information&lt;br/&gt;(BBC micro:bit v{1})&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="478" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="480" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="484" />
       <source>{0} Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="502" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="504" />
       <source>The current editor does not contain a Python script. Write it anyway?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="513" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="515" />
       <source>The script is empty. Aborting.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="567" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="569" />
       <source>MicroPython Firmware for BBC micro:bit V1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="599" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="586" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="571" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="601" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="588" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="573" />
       <source>DAPLink Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="578" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="580" />
       <source>MicroPython Firmware for BBC micro:bit V2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="582" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="584" />
       <source>CircuitPython Firmware for BBC micro:bit V2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="595" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="597" />
       <source>MicroPython Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="818" />
-      <source>Active</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="819" />
-      <source>Name</source>
-      <translation>Name</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="820" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
+      <source>Active</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="821" />
+      <source>Name</source>
+      <translation>Name</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="822" />
-      <source>Address Type</source>
+      <source>MAC-Address</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="824" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="826" />
       <source>Connected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="825" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="827" />
       <source>Advertising</source>
       <translation type="unfinished" />
     </message>
@@ -51361,720 +51367,740 @@
   <context>
     <name>MiniEditor</name>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="459" />
+      <location filename="../QScintilla/MiniEditor.py" line="460" />
       <source>About eric Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="461" />
       <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don't need the power of a full blown editor.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="529" />
+      <location filename="../QScintilla/MiniEditor.py" line="530" />
       <source>Line: {0:5}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="533" />
+      <location filename="../QScintilla/MiniEditor.py" line="534" />
       <source>Pos: {0:5}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="547" />
+      <location filename="../QScintilla/MiniEditor.py" line="548" />
       <source>Language: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="610" />
       <source>New</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="611" />
-      <source>&amp;New</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="612" />
+      <source>&amp;New</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="613" />
       <source>Ctrl+N</source>
       <comment>File|New</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="617" />
+      <location filename="../QScintilla/MiniEditor.py" line="618" />
       <source>Open an empty editor window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="619" />
+      <location filename="../QScintilla/MiniEditor.py" line="620" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="625" />
+      <location filename="../QScintilla/MiniEditor.py" line="626" />
       <source>Open</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="627" />
-      <source>&amp;Open...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="628" />
+      <source>&amp;Open...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="629" />
       <source>Ctrl+O</source>
       <comment>File|Open</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="633" />
+      <location filename="../QScintilla/MiniEditor.py" line="634" />
       <source>Open a file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="635" />
+      <location filename="../QScintilla/MiniEditor.py" line="636" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="644" />
+      <location filename="../QScintilla/MiniEditor.py" line="645" />
       <source>Save</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="646" />
-      <source>&amp;Save</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="647" />
+      <source>&amp;Save</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="648" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="652" />
+      <location filename="../QScintilla/MiniEditor.py" line="653" />
       <source>Save the current file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="654" />
+      <location filename="../QScintilla/MiniEditor.py" line="655" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="663" />
+      <location filename="../QScintilla/MiniEditor.py" line="664" />
       <source>Save as</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="665" />
-      <source>Save &amp;as...</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="666" />
+      <source>Save &amp;as...</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="667" />
       <source>Shift+Ctrl+S</source>
       <comment>File|Save As</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="671" />
+      <location filename="../QScintilla/MiniEditor.py" line="672" />
       <source>Save the current file to a new one</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="673" />
+      <location filename="../QScintilla/MiniEditor.py" line="674" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="683" />
+      <location filename="../QScintilla/MiniEditor.py" line="684" />
       <source>Save Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="686" />
       <source>Save &amp;Copy...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="691" />
+      <location filename="../QScintilla/MiniEditor.py" line="692" />
       <source>Save a copy of the current file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="693" />
+      <location filename="../QScintilla/MiniEditor.py" line="694" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="703" />
+      <location filename="../QScintilla/MiniEditor.py" line="704" />
       <source>Close</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="705" />
-      <source>&amp;Close</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="706" />
+      <source>&amp;Close</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="707" />
       <source>Ctrl+W</source>
       <comment>File|Close</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="711" />
+      <location filename="../QScintilla/MiniEditor.py" line="712" />
       <source>Close the editor window</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="713" />
+      <location filename="../QScintilla/MiniEditor.py" line="714" />
       <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="719" />
+      <location filename="../QScintilla/MiniEditor.py" line="720" />
       <source>Print</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="721" />
-      <source>&amp;Print</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="722" />
+      <source>&amp;Print</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="723" />
       <source>Ctrl+P</source>
       <comment>File|Print</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="727" />
+      <location filename="../QScintilla/MiniEditor.py" line="728" />
       <source>Print the current file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="729" />
+      <location filename="../QScintilla/MiniEditor.py" line="730" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="738" />
+      <location filename="../QScintilla/MiniEditor.py" line="739" />
       <source>Print Preview</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="747" />
       <source>Print preview of the current file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="748" />
+      <location filename="../QScintilla/MiniEditor.py" line="749" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="761" />
+      <location filename="../QScintilla/MiniEditor.py" line="762" />
       <source>Undo</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="763" />
-      <source>&amp;Undo</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="764" />
-      <source>Ctrl+Z</source>
-      <comment>Edit|Undo</comment>
+      <source>&amp;Undo</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="765" />
+      <source>Ctrl+Z</source>
+      <comment>Edit|Undo</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="766" />
       <source>Alt+Backspace</source>
       <comment>Edit|Undo</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="769" />
+      <location filename="../QScintilla/MiniEditor.py" line="770" />
       <source>Undo the last change</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="771" />
+      <location filename="../QScintilla/MiniEditor.py" line="772" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="780" />
+      <location filename="../QScintilla/MiniEditor.py" line="781" />
       <source>Redo</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="782" />
-      <source>&amp;Redo</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="783" />
+      <source>&amp;Redo</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="784" />
       <source>Ctrl+Shift+Z</source>
       <comment>Edit|Redo</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="788" />
+      <location filename="../QScintilla/MiniEditor.py" line="789" />
       <source>Redo the last change</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="790" />
+      <location filename="../QScintilla/MiniEditor.py" line="791" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="799" />
+      <location filename="../QScintilla/MiniEditor.py" line="800" />
       <source>Cut</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="801" />
-      <source>Cu&amp;t</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="802" />
-      <source>Ctrl+X</source>
-      <comment>Edit|Cut</comment>
+      <source>Cu&amp;t</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="803" />
+      <source>Ctrl+X</source>
+      <comment>Edit|Cut</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="804" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="807" />
+      <location filename="../QScintilla/MiniEditor.py" line="808" />
       <source>Cut the selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="809" />
+      <location filename="../QScintilla/MiniEditor.py" line="810" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="819" />
+      <location filename="../QScintilla/MiniEditor.py" line="820" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="821" />
-      <source>&amp;Copy</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="822" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
+      <source>&amp;Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="823" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="824" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="827" />
+      <location filename="../QScintilla/MiniEditor.py" line="828" />
       <source>Copy the selection</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="829" />
+      <location filename="../QScintilla/MiniEditor.py" line="830" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="839" />
+      <location filename="../QScintilla/MiniEditor.py" line="840" />
       <source>Paste</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="841" />
-      <source>&amp;Paste</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="842" />
-      <source>Ctrl+V</source>
-      <comment>Edit|Paste</comment>
+      <source>&amp;Paste</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="843" />
+      <source>Ctrl+V</source>
+      <comment>Edit|Paste</comment>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="844" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="847" />
+      <location filename="../QScintilla/MiniEditor.py" line="848" />
       <source>Paste the last cut/copied text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="849" />
+      <location filename="../QScintilla/MiniEditor.py" line="850" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="859" />
+      <location filename="../QScintilla/MiniEditor.py" line="860" />
       <source>Clear</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="861" />
-      <source>Cl&amp;ear</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="862" />
+      <source>Cl&amp;ear</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="863" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="867" />
+      <location filename="../QScintilla/MiniEditor.py" line="868" />
       <source>Clear all text</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="869" />
+      <location filename="../QScintilla/MiniEditor.py" line="870" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>About</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>&amp;About</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2863" />
+      <location filename="../QScintilla/MiniEditor.py" line="2864" />
       <source>Display information about this software</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2865" />
+      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About &amp;Qt</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2877" />
+      <location filename="../QScintilla/MiniEditor.py" line="2878" />
       <source>Display information about the Qt toolkit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2880" />
+      <location filename="../QScintilla/MiniEditor.py" line="2881" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2889" />
+      <location filename="../QScintilla/MiniEditor.py" line="2890" />
       <source>What's This?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2891" />
-      <source>&amp;What's This?</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <source>&amp;What's This?</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2893" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2897" />
+      <location filename="../QScintilla/MiniEditor.py" line="2898" />
       <source>Context sensitive help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2899" />
+      <location filename="../QScintilla/MiniEditor.py" line="2900" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What'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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2918" />
       <source>Preferences</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2920" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2925" />
+      <location filename="../QScintilla/MiniEditor.py" line="2926" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2927" />
+      <location filename="../QScintilla/MiniEditor.py" line="2928" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2941" />
+      <location filename="../QScintilla/MiniEditor.py" line="2942" />
       <source>&amp;File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2953" />
+      <location filename="../QScintilla/MiniEditor.py" line="2954" />
       <source>&amp;Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2963" />
+      <location filename="../QScintilla/MiniEditor.py" line="2964" />
       <source>&amp;Search</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2974" />
       <source>&amp;View</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2979" />
+      <location filename="../QScintilla/MiniEditor.py" line="2980" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2985" />
       <source>&amp;Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2996" />
+      <location filename="../QScintilla/MiniEditor.py" line="2997" />
       <source>File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3008" />
+      <location filename="../QScintilla/MiniEditor.py" line="3009" />
       <source>Edit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3017" />
+      <location filename="../QScintilla/MiniEditor.py" line="3018" />
       <source>Search</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3023" />
+      <location filename="../QScintilla/MiniEditor.py" line="3024" />
       <source>View</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3029" />
+      <location filename="../QScintilla/MiniEditor.py" line="3030" />
       <source>Settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3032" />
+      <location filename="../QScintilla/MiniEditor.py" line="3033" />
       <source>Help</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3045" />
+      <location filename="../QScintilla/MiniEditor.py" line="3046" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3055" />
+      <location filename="../QScintilla/MiniEditor.py" line="3056" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3064" />
+      <location filename="../QScintilla/MiniEditor.py" line="3065" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3073" />
+      <location filename="../QScintilla/MiniEditor.py" line="3074" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3087" />
+      <location filename="../QScintilla/MiniEditor.py" line="3088" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3094" />
+      <location filename="../QScintilla/MiniEditor.py" line="3095" />
       <source>Ready</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3169" />
-      <source>eric Mini Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <source>eric Mini Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3171" />
       <source>The document has unsaved changes.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3197" />
-      <source>Open File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <source>Open File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3199" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3226" />
+      <location filename="../QScintilla/MiniEditor.py" line="3227" />
       <source>File loaded</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3307" />
-      <source>Save File</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <source>Save File</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3309" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3314" />
+      <location filename="../QScintilla/MiniEditor.py" line="3315" />
       <source>File saved</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>[*] - {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3683" />
-      <location filename="../QScintilla/MiniEditor.py" line="3654" />
-      <location filename="../QScintilla/MiniEditor.py" line="3338" />
+      <location filename="../QScintilla/MiniEditor.py" line="3684" />
+      <location filename="../QScintilla/MiniEditor.py" line="3655" />
+      <location filename="../QScintilla/MiniEditor.py" line="3339" />
       <source>Untitled</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
       <source>{0}[*] - {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3649" />
+      <location filename="../QScintilla/MiniEditor.py" line="3650" />
       <source>Printing...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3665" />
+      <location filename="../QScintilla/MiniEditor.py" line="3666" />
       <source>Printing completed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3667" />
+      <location filename="../QScintilla/MiniEditor.py" line="3668" />
       <source>Error while printing</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3670" />
+      <location filename="../QScintilla/MiniEditor.py" line="3671" />
       <source>Printing aborted</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3724" />
-      <source>Select all</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <source>Select all</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3726" />
       <source>Deselect all</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3738" />
+      <location filename="../QScintilla/MiniEditor.py" line="3739" />
       <source>Languages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3741" />
+      <location filename="../QScintilla/MiniEditor.py" line="3742" />
       <source>No Language</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3763" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Guessed</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3785" />
-      <location filename="../QScintilla/MiniEditor.py" line="3767" />
+      <location filename="../QScintilla/MiniEditor.py" line="3786" />
+      <location filename="../QScintilla/MiniEditor.py" line="3768" />
       <source>Alternatives</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3783" />
       <source>Alternatives ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3813" />
-      <source>Pygments Lexer</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <source>Pygments Lexer</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3815" />
       <source>Select the Pygments lexer to apply.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4326" />
+      <location filename="../QScintilla/MiniEditor.py" line="4336" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4327" />
+      <location filename="../QScintilla/MiniEditor.py" line="4337" />
       <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" />
     </message>
   </context>
   <context>
+    <name>MipLocalInstaller</name>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="185" />
+      <source>Unable to find 'lib' in sys.path. Please enter a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="229" />
+      <source>
+
+Package may be partially installed.</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>MipPackageDialog</name>
     <message>
+      <location filename="../MicroPython/MipPackageDialog.py" line="34" />
+      <source>Enter the URL of the package index. Leave empty to use the default index ({0}).</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
       <source>Install Package</source>
       <translation type="unfinished" />
@@ -52109,6 +52135,21 @@
       <source>Install .mpy File</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Target Directory:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Enter the directory to install to (must be contained in sys.path). Leave empty to detect automatically.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Package Index:</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>MiscellaneousChecker</name>
@@ -52768,194 +52809,194 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="603" />
-      <location filename="../MultiProject/MultiProject.py" line="593" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="591" />
       <source>Multi Project Files (*.emj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="599" />
       <source>Save Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="617" />
+      <location filename="../MultiProject/MultiProject.py" line="615" />
       <source>Save File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="618" />
+      <location filename="../MultiProject/MultiProject.py" line="616" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="644" />
+      <location filename="../MultiProject/MultiProject.py" line="642" />
       <source>Close Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="645" />
+      <location filename="../MultiProject/MultiProject.py" line="643" />
       <source>The current multiproject has unsaved changes.</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="696" />
+      <source>New multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="698" />
-      <source>New multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>&amp;New...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="704" />
+      <source>Generate a new multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="706" />
-      <source>Generate a new multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="716" />
+      <source>Open multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="718" />
-      <source>Open multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="720" />
       <source>&amp;Open...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="724" />
+      <source>Open an existing multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="726" />
-      <source>Open an existing multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="728" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="732" />
+      <source>Close multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="734" />
-      <source>Close multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&amp;Close</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="740" />
+      <source>Close the current multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="742" />
-      <source>Close the current multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="748" />
+      <source>Save multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="750" />
-      <source>Save multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="752" />
       <source>&amp;Save</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="756" />
+      <source>Save the current multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="758" />
-      <source>Save the current multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="760" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <source>Save multiproject as</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="766" />
-      <source>Save multiproject as</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="768" />
       <source>Save &amp;as...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="775" />
+      <location filename="../MultiProject/MultiProject.py" line="773" />
       <source>Save the current multiproject to a new file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="778" />
+      <location filename="../MultiProject/MultiProject.py" line="776" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="785" />
+      <source>Add project to multiproject</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="787" />
-      <source>Add project to multiproject</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="789" />
       <source>Add &amp;project...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="796" />
+      <location filename="../MultiProject/MultiProject.py" line="794" />
       <source>Add a project to the current multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="799" />
+      <location filename="../MultiProject/MultiProject.py" line="797" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="807" />
+      <source>Multiproject properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="809" />
-      <source>Multiproject properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="811" />
       <source>&amp;Properties...</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="815" />
+      <source>Show the multiproject properties</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="817" />
-      <source>Show the multiproject properties</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="840" />
+      <location filename="../MultiProject/MultiProject.py" line="838" />
       <source>&amp;Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="841" />
+      <location filename="../MultiProject/MultiProject.py" line="839" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="880" />
       <location filename="../MultiProject/MultiProject.py" line="878" />
+      <location filename="../MultiProject/MultiProject.py" line="876" />
       <source>Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="935" />
+      <location filename="../MultiProject/MultiProject.py" line="933" />
       <source>&amp;Clear</source>
       <translation type="unfinished" />
     </message>
@@ -68827,7 +68868,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="417" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="415" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -68838,7 +68879,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="381" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="379" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="367" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="349" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="239" />
@@ -68876,42 +68917,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="380" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="378" />
       <source>'st-flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="400" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="398" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="401" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="399" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="416" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="444" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="460" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="462" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -69365,49 +69406,49 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="155" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="154" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="151" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="150" />
       <source>Find Next</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="168" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="167" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="164" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="163" />
       <source>Find Prev</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="181" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="180" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="177" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="176" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="197" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="196" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="191" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="190" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="211" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="210" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="205" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="204" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1048" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1045" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="597" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="559" />
       <source>'{0}' was not found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1201" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1198" />
       <source>Replaced {0} occurrences.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1207" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1204" />
       <source>Nothing replaced because '{0}' was not found.</source>
       <translation type="unfinished" />
     </message>
@@ -77117,50 +77158,50 @@
   <context>
     <name>SvnProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="734" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="591" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="594" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="547" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="394" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="593" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="546" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="596" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="549" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="399" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="210" />
       <source>Version Control</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="750" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="607" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="753" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="610" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="224" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="758" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="761" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="415" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="226" />
       <source>Update from repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="756" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="616" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="416" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="230" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="764" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="615" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="767" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="618" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="421" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="232" />
       <source>Commit changes to repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="763" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="620" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="623" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="423" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="237" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="622" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="625" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="428" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="239" />
       <source>Add to repository</source>
@@ -77175,90 +77216,90 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="769" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="626" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="772" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="629" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="436" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="250" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="441" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="252" />
       <source>Remove from repository (and disk)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="634" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="255" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="257" />
       <source>Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="257" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="259" />
       <source>Move</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="776" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="779" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="641" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="443" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="262" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="784" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="787" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="643" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="448" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="264" />
       <source>Add to Changelist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="780" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="783" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="645" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="266" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="788" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="647" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="452" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="268" />
       <source>Remove from Changelist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="272" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="650" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="653" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="274" />
       <source>Show log browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="786" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="655" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="658" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="453" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="279" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="794" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="660" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="281" />
       <source>Show status</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="663" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="287" />
       <source>Show repository info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="793" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="662" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="665" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="801" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="670" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="673" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="465" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="294" />
       <source>Show differences</source>
@@ -77271,12 +77312,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="799" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="802" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="671" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="466" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="298" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="807" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="810" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="679" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="471" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="306" />
       <source>Show differences (extended)</source>
@@ -77289,12 +77330,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="805" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="472" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="310" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="813" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="685" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="477" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="318" />
       <source>Show differences (URLs)</source>
@@ -77307,34 +77348,34 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="812" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="681" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="815" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="684" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="479" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="319" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="820" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="689" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="823" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="692" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="484" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="327" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="818" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="690" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="826" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="829" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="333" />
       <source>Merge changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="822" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="691" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="483" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="329" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="830" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="699" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="488" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="337" />
       <source>Conflicts resolved</source>
@@ -77373,106 +77414,106 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="828" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="697" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="510" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="356" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="836" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="361" />
       <source>Set Property</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="827" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="830" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="699" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="358" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="835" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="838" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="707" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="363" />
       <source>List Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="829" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="698" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="832" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="701" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="360" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="837" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="709" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="365" />
       <source>Delete Property</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="559" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="841" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="710" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="561" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
-      <source>Select all local file entries</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="836" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="562" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="844" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="713" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
-      <source>Select all versioned file entries</source>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
+      <source>Select all local file entries</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="839" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="708" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="847" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="716" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="567" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
+      <source>Select all versioned file entries</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="842" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="570" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="526" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="375" />
       <source>Select all local directory entries</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="843" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="712" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="846" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="715" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="572" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="528" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="374" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="851" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="720" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="571" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="854" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="723" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="574" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="379" />
       <source>Select all versioned directory entries</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="847" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="576" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="532" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="378" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="855" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="724" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="575" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="858" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="727" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="578" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="534" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="383" />
       <source>Configure...</source>
@@ -89983,8 +90024,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
+      <location filename="../QScintilla/MiniEditor.py" line="1685" />
       <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/MiniEditor.py" line="1683" />
       <location filename="../QScintilla/ShellWindow.py" line="435" />
       <location filename="../QScintilla/ShellWindow.py" line="434" />
       <source>Delete current line</source>
@@ -89992,7 +90033,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
+      <location filename="../QScintilla/MiniEditor.py" line="1686" />
       <location filename="../QScintilla/ShellWindow.py" line="436" />
       <source>Ctrl+Shift+L</source>
       <translation type="unfinished" />
@@ -90000,8 +90041,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="1207" />
       <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/MiniEditor.py" line="1205" />
       <location filename="../QScintilla/ShellWindow.py" line="447" />
       <location filename="../QScintilla/ShellWindow.py" line="446" />
       <source>Indent one level</source>
@@ -90009,7 +90050,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
+      <location filename="../QScintilla/MiniEditor.py" line="1208" />
       <location filename="../QScintilla/ShellWindow.py" line="448" />
       <source>Tab</source>
       <translation type="unfinished" />
@@ -90017,8 +90058,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
+      <location filename="../QScintilla/MiniEditor.py" line="1673" />
       <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1671" />
       <location filename="../QScintilla/ShellWindow.py" line="459" />
       <location filename="../QScintilla/ShellWindow.py" line="458" />
       <source>Insert new line</source>
@@ -90026,14 +90067,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
+      <location filename="../QScintilla/MiniEditor.py" line="1674" />
       <location filename="../QScintilla/ShellWindow.py" line="460" />
       <source>Return</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
+      <location filename="../QScintilla/MiniEditor.py" line="1675" />
       <location filename="../QScintilla/ShellWindow.py" line="461" />
       <source>Enter</source>
       <translation type="unfinished" />
@@ -90041,8 +90082,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
+      <location filename="../QScintilla/MiniEditor.py" line="1559" />
       <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1557" />
       <location filename="../QScintilla/ShellWindow.py" line="471" />
       <location filename="../QScintilla/ShellWindow.py" line="470" />
       <source>Delete previous character</source>
@@ -90050,21 +90091,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
+      <location filename="../QScintilla/MiniEditor.py" line="1560" />
       <location filename="../QScintilla/ShellWindow.py" line="472" />
       <source>Backspace</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1566" />
+      <location filename="../QScintilla/MiniEditor.py" line="1567" />
       <location filename="../QScintilla/ShellWindow.py" line="479" />
       <source>Meta+H</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1571" />
+      <location filename="../QScintilla/MiniEditor.py" line="1572" />
       <location filename="../QScintilla/ShellWindow.py" line="484" />
       <source>Shift+Backspace</source>
       <translation type="unfinished" />
@@ -90072,8 +90113,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
+      <location filename="../QScintilla/MiniEditor.py" line="1597" />
       <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1595" />
       <location filename="../QScintilla/ShellWindow.py" line="493" />
       <location filename="../QScintilla/ShellWindow.py" line="492" />
       <source>Delete current character</source>
@@ -90081,14 +90122,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
+      <location filename="../QScintilla/MiniEditor.py" line="1598" />
       <location filename="../QScintilla/ShellWindow.py" line="494" />
       <source>Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1604" />
+      <location filename="../QScintilla/MiniEditor.py" line="1605" />
       <location filename="../QScintilla/ShellWindow.py" line="501" />
       <source>Meta+D</source>
       <translation type="unfinished" />
@@ -90096,8 +90137,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
+      <location filename="../QScintilla/MiniEditor.py" line="1613" />
       <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/MiniEditor.py" line="1611" />
       <location filename="../QScintilla/ShellWindow.py" line="509" />
       <location filename="../QScintilla/ShellWindow.py" line="508" />
       <source>Delete word to left</source>
@@ -90105,7 +90146,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1614" />
       <location filename="../QScintilla/ShellWindow.py" line="510" />
       <source>Ctrl+Backspace</source>
       <translation type="unfinished" />
@@ -90113,8 +90154,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1625" />
       <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/MiniEditor.py" line="1623" />
       <location filename="../QScintilla/ShellWindow.py" line="521" />
       <location filename="../QScintilla/ShellWindow.py" line="520" />
       <source>Delete word to right</source>
@@ -90122,7 +90163,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
+      <location filename="../QScintilla/MiniEditor.py" line="1626" />
       <location filename="../QScintilla/ShellWindow.py" line="522" />
       <source>Ctrl+Del</source>
       <translation type="unfinished" />
@@ -90130,8 +90171,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
+      <location filename="../QScintilla/MiniEditor.py" line="1637" />
       <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/MiniEditor.py" line="1635" />
       <location filename="../QScintilla/ShellWindow.py" line="533" />
       <location filename="../QScintilla/ShellWindow.py" line="532" />
       <source>Delete line to left</source>
@@ -90139,7 +90180,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1638" />
+      <location filename="../QScintilla/MiniEditor.py" line="1639" />
       <location filename="../QScintilla/ShellWindow.py" line="535" />
       <source>Ctrl+Shift+Backspace</source>
       <translation type="unfinished" />
@@ -90147,8 +90188,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
+      <location filename="../QScintilla/MiniEditor.py" line="1651" />
       <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/MiniEditor.py" line="1649" />
       <location filename="../QScintilla/ShellWindow.py" line="547" />
       <location filename="../QScintilla/ShellWindow.py" line="546" />
       <source>Delete line to right</source>
@@ -90156,14 +90197,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1658" />
+      <location filename="../QScintilla/MiniEditor.py" line="1659" />
       <location filename="../QScintilla/ShellWindow.py" line="555" />
       <source>Meta+K</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1663" />
+      <location filename="../QScintilla/MiniEditor.py" line="1664" />
       <location filename="../QScintilla/ShellWindow.py" line="560" />
       <source>Ctrl+Shift+Del</source>
       <translation type="unfinished" />
@@ -90171,8 +90212,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
+      <location filename="../QScintilla/MiniEditor.py" line="895" />
       <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/MiniEditor.py" line="893" />
       <location filename="../QScintilla/ShellWindow.py" line="569" />
       <location filename="../QScintilla/ShellWindow.py" line="568" />
       <source>Move left one character</source>
@@ -90180,14 +90221,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
+      <location filename="../QScintilla/MiniEditor.py" line="896" />
       <location filename="../QScintilla/ShellWindow.py" line="570" />
       <source>Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="904" />
       <location filename="../QScintilla/ShellWindow.py" line="578" />
       <source>Meta+B</source>
       <translation type="unfinished" />
@@ -90195,8 +90236,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="911" />
       <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/MiniEditor.py" line="909" />
       <location filename="../QScintilla/ShellWindow.py" line="585" />
       <location filename="../QScintilla/ShellWindow.py" line="584" />
       <source>Move right one character</source>
@@ -90204,14 +90245,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
+      <location filename="../QScintilla/MiniEditor.py" line="912" />
       <location filename="../QScintilla/ShellWindow.py" line="586" />
       <source>Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="918" />
+      <location filename="../QScintilla/MiniEditor.py" line="919" />
       <location filename="../QScintilla/ShellWindow.py" line="593" />
       <source>Meta+F</source>
       <translation type="unfinished" />
@@ -90219,8 +90260,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="991" />
       <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/MiniEditor.py" line="989" />
       <location filename="../QScintilla/ShellWindow.py" line="601" />
       <location filename="../QScintilla/ShellWindow.py" line="600" />
       <source>Move left one word</source>
@@ -90229,8 +90270,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="998" />
-      <location filename="../QScintilla/MiniEditor.py" line="966" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/MiniEditor.py" line="967" />
       <location filename="../QScintilla/ShellWindow.py" line="609" />
       <source>Alt+Left</source>
       <translation type="unfinished" />
@@ -90238,8 +90279,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1058" />
-      <location filename="../QScintilla/MiniEditor.py" line="1002" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
+      <location filename="../QScintilla/MiniEditor.py" line="1003" />
       <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Ctrl+Left</source>
       <translation type="unfinished" />
@@ -90247,8 +90288,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
+      <location filename="../QScintilla/MiniEditor.py" line="1011" />
       <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/MiniEditor.py" line="1009" />
       <location filename="../QScintilla/ShellWindow.py" line="621" />
       <location filename="../QScintilla/ShellWindow.py" line="620" />
       <source>Move right one word</source>
@@ -90257,8 +90298,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1812" />
-      <location filename="../QScintilla/MiniEditor.py" line="1022" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="1023" />
       <location filename="../QScintilla/ShellWindow.py" line="629" />
       <source>Ctrl+Right</source>
       <translation type="unfinished" />
@@ -90266,8 +90307,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1032" />
-      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1033" />
+      <location filename="../QScintilla/MiniEditor.py" line="1030" />
       <location filename="../QScintilla/ShellWindow.py" line="639" />
       <location filename="../QScintilla/ShellWindow.py" line="636" />
       <source>Move to first visible character in document line</source>
@@ -90276,8 +90317,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2073" />
-      <location filename="../QScintilla/MiniEditor.py" line="1042" />
+      <location filename="../QScintilla/MiniEditor.py" line="2074" />
+      <location filename="../QScintilla/MiniEditor.py" line="1043" />
       <location filename="../QScintilla/ShellWindow.py" line="649" />
       <source>Home</source>
       <translation type="unfinished" />
@@ -90285,8 +90326,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
+      <location filename="../QScintilla/MiniEditor.py" line="1071" />
       <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/MiniEditor.py" line="1069" />
       <location filename="../QScintilla/ShellWindow.py" line="657" />
       <location filename="../QScintilla/ShellWindow.py" line="656" />
       <source>Move to end of document line</source>
@@ -90294,7 +90335,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1078" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
       <location filename="../QScintilla/ShellWindow.py" line="665" />
       <source>Meta+E</source>
       <translation type="unfinished" />
@@ -90302,8 +90343,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1083" />
       <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>End</source>
       <translation type="unfinished" />
@@ -90311,8 +90352,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="927" />
       <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/MiniEditor.py" line="925" />
       <location filename="../QScintilla/ShellWindow.py" line="677" />
       <location filename="../QScintilla/ShellWindow.py" line="676" />
       <source>Move up one line</source>
@@ -90320,14 +90361,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
+      <location filename="../QScintilla/MiniEditor.py" line="928" />
       <location filename="../QScintilla/ShellWindow.py" line="678" />
       <source>Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="934" />
+      <location filename="../QScintilla/MiniEditor.py" line="935" />
       <location filename="../QScintilla/ShellWindow.py" line="685" />
       <source>Meta+P</source>
       <translation type="unfinished" />
@@ -90335,8 +90376,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
+      <location filename="../QScintilla/MiniEditor.py" line="943" />
       <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/MiniEditor.py" line="941" />
       <location filename="../QScintilla/ShellWindow.py" line="693" />
       <location filename="../QScintilla/ShellWindow.py" line="692" />
       <source>Move down one line</source>
@@ -90344,14 +90385,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="944" />
       <location filename="../QScintilla/ShellWindow.py" line="694" />
       <source>Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="950" />
+      <location filename="../QScintilla/MiniEditor.py" line="951" />
       <location filename="../QScintilla/ShellWindow.py" line="701" />
       <source>Meta+N</source>
       <translation type="unfinished" />
@@ -90359,8 +90400,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1194" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
+      <location filename="../QScintilla/MiniEditor.py" line="1092" />
       <location filename="../QScintilla/ShellWindow.py" line="710" />
       <source>Ctrl+Down</source>
       <translation type="unfinished" />
@@ -90368,8 +90409,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1174" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
+      <location filename="../QScintilla/MiniEditor.py" line="1104" />
       <location filename="../QScintilla/ShellWindow.py" line="722" />
       <source>Ctrl+Up</source>
       <translation type="unfinished" />
@@ -90377,8 +90418,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1139" />
       <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/MiniEditor.py" line="1137" />
       <location filename="../QScintilla/ShellWindow.py" line="733" />
       <location filename="../QScintilla/ShellWindow.py" line="732" />
       <source>Move up one page</source>
@@ -90386,7 +90427,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
+      <location filename="../QScintilla/MiniEditor.py" line="1140" />
       <location filename="../QScintilla/ShellWindow.py" line="734" />
       <source>PgUp</source>
       <translation type="unfinished" />
@@ -90394,8 +90435,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
+      <location filename="../QScintilla/MiniEditor.py" line="1151" />
       <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1149" />
       <location filename="../QScintilla/ShellWindow.py" line="745" />
       <location filename="../QScintilla/ShellWindow.py" line="744" />
       <source>Move down one page</source>
@@ -90403,14 +90444,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1152" />
       <location filename="../QScintilla/ShellWindow.py" line="746" />
       <source>PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1158" />
+      <location filename="../QScintilla/MiniEditor.py" line="1159" />
       <location filename="../QScintilla/ShellWindow.py" line="753" />
       <source>Meta+V</source>
       <translation type="unfinished" />
@@ -90418,8 +90459,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
+      <location filename="../QScintilla/MiniEditor.py" line="1859" />
       <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/MiniEditor.py" line="1857" />
       <location filename="../QScintilla/ShellWindow.py" line="761" />
       <location filename="../QScintilla/ShellWindow.py" line="760" />
       <source>Escape</source>
@@ -90427,7 +90468,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
+      <location filename="../QScintilla/MiniEditor.py" line="1860" />
       <location filename="../QScintilla/ShellWindow.py" line="762" />
       <source>Esc</source>
       <translation type="unfinished" />
@@ -90435,8 +90476,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1233" />
+      <location filename="../QScintilla/MiniEditor.py" line="1230" />
       <location filename="../QScintilla/ShellWindow.py" line="775" />
       <location filename="../QScintilla/ShellWindow.py" line="772" />
       <source>Extend selection left one character</source>
@@ -90444,14 +90485,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1235" />
+      <location filename="../QScintilla/MiniEditor.py" line="1236" />
       <location filename="../QScintilla/ShellWindow.py" line="778" />
       <source>Shift+Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1242" />
+      <location filename="../QScintilla/MiniEditor.py" line="1243" />
       <location filename="../QScintilla/ShellWindow.py" line="785" />
       <source>Meta+Shift+B</source>
       <translation type="unfinished" />
@@ -90459,8 +90500,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1253" />
+      <location filename="../QScintilla/MiniEditor.py" line="1250" />
       <location filename="../QScintilla/ShellWindow.py" line="795" />
       <location filename="../QScintilla/ShellWindow.py" line="792" />
       <source>Extend selection right one character</source>
@@ -90468,14 +90509,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1255" />
+      <location filename="../QScintilla/MiniEditor.py" line="1256" />
       <location filename="../QScintilla/ShellWindow.py" line="798" />
       <source>Shift+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1262" />
+      <location filename="../QScintilla/MiniEditor.py" line="1263" />
       <location filename="../QScintilla/ShellWindow.py" line="805" />
       <source>Meta+Shift+F</source>
       <translation type="unfinished" />
@@ -90483,8 +90524,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
+      <location filename="../QScintilla/MiniEditor.py" line="1347" />
       <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/MiniEditor.py" line="1345" />
       <location filename="../QScintilla/ShellWindow.py" line="813" />
       <location filename="../QScintilla/ShellWindow.py" line="812" />
       <source>Extend selection left one word</source>
@@ -90493,8 +90534,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1355" />
-      <location filename="../QScintilla/MiniEditor.py" line="1315" />
+      <location filename="../QScintilla/MiniEditor.py" line="1356" />
+      <location filename="../QScintilla/MiniEditor.py" line="1316" />
       <location filename="../QScintilla/ShellWindow.py" line="822" />
       <source>Alt+Shift+Left</source>
       <translation type="unfinished" />
@@ -90502,8 +90543,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2276" />
-      <location filename="../QScintilla/MiniEditor.py" line="1361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2277" />
+      <location filename="../QScintilla/MiniEditor.py" line="1362" />
       <location filename="../QScintilla/ShellWindow.py" line="828" />
       <source>Ctrl+Shift+Left</source>
       <translation type="unfinished" />
@@ -90511,8 +90552,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1372" />
-      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1373" />
+      <location filename="../QScintilla/MiniEditor.py" line="1370" />
       <location filename="../QScintilla/ShellWindow.py" line="839" />
       <location filename="../QScintilla/ShellWindow.py" line="836" />
       <source>Extend selection right one word</source>
@@ -90522,9 +90563,9 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1383" />
-      <location filename="../QScintilla/MiniEditor.py" line="1337" />
+      <location filename="../QScintilla/MiniEditor.py" line="2151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1384" />
+      <location filename="../QScintilla/MiniEditor.py" line="1338" />
       <location filename="../QScintilla/ShellWindow.py" line="850" />
       <source>Alt+Shift+Right</source>
       <translation type="unfinished" />
@@ -90532,8 +90573,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1837" />
-      <location filename="../QScintilla/MiniEditor.py" line="1389" />
+      <location filename="../QScintilla/MiniEditor.py" line="1838" />
+      <location filename="../QScintilla/MiniEditor.py" line="1390" />
       <location filename="../QScintilla/ShellWindow.py" line="856" />
       <source>Ctrl+Shift+Right</source>
       <translation type="unfinished" />
@@ -90541,8 +90582,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1401" />
-      <location filename="../QScintilla/MiniEditor.py" line="1397" />
+      <location filename="../QScintilla/MiniEditor.py" line="1402" />
+      <location filename="../QScintilla/MiniEditor.py" line="1398" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
       <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
@@ -90550,7 +90591,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1412" />
+      <location filename="../QScintilla/MiniEditor.py" line="1413" />
       <location filename="../QScintilla/ShellWindow.py" line="879" />
       <source>Shift+Home</source>
       <translation type="unfinished" />
@@ -90558,8 +90599,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1422" />
-      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1423" />
+      <location filename="../QScintilla/MiniEditor.py" line="1420" />
       <location filename="../QScintilla/ShellWindow.py" line="889" />
       <location filename="../QScintilla/ShellWindow.py" line="886" />
       <source>Extend selection to end of document line</source>
@@ -90567,14 +90608,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1432" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
       <location filename="../QScintilla/ShellWindow.py" line="899" />
       <source>Meta+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1437" />
       <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Shift+End</source>
       <translation type="unfinished" />
@@ -90583,21 +90624,21 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2532" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
       <location filename="../QScintilla/ShellWindow.py" line="917" />
       <source>Search</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2534" />
+      <location filename="../QScintilla/MiniEditor.py" line="2535" />
       <location filename="../QScintilla/ShellWindow.py" line="919" />
       <source>&amp;Search...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2536" />
+      <location filename="../QScintilla/MiniEditor.py" line="2537" />
       <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
@@ -90605,7 +90646,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2543" />
+      <location filename="../QScintilla/MiniEditor.py" line="2544" />
       <location filename="../QScintilla/ShellWindow.py" line="928" />
       <source>Search for a text</source>
       <translation type="unfinished" />
@@ -90617,21 +90658,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
       <location filename="../QScintilla/ShellWindow.py" line="943" />
       <source>Search next</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2560" />
+      <location filename="../QScintilla/MiniEditor.py" line="2561" />
       <location filename="../QScintilla/ShellWindow.py" line="945" />
       <source>Search &amp;next</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2562" />
+      <location filename="../QScintilla/MiniEditor.py" line="2563" />
       <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>F3</source>
       <comment>Search|Search next</comment>
@@ -90639,7 +90680,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2569" />
+      <location filename="../QScintilla/MiniEditor.py" line="2570" />
       <location filename="../QScintilla/ShellWindow.py" line="954" />
       <source>Search next occurrence of text</source>
       <translation type="unfinished" />
@@ -90651,21 +90692,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2584" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
       <location filename="../QScintilla/ShellWindow.py" line="971" />
       <source>Search previous</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2586" />
+      <location filename="../QScintilla/MiniEditor.py" line="2587" />
       <location filename="../QScintilla/ShellWindow.py" line="973" />
       <source>Search &amp;previous</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2588" />
+      <location filename="../QScintilla/MiniEditor.py" line="2589" />
       <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
@@ -90673,7 +90714,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2597" />
+      <location filename="../QScintilla/MiniEditor.py" line="2598" />
       <location filename="../QScintilla/ShellWindow.py" line="984" />
       <source>Search previous occurrence of text</source>
       <translation type="unfinished" />
@@ -90685,21 +90726,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2757" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
       <location filename="../QScintilla/ShellWindow.py" line="1010" />
       <source>Zoom in</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2759" />
+      <location filename="../QScintilla/MiniEditor.py" line="2760" />
       <location filename="../QScintilla/ShellWindow.py" line="1012" />
       <source>Zoom &amp;in</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/MiniEditor.py" line="2762" />
       <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
@@ -90707,7 +90748,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2764" />
+      <location filename="../QScintilla/MiniEditor.py" line="2765" />
       <location filename="../QScintilla/ShellWindow.py" line="1017" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
@@ -90715,35 +90756,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/MiniEditor.py" line="2771" />
       <location filename="../QScintilla/ShellWindow.py" line="1023" />
       <source>Zoom in on the text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2773" />
+      <location filename="../QScintilla/MiniEditor.py" line="2774" />
       <location filename="../QScintilla/ShellWindow.py" line="1026" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2783" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
       <location filename="../QScintilla/ShellWindow.py" line="1036" />
       <source>Zoom out</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2785" />
+      <location filename="../QScintilla/MiniEditor.py" line="2786" />
       <location filename="../QScintilla/ShellWindow.py" line="1038" />
       <source>Zoom &amp;out</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/MiniEditor.py" line="2788" />
       <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
@@ -90751,7 +90792,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2790" />
+      <location filename="../QScintilla/MiniEditor.py" line="2791" />
       <location filename="../QScintilla/ShellWindow.py" line="1043" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
@@ -90759,35 +90800,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/MiniEditor.py" line="2797" />
       <location filename="../QScintilla/ShellWindow.py" line="1049" />
       <source>Zoom out on the text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2799" />
+      <location filename="../QScintilla/MiniEditor.py" line="2800" />
       <location filename="../QScintilla/ShellWindow.py" line="1052" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2809" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
       <location filename="../QScintilla/ShellWindow.py" line="1062" />
       <source>Zoom reset</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2811" />
+      <location filename="../QScintilla/MiniEditor.py" line="2812" />
       <location filename="../QScintilla/ShellWindow.py" line="1064" />
       <source>Zoom &amp;reset</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2813" />
+      <location filename="../QScintilla/MiniEditor.py" line="2814" />
       <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
@@ -90795,42 +90836,42 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/MiniEditor.py" line="2821" />
       <location filename="../QScintilla/ShellWindow.py" line="1073" />
       <source>Reset the zoom of the text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2823" />
+      <location filename="../QScintilla/MiniEditor.py" line="2824" />
       <location filename="../QScintilla/ShellWindow.py" line="1076" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2834" />
+      <location filename="../QScintilla/MiniEditor.py" line="2835" />
       <location filename="../QScintilla/ShellWindow.py" line="1087" />
       <source>Zoom</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2836" />
+      <location filename="../QScintilla/MiniEditor.py" line="2837" />
       <location filename="../QScintilla/ShellWindow.py" line="1089" />
       <source>&amp;Zoom</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/MiniEditor.py" line="2844" />
       <location filename="../QScintilla/ShellWindow.py" line="1096" />
       <source>Zoom the text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2846" />
+      <location filename="../QScintilla/MiniEditor.py" line="2847" />
       <location filename="../QScintilla/ShellWindow.py" line="1099" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation type="unfinished" />
@@ -90838,984 +90879,984 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="804" />
       <location filename="../ViewManager/ViewManager.py" line="802" />
-      <location filename="../QScintilla/MiniEditor.py" line="740" />
+      <location filename="../QScintilla/MiniEditor.py" line="741" />
       <source>Print Preview</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
+      <location filename="../QScintilla/MiniEditor.py" line="959" />
       <location filename="../QScintilla/MiniEditor.py" line="958" />
-      <location filename="../QScintilla/MiniEditor.py" line="957" />
       <source>Move left one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
+      <location filename="../QScintilla/MiniEditor.py" line="975" />
       <location filename="../QScintilla/MiniEditor.py" line="974" />
-      <location filename="../QScintilla/MiniEditor.py" line="973" />
       <source>Move right one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2128" />
-      <location filename="../QScintilla/MiniEditor.py" line="1018" />
-      <location filename="../QScintilla/MiniEditor.py" line="982" />
+      <location filename="../QScintilla/MiniEditor.py" line="2129" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/MiniEditor.py" line="983" />
       <source>Alt+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1051" />
       <location filename="../QScintilla/MiniEditor.py" line="1050" />
-      <location filename="../QScintilla/MiniEditor.py" line="1049" />
       <source>Move to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="1063" />
       <source>Alt+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
+      <location filename="../QScintilla/MiniEditor.py" line="1091" />
       <location filename="../QScintilla/MiniEditor.py" line="1090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1089" />
       <source>Scroll view down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
+      <location filename="../QScintilla/MiniEditor.py" line="1103" />
       <location filename="../QScintilla/MiniEditor.py" line="1102" />
-      <location filename="../QScintilla/MiniEditor.py" line="1101" />
       <source>Scroll view up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
+      <location filename="../QScintilla/MiniEditor.py" line="1115" />
       <location filename="../QScintilla/MiniEditor.py" line="1114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1113" />
       <source>Move up one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
+      <location filename="../QScintilla/MiniEditor.py" line="1116" />
       <source>Alt+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
+      <location filename="../QScintilla/MiniEditor.py" line="1127" />
       <location filename="../QScintilla/MiniEditor.py" line="1126" />
-      <location filename="../QScintilla/MiniEditor.py" line="1125" />
       <source>Move down one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
+      <location filename="../QScintilla/MiniEditor.py" line="1128" />
       <source>Alt+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
+      <location filename="../QScintilla/MiniEditor.py" line="1167" />
       <location filename="../QScintilla/MiniEditor.py" line="1166" />
-      <location filename="../QScintilla/MiniEditor.py" line="1165" />
       <source>Move to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1178" />
+      <location filename="../QScintilla/MiniEditor.py" line="1179" />
       <source>Ctrl+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
+      <location filename="../QScintilla/MiniEditor.py" line="1187" />
       <location filename="../QScintilla/MiniEditor.py" line="1186" />
-      <location filename="../QScintilla/MiniEditor.py" line="1185" />
       <source>Move to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1198" />
+      <location filename="../QScintilla/MiniEditor.py" line="1199" />
       <source>Ctrl+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
+      <location filename="../QScintilla/MiniEditor.py" line="1219" />
       <location filename="../QScintilla/MiniEditor.py" line="1218" />
-      <location filename="../QScintilla/MiniEditor.py" line="1217" />
       <source>Unindent one level</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
+      <location filename="../QScintilla/MiniEditor.py" line="1220" />
       <source>Shift+Tab</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
+      <location filename="../QScintilla/MiniEditor.py" line="1271" />
       <location filename="../QScintilla/MiniEditor.py" line="1270" />
-      <location filename="../QScintilla/MiniEditor.py" line="1269" />
       <source>Extend selection up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
+      <location filename="../QScintilla/MiniEditor.py" line="1272" />
       <source>Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1278" />
+      <location filename="../QScintilla/MiniEditor.py" line="1279" />
       <source>Meta+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
+      <location filename="../QScintilla/MiniEditor.py" line="1287" />
       <location filename="../QScintilla/MiniEditor.py" line="1286" />
-      <location filename="../QScintilla/MiniEditor.py" line="1285" />
       <source>Extend selection down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
+      <location filename="../QScintilla/MiniEditor.py" line="1288" />
       <source>Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1294" />
+      <location filename="../QScintilla/MiniEditor.py" line="1295" />
       <source>Meta+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1304" />
-      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1305" />
+      <location filename="../QScintilla/MiniEditor.py" line="1302" />
       <source>Extend selection left one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1326" />
-      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1327" />
+      <location filename="../QScintilla/MiniEditor.py" line="1324" />
       <source>Extend selection right one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1446" />
-      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1447" />
+      <location filename="../QScintilla/MiniEditor.py" line="1444" />
       <source>Extend selection up one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1449" />
+      <location filename="../QScintilla/MiniEditor.py" line="1450" />
       <source>Alt+Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1462" />
-      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1463" />
+      <location filename="../QScintilla/MiniEditor.py" line="1460" />
       <source>Extend selection down one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1465" />
+      <location filename="../QScintilla/MiniEditor.py" line="1466" />
       <source>Alt+Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1477" />
       <location filename="../QScintilla/MiniEditor.py" line="1476" />
-      <location filename="../QScintilla/MiniEditor.py" line="1475" />
       <source>Extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
+      <location filename="../QScintilla/MiniEditor.py" line="1478" />
       <source>Shift+PgUp</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="1489" />
       <location filename="../QScintilla/MiniEditor.py" line="1488" />
-      <location filename="../QScintilla/MiniEditor.py" line="1487" />
       <source>Extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
+      <location filename="../QScintilla/MiniEditor.py" line="1490" />
       <source>Shift+PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1496" />
+      <location filename="../QScintilla/MiniEditor.py" line="1497" />
       <source>Meta+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1506" />
-      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1507" />
+      <location filename="../QScintilla/MiniEditor.py" line="1504" />
       <source>Extend selection to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1516" />
+      <location filename="../QScintilla/MiniEditor.py" line="1517" />
       <source>Ctrl+Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1521" />
+      <location filename="../QScintilla/MiniEditor.py" line="1522" />
       <source>Ctrl+Shift+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1533" />
+      <location filename="../QScintilla/MiniEditor.py" line="1530" />
       <source>Extend selection to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1543" />
+      <location filename="../QScintilla/MiniEditor.py" line="1544" />
       <source>Ctrl+Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1549" />
+      <location filename="../QScintilla/MiniEditor.py" line="1550" />
       <source>Ctrl+Shift+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1583" />
+      <location filename="../QScintilla/MiniEditor.py" line="1580" />
       <source>Delete previous character if not at start of line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1697" />
       <location filename="../QScintilla/MiniEditor.py" line="1696" />
-      <location filename="../QScintilla/MiniEditor.py" line="1695" />
       <source>Duplicate current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
+      <location filename="../QScintilla/MiniEditor.py" line="1698" />
       <source>Ctrl+D</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1710" />
-      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1711" />
+      <location filename="../QScintilla/MiniEditor.py" line="1708" />
       <source>Swap current and previous lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1713" />
+      <location filename="../QScintilla/MiniEditor.py" line="1714" />
       <source>Ctrl+T</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="1725" />
       <location filename="../QScintilla/MiniEditor.py" line="1724" />
-      <location filename="../QScintilla/MiniEditor.py" line="1723" />
       <source>Reverse selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
+      <location filename="../QScintilla/MiniEditor.py" line="1726" />
       <source>Meta+Alt+R</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
+      <location filename="../QScintilla/MiniEditor.py" line="1737" />
       <location filename="../QScintilla/MiniEditor.py" line="1736" />
-      <location filename="../QScintilla/MiniEditor.py" line="1735" />
       <source>Cut current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
+      <location filename="../QScintilla/MiniEditor.py" line="1738" />
       <source>Alt+Shift+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
+      <location filename="../QScintilla/MiniEditor.py" line="1749" />
       <location filename="../QScintilla/MiniEditor.py" line="1748" />
-      <location filename="../QScintilla/MiniEditor.py" line="1747" />
       <source>Copy current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="1750" />
       <source>Ctrl+Shift+T</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
+      <location filename="../QScintilla/MiniEditor.py" line="1761" />
       <location filename="../QScintilla/MiniEditor.py" line="1760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1759" />
       <source>Toggle insert/overtype</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
+      <location filename="../QScintilla/MiniEditor.py" line="1762" />
       <source>Ins</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1775" />
+      <location filename="../QScintilla/MiniEditor.py" line="1772" />
       <source>Convert selection to lower case</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1777" />
+      <location filename="../QScintilla/MiniEditor.py" line="1778" />
       <source>Alt+Shift+U</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1791" />
+      <location filename="../QScintilla/MiniEditor.py" line="1788" />
       <source>Convert selection to upper case</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1793" />
+      <location filename="../QScintilla/MiniEditor.py" line="1794" />
       <source>Ctrl+Shift+U</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
+      <location filename="../QScintilla/MiniEditor.py" line="1805" />
       <location filename="../QScintilla/MiniEditor.py" line="1804" />
-      <location filename="../QScintilla/MiniEditor.py" line="1803" />
       <source>Move to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1816" />
+      <location filename="../QScintilla/MiniEditor.py" line="1817" />
       <source>Alt+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1827" />
+      <location filename="../QScintilla/MiniEditor.py" line="1824" />
       <source>Extend selection to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
+      <location filename="../QScintilla/MiniEditor.py" line="1847" />
       <location filename="../QScintilla/MiniEditor.py" line="1846" />
-      <location filename="../QScintilla/MiniEditor.py" line="1845" />
       <source>Formfeed</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1872" />
-      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1873" />
+      <location filename="../QScintilla/MiniEditor.py" line="1870" />
       <source>Extend rectangular selection down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1875" />
+      <location filename="../QScintilla/MiniEditor.py" line="1876" />
       <source>Alt+Ctrl+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1883" />
+      <location filename="../QScintilla/MiniEditor.py" line="1884" />
       <source>Meta+Alt+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1894" />
-      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1895" />
+      <location filename="../QScintilla/MiniEditor.py" line="1892" />
       <source>Extend rectangular selection up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1897" />
+      <location filename="../QScintilla/MiniEditor.py" line="1898" />
       <source>Alt+Ctrl+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1905" />
+      <location filename="../QScintilla/MiniEditor.py" line="1906" />
       <source>Meta+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1916" />
-      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1917" />
+      <location filename="../QScintilla/MiniEditor.py" line="1914" />
       <source>Extend rectangular selection left one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1919" />
+      <location filename="../QScintilla/MiniEditor.py" line="1920" />
       <source>Alt+Ctrl+Left</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1927" />
+      <location filename="../QScintilla/MiniEditor.py" line="1928" />
       <source>Meta+Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1938" />
-      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1939" />
+      <location filename="../QScintilla/MiniEditor.py" line="1936" />
       <source>Extend rectangular selection right one character</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1941" />
+      <location filename="../QScintilla/MiniEditor.py" line="1942" />
       <source>Alt+Ctrl+Right</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1949" />
+      <location filename="../QScintilla/MiniEditor.py" line="1950" />
       <source>Meta+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1962" />
-      <location filename="../QScintilla/MiniEditor.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1963" />
+      <location filename="../QScintilla/MiniEditor.py" line="1958" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1975" />
+      <location filename="../QScintilla/MiniEditor.py" line="1976" />
       <source>Alt+Shift+Home</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1986" />
-      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1987" />
+      <location filename="../QScintilla/MiniEditor.py" line="1984" />
       <source>Extend rectangular selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1997" />
+      <location filename="../QScintilla/MiniEditor.py" line="1998" />
       <source>Meta+Alt+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2002" />
+      <location filename="../QScintilla/MiniEditor.py" line="2003" />
       <source>Alt+Shift+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2012" />
-      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2013" />
+      <location filename="../QScintilla/MiniEditor.py" line="2010" />
       <source>Extend rectangular selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2015" />
+      <location filename="../QScintilla/MiniEditor.py" line="2016" />
       <source>Alt+Shift+PgUp</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2028" />
-      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2029" />
+      <location filename="../QScintilla/MiniEditor.py" line="2026" />
       <source>Extend rectangular selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2031" />
+      <location filename="../QScintilla/MiniEditor.py" line="2032" />
       <source>Alt+Shift+PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2039" />
+      <location filename="../QScintilla/MiniEditor.py" line="2040" />
       <source>Meta+Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2515" />
       <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2513" />
+      <location filename="../QScintilla/MiniEditor.py" line="2049" />
       <location filename="../QScintilla/MiniEditor.py" line="2048" />
-      <location filename="../QScintilla/MiniEditor.py" line="2047" />
       <source>Duplicate current selection</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2516" />
+      <location filename="../QScintilla/MiniEditor.py" line="2050" />
       <source>Ctrl+Shift+D</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2063" />
-      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2061" />
       <source>Scroll to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
+      <location filename="../QScintilla/MiniEditor.py" line="2083" />
       <location filename="../QScintilla/MiniEditor.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="2081" />
       <source>Scroll to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2101" />
-      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2102" />
+      <location filename="../QScintilla/MiniEditor.py" line="2099" />
       <source>Scroll vertically to center current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2111" />
+      <location filename="../QScintilla/MiniEditor.py" line="2112" />
       <source>Meta+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
+      <location filename="../QScintilla/MiniEditor.py" line="2121" />
       <location filename="../QScintilla/MiniEditor.py" line="2120" />
-      <location filename="../QScintilla/MiniEditor.py" line="2119" />
       <source>Move to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2139" />
-      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2140" />
+      <location filename="../QScintilla/MiniEditor.py" line="2137" />
       <source>Extend selection to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2162" />
-      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2163" />
+      <location filename="../QScintilla/MiniEditor.py" line="2160" />
       <source>Move to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2179" />
-      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2180" />
+      <location filename="../QScintilla/MiniEditor.py" line="2177" />
       <source>Extend selection to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2196" />
-      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2197" />
+      <location filename="../QScintilla/MiniEditor.py" line="2194" />
       <source>Move to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2206" />
+      <location filename="../QScintilla/MiniEditor.py" line="2207" />
       <source>Meta+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2218" />
+      <location filename="../QScintilla/MiniEditor.py" line="2215" />
       <source>Extend selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2228" />
+      <location filename="../QScintilla/MiniEditor.py" line="2229" />
       <source>Meta+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2241" />
-      <location filename="../QScintilla/MiniEditor.py" line="2237" />
+      <location filename="../QScintilla/MiniEditor.py" line="2242" />
+      <location filename="../QScintilla/MiniEditor.py" line="2238" />
       <source>Extend rectangular selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2253" />
+      <location filename="../QScintilla/MiniEditor.py" line="2254" />
       <source>Meta+Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2265" />
-      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2266" />
+      <location filename="../QScintilla/MiniEditor.py" line="2263" />
       <source>Extend selection to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2288" />
-      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2289" />
+      <location filename="../QScintilla/MiniEditor.py" line="2286" />
       <source>Move to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2306" />
-      <location filename="../QScintilla/MiniEditor.py" line="2302" />
+      <location filename="../QScintilla/MiniEditor.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="2303" />
       <source>Extend selection to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2325" />
-      <location filename="../QScintilla/MiniEditor.py" line="2321" />
+      <location filename="../QScintilla/MiniEditor.py" line="2326" />
+      <location filename="../QScintilla/MiniEditor.py" line="2322" />
       <source>Move to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2345" />
-      <location filename="../QScintilla/MiniEditor.py" line="2340" />
+      <location filename="../QScintilla/MiniEditor.py" line="2346" />
+      <location filename="../QScintilla/MiniEditor.py" line="2341" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2364" />
-      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2365" />
+      <location filename="../QScintilla/MiniEditor.py" line="2362" />
       <source>Move to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2381" />
-      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2382" />
+      <location filename="../QScintilla/MiniEditor.py" line="2379" />
       <source>Extend selection to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="2397" />
       <location filename="../QScintilla/MiniEditor.py" line="2396" />
-      <location filename="../QScintilla/MiniEditor.py" line="2395" />
       <source>Stuttered move up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2411" />
-      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2412" />
+      <location filename="../QScintilla/MiniEditor.py" line="2409" />
       <source>Stuttered extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2428" />
-      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2429" />
+      <location filename="../QScintilla/MiniEditor.py" line="2426" />
       <source>Stuttered move down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2446" />
+      <location filename="../QScintilla/MiniEditor.py" line="2443" />
       <source>Stuttered extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2462" />
-      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2463" />
+      <location filename="../QScintilla/MiniEditor.py" line="2460" />
       <source>Delete right to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2472" />
+      <location filename="../QScintilla/MiniEditor.py" line="2473" />
       <source>Alt+Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2484" />
+      <location filename="../QScintilla/MiniEditor.py" line="2481" />
       <source>Move selected lines up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2500" />
-      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2501" />
+      <location filename="../QScintilla/MiniEditor.py" line="2498" />
       <source>Move selected lines down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2546" />
+      <location filename="../QScintilla/MiniEditor.py" line="2547" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2572" />
+      <location filename="../QScintilla/MiniEditor.py" line="2573" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2602" />
+      <location filename="../QScintilla/MiniEditor.py" line="2603" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2616" />
-      <location filename="../QScintilla/MiniEditor.py" line="2614" />
+      <location filename="../QScintilla/MiniEditor.py" line="2617" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Clear search markers</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2618" />
+      <location filename="../QScintilla/MiniEditor.py" line="2619" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2627" />
+      <location filename="../QScintilla/MiniEditor.py" line="2628" />
       <source>Clear all displayed search markers</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2632" />
+      <location filename="../QScintilla/MiniEditor.py" line="2633" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2642" />
+      <location filename="../QScintilla/MiniEditor.py" line="2643" />
       <source>Replace</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2644" />
       <source>&amp;Replace...</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2645" />
+      <location filename="../QScintilla/MiniEditor.py" line="2646" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2652" />
+      <location filename="../QScintilla/MiniEditor.py" line="2653" />
       <source>Replace some text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2655" />
+      <location filename="../QScintilla/MiniEditor.py" line="2656" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2669" />
-      <location filename="../QScintilla/MiniEditor.py" line="2667" />
+      <location filename="../QScintilla/MiniEditor.py" line="2670" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2671" />
+      <location filename="../QScintilla/MiniEditor.py" line="2672" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2680" />
+      <location filename="../QScintilla/MiniEditor.py" line="2681" />
       <source>Replace the found text and search the next occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2685" />
+      <location filename="../QScintilla/MiniEditor.py" line="2686" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2701" />
-      <location filename="../QScintilla/MiniEditor.py" line="2699" />
+      <location filename="../QScintilla/MiniEditor.py" line="2702" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2703" />
+      <location filename="../QScintilla/MiniEditor.py" line="2704" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2712" />
+      <location filename="../QScintilla/MiniEditor.py" line="2713" />
       <source>Replace the found text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2715" />
+      <location filename="../QScintilla/MiniEditor.py" line="2716" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2728" />
-      <location filename="../QScintilla/MiniEditor.py" line="2726" />
+      <location filename="../QScintilla/MiniEditor.py" line="2729" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2730" />
+      <location filename="../QScintilla/MiniEditor.py" line="2731" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2739" />
+      <location filename="../QScintilla/MiniEditor.py" line="2740" />
       <source>Replace search text occurrences</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2742" />
+      <location filename="../QScintilla/MiniEditor.py" line="2743" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_es.ts	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/i18n/eric7_es.ts	Sat Apr 15 18:22:09 2023 +0200
@@ -1730,77 +1730,77 @@
   <context>
     <name>BaseDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="190" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="196" />
       <source>Device Data Not Available</source>
       <translation>Datos del Dispositivo No Disponibles</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="191" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="197" />
       <source>&lt;p&gt;The device data is not available. Try to connect to the device again. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Los datos del dispositivo no están dispoibles. Trate de conectar el dispositivo de nuevo. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="244" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="250" />
       <source>Unsupported Device</source>
       <translation>Dispositivo no soportado</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="254" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="260" />
       <source>REPL is not supported by this device.</source>
       <translation>REPL no soportado por este dispositivo.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="273" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="279" />
       <source>Plotter is not supported by this device.</source>
       <translation>Plotter no soportado por este dispositivo.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="292" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="298" />
       <source>Running scripts is not supported by this device.</source>
       <translation>La ejecución de scripts no está soportada por este dispositivo.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="311" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="317" />
       <source>File Manager is not supported by this device.</source>
       <translation>El Gestor de Archivos no está soportado por este dispositivo.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="366" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="372" />
       <source>Select Device Directory</source>
       <translation>Seleccionar Directorio para Dispositivo</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="367" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="373" />
       <source>Select the directory for the connected device:</source>
       <translation>Seleccionar el directorio para el dispositivo conectado:</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="513" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="519" />
       <source>Detected an error without indications.</source>
       <translation>Detectado un error sin indicaciones.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1400" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1464" />
       <source>Operation not supported.</source>
       <translation>Operación no soportada.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>Yes</source>
       <translation>Si</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>No</source>
       <translation>No</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>yes</source>
       <translation>si</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>no</source>
       <translation>no</translation>
     </message>
@@ -3976,17 +3976,17 @@
       <translation>Privada Aleatoria No Resoluble</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="141" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
       <source>WIZnet 5x00 Ethernet</source>
       <translation>WIZnet 5x00 Ethernet</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="143" />
       <source>&lt;p&gt;Support for &lt;b&gt;WIZnet 5x00&lt;/b&gt; Ethernet boards could not be detected. Is the module &lt;b&gt;adafruit_wiznet5k&lt;/b&gt; installed?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Soporte para placas &lt;b&gt;WIZnet 5x00&lt;/b&gt; Ethernet no detectado. ¿Está el módulo &lt;b&gt;adafruit_wiznet5k&lt;/b&gt; instalado?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="176" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="177" />
       <source>CircuitPython</source>
       <translation>CircuitPython</translation>
     </message>
@@ -4154,114 +4154,114 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1127" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="864" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1128" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="865" />
       <source>unknown ({0})</source>
       <translation>({0}) desconocido</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1576" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1499" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1039" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="960" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1577" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1500" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1040" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="961" />
       <source>The device volume is not available.</source>
       <translation>El volumen de dispositivo no está disponible.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1003" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="975" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
       <source>Write WiFi Credentials</source>
       <translation>Escribir Credenciales WiFi</translation>
     </message>
     <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1539" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1005" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="977" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Reemplazarlo?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1546" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="984" />
+      <source>Aborted</source>
+      <translation>Abortado</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1195" />
+      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
+      <translation>CircuitPython no soporta el ajuste de parámetros IPv4 del punto de acceso de la WiFi.</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1266" />
+      <source>CircuitPython does not support reporting of connected clients.</source>
+      <translation>CircuitPython no soporta información de clientes conectados.</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
+      <source>Active</source>
+      <translation>Activo</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
+      <source>Connected</source>
+      <translation>Conectado</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
+      <source>IPv4 Address</source>
+      <translation>Dirección IPv4</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
+      <source>Netmask</source>
+      <translation>Máscara de Red</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
+      <source>Gateway</source>
+      <translation>Gateway</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
+      <source>DNS</source>
+      <translation>DNS</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1677" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
+      <source>MAC-Address</source>
+      <translation>Dirección MAC</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
+      <source>Chip Type</source>
+      <translation>Tipo de Chip</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1358" />
+      <source>max. Sockets</source>
+      <translation>máx. Sockets</translation>
+    </message>
+    <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1538" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Reemplazarlo?&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1545" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1011" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="983" />
-      <source>Aborted</source>
-      <translation>Abortado</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1194" />
-      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
-      <translation>CircuitPython no soporta el ajuste de parámetros IPv4 del punto de acceso de la WiFi.</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1265" />
-      <source>CircuitPython does not support reporting of connected clients.</source>
-      <translation>CircuitPython no soporta información de clientes conectados.</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1674" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1349" />
-      <source>Active</source>
-      <translation>Activo</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1680" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
-      <source>Connected</source>
-      <translation>Conectado</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
-      <source>IPv4 Address</source>
-      <translation>Dirección IPv4</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
-      <source>Netmask</source>
-      <translation>Máscara de Red</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
-      <source>Gateway</source>
-      <translation>Gateway</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
-      <source>DNS</source>
-      <translation>DNS</translation>
+      <source>Write Connect Script</source>
+      <translation>Escribir Script de Conexión</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1676" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
-      <source>MAC-Address</source>
-      <translation>Dirección MAC</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
-      <source>Chip Type</source>
-      <translation>Tipo de Chip</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
-      <source>max. Sockets</source>
-      <translation>máx. Sockets</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1537" />
-      <source>Write Connect Script</source>
-      <translation>Escribir Script de Conexión</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
       <source>Name</source>
       <translation>Nombre</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1678" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1679" />
       <source>Address Type</source>
       <translation>Tipo de Dirección</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1682" />
       <source>Advertising</source>
       <translation>Publicitando</translation>
     </message>
@@ -10276,12 +10276,12 @@
       <translation>&lt;p&gt;No ha sido posible lanzar el extremo del depurador.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1378" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1380" />
       <source>Debug Protocol Error</source>
       <translation>Error de Protocolo de Depuración</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1379" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1381" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;La respuesta recibida desde el backend del depurador no se ha podido descodificar. Por favor, informar de este problema junto con los datos recibidos a la dirección de email para bugs de eric.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Datos:&lt;br/&gt;{1}&lt;/p&gt;</translation>
     </message>
@@ -12131,7 +12131,7 @@
       <translation>Sacar de comentario</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9146" />
+      <location filename="../QScintilla/Editor.py" line="9154" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation>Generar Docstring</translation>
@@ -12404,7 +12404,7 @@
       <translation>Corrección ortográfica</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8264" />
+      <location filename="../QScintilla/Editor.py" line="8272" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation>Corrección ortográfica...</translation>
@@ -12465,7 +12465,7 @@
       <translation>Editar punto de interrupción...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5923" />
+      <location filename="../QScintilla/Editor.py" line="5932" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation>Activar punto de interrupción</translation>
@@ -12699,344 +12699,344 @@
       <translation>Introducir la ruta completa de archivo del dispositivo:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5097" />
+      <location filename="../QScintilla/Editor.py" line="5106" />
       <source>Autocompletion</source>
       <translation>Autocompletar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5098" />
+      <location filename="../QScintilla/Editor.py" line="5107" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>Autocompletar no está disponible porque no hay origen de datos para autocompletar.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5226" />
+      <location filename="../QScintilla/Editor.py" line="5235" />
       <source>Auto-Completion Provider</source>
       <translation>Proveedor de Autocompletado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5227" />
+      <location filename="../QScintilla/Editor.py" line="5236" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation>El proveedor de lista de completado'{0}' ya está registrado. Se ignora la solicitud duplicada.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5519" />
+      <location filename="../QScintilla/Editor.py" line="5528" />
       <source>Call-Tips Provider</source>
       <translation>Proveedor de Call-Tips</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5520" />
+      <location filename="../QScintilla/Editor.py" line="5529" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation>El proveedor de call-tips'{0}' ya está registrado. Se ignora la solicitud duplicada.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5927" />
+      <location filename="../QScintilla/Editor.py" line="5936" />
       <source>Disable breakpoint</source>
       <translation>Deshabilitar punto de interrupción</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6307" />
+      <location filename="../QScintilla/Editor.py" line="6315" />
       <source>Code Coverage</source>
       <translation>Cobertura de codigo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6308" />
+      <location filename="../QScintilla/Editor.py" line="6316" />
       <source>Please select a coverage file</source>
       <translation>Por favor seleccione un archivo de cobertura</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="6391" />
       <location filename="../QScintilla/Editor.py" line="6383" />
-      <location filename="../QScintilla/Editor.py" line="6375" />
       <source>Show Code Coverage Annotations</source>
       <translation>Mostrar Anotaciones de Cobertura de Código</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6376" />
-      <source>All lines have been covered.</source>
-      <translation>Todas las líneas han sido cubiertas.</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="6384" />
+      <source>All lines have been covered.</source>
+      <translation>Todas las líneas han sido cubiertas.</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="6392" />
       <source>There is no coverage file available.</source>
       <translation>No hay archivo de cobertura disponible.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6488" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <source>Profile Data</source>
       <translation>Datos de profiling</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6489" />
+      <location filename="../QScintilla/Editor.py" line="6497" />
       <source>Please select a profile file</source>
       <translation>Por favor seleccione un archivo de profiling</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6650" />
-      <location filename="../QScintilla/Editor.py" line="6644" />
+      <location filename="../QScintilla/Editor.py" line="6658" />
+      <location filename="../QScintilla/Editor.py" line="6652" />
       <source>Syntax Error</source>
       <translation>Error de sintaxis</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6651" />
+      <location filename="../QScintilla/Editor.py" line="6659" />
       <source>No syntax error message available.</source>
       <translation>No hay mensajes de error de sintaxis disponibles.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
-      <location filename="../QScintilla/Editor.py" line="6856" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6864" />
       <source>Warning</source>
       <translation>Advertencia</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
       <source>No warning messages available.</source>
       <translation>No hay mensajes de advertencia disponibles.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6926" />
+      <location filename="../QScintilla/Editor.py" line="6934" />
       <source>Style: {0}</source>
       <translation>Estilo: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6929" />
+      <location filename="../QScintilla/Editor.py" line="6937" />
       <source>Warning: {0}</source>
       <translation>Advertencia: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6936" />
+      <location filename="../QScintilla/Editor.py" line="6944" />
       <source>Error: {0}</source>
       <translation>Error: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Macro Name</source>
       <translation>Nombre de macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Select a macro name:</source>
       <translation>Seleccione un nombre de macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7069" />
+      <location filename="../QScintilla/Editor.py" line="7077" />
       <source>Load macro file</source>
       <translation>Cargar archivo de macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7115" />
-      <location filename="../QScintilla/Editor.py" line="7071" />
+      <location filename="../QScintilla/Editor.py" line="7123" />
+      <location filename="../QScintilla/Editor.py" line="7079" />
       <source>Macro files (*.macro)</source>
       <translation>Archivos de Macro  (*.macro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7093" />
-      <location filename="../QScintilla/Editor.py" line="7083" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
+      <location filename="../QScintilla/Editor.py" line="7091" />
       <source>Error loading macro</source>
       <translation>Error al cargar macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7084" />
+      <location filename="../QScintilla/Editor.py" line="7092" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de macro &lt;b&gt;{0}&lt;/b&gt; no se puede leer.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7094" />
+      <location filename="../QScintilla/Editor.py" line="7102" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de macro &lt;b&gt;{0}&lt;/b&gt; está dañado&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7113" />
+      <location filename="../QScintilla/Editor.py" line="7121" />
       <source>Save macro file</source>
       <translation>Guardar archivo de macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7131" />
+      <location filename="../QScintilla/Editor.py" line="7139" />
       <source>Save macro</source>
       <translation>Guardar macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7132" />
+      <location filename="../QScintilla/Editor.py" line="7140" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de macro &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7147" />
+      <location filename="../QScintilla/Editor.py" line="7155" />
       <source>Error saving macro</source>
       <translation>Error al guardar macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7148" />
+      <location filename="../QScintilla/Editor.py" line="7156" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de macro  &lt;b&gt;{0}&lt;/b&gt; no se puede escribir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7161" />
+      <location filename="../QScintilla/Editor.py" line="7169" />
       <source>Start Macro Recording</source>
       <translation>Comenzar grabación de macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7162" />
+      <location filename="../QScintilla/Editor.py" line="7170" />
       <source>Macro recording is already active. Start new?</source>
       <translation>Grabación de macro ya está activada. ¿Comenzar una nueva?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7188" />
+      <location filename="../QScintilla/Editor.py" line="7196" />
       <source>Macro Recording</source>
       <translation>Grabando macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7189" />
+      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation>Introduzca el nombre de la macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7340" />
+      <location filename="../QScintilla/Editor.py" line="7348" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ha cambiado mientras estaba abierto en eric. ¿Desea volver a cargarlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7346" />
+      <location filename="../QScintilla/Editor.py" line="7354" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation>&lt;br&gt;&lt;b&gt;Advertencia:&lt;/b&gt; Perderá los cambios si lo reabre.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7353" />
+      <location filename="../QScintilla/Editor.py" line="7361" />
       <source>File changed</source>
       <translation>Archivo modificado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7403" />
+      <location filename="../QScintilla/Editor.py" line="7411" />
       <source>{0} (ro)</source>
       <translation>{0} (ro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7708" />
+      <location filename="../QScintilla/Editor.py" line="7716" />
       <source>Drop Error</source>
       <translation>Error al soltar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7709" />
+      <location filename="../QScintilla/Editor.py" line="7717" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; no es un archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7729" />
+      <location filename="../QScintilla/Editor.py" line="7737" />
       <source>Resources</source>
       <translation>Recursos</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7739" />
       <source>Add file...</source>
       <translation>Añadir archivo...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7732" />
+      <location filename="../QScintilla/Editor.py" line="7740" />
       <source>Add files...</source>
       <translation>Añadir archivos...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7733" />
+      <location filename="../QScintilla/Editor.py" line="7741" />
       <source>Add aliased file...</source>
       <translation>Añadir archivo con un alias...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7735" />
+      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation>Añadir recursos localizados...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7738" />
+      <location filename="../QScintilla/Editor.py" line="7746" />
       <source>Add resource frame</source>
       <translation>Añadir ventana de recursos</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7765" />
       <source>Add file resource</source>
       <translation>Añadir archivo de recursos</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7771" />
+      <location filename="../QScintilla/Editor.py" line="7779" />
       <source>Add file resources</source>
       <translation>Añadir archivo de recursos</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7795" />
-      <location filename="../QScintilla/Editor.py" line="7789" />
+      <location filename="../QScintilla/Editor.py" line="7803" />
+      <location filename="../QScintilla/Editor.py" line="7797" />
       <source>Add aliased file resource</source>
       <translation>Añadir archivo de recursos con un alias</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7796" />
+      <location filename="../QScintilla/Editor.py" line="7804" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation>Alias para el archivo &lt;b&gt;{0}&lt;/b&gt;:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7871" />
+      <location filename="../QScintilla/Editor.py" line="7879" />
       <source>Package Diagram</source>
       <translation>Digrama de paquetes</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7872" />
+      <location filename="../QScintilla/Editor.py" line="7880" />
       <source>Include class attributes?</source>
       <translation>¿Incluir atributos de clase?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7892" />
+      <location filename="../QScintilla/Editor.py" line="7900" />
       <source>Imports Diagram</source>
       <translation>Diagrama de imports</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7893" />
+      <location filename="../QScintilla/Editor.py" line="7901" />
       <source>Include imports from external modules?</source>
       <translation>¿Incluir los imports de módulos externos?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7912" />
+      <location filename="../QScintilla/Editor.py" line="7920" />
       <source>Application Diagram</source>
       <translation>Diagrama de aplicación</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7913" />
+      <location filename="../QScintilla/Editor.py" line="7921" />
       <source>Include module names?</source>
       <translation>¿Incluir nombres de módulos?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8268" />
+      <location filename="../QScintilla/Editor.py" line="8276" />
       <source>Add to dictionary</source>
       <translation>Añadir al diccionario</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8270" />
+      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation>Ignorar Todo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8688" />
+      <location filename="../QScintilla/Editor.py" line="8696" />
       <source>Sort Lines</source>
       <translation>Ordenar Líneas</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8689" />
+      <location filename="../QScintilla/Editor.py" line="8697" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation>La selección contiene datos ilegales para una ordenación numérica.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8782" />
+      <location filename="../QScintilla/Editor.py" line="8790" />
       <source>Register Mouse Click Handler</source>
       <translation>Registrar Manejador de Clicks de Ratón</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8783" />
+      <location filename="../QScintilla/Editor.py" line="8791" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation>Un manejador de clicks de ratón para "{0}" ya está registrado por "{1}". Abortando solicitud por "{2}"...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8879" />
+      <location filename="../QScintilla/Editor.py" line="8887" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation>{0:4d}    {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8885" />
+      <location filename="../QScintilla/Editor.py" line="8893" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
@@ -13044,12 +13044,12 @@
     =&gt;  {2}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8953" />
+      <location filename="../QScintilla/Editor.py" line="8961" />
       <source>EditorConfig Properties</source>
       <translation>Propiedades de EditorConfig</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8954" />
+      <location filename="../QScintilla/Editor.py" line="8962" />
       <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Las propiedades de EditorConfig para el archivo &lt;b&gt;{0}&lt;/b&gt; no se ha podido cargar.&lt;/p&gt;</translation>
     </message>
@@ -18117,12 +18117,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="222" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation>Cargando Hoja de Estilos</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="225" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de Hoja de Estilo Qt &lt;b&gt;{0}&lt;/b&gt; no se puede leer.&lt;br&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
@@ -23002,7 +23002,7 @@
       <translation>&lt;p&gt;La copia del archivo &lt;b&gt;{0}&lt;/b&gt; ha fallado.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2719" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation>El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation>
@@ -23065,370 +23065,370 @@
       <translation>Haciendo tag en el repositorio Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2277" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
       <source>Branching in the Git repository</source>
       <translation>Haciendo branch en el repositorio Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2319" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
       <source>Delete Remote Branch</source>
       <translation>Borrar Branch Remota</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2340" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
       <source>Current Branch</source>
       <translation>Branch Actual</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2341" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La branch actual es &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2405" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2387" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
       <source>Create Bundle</source>
       <translation>Crear Bundle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation>Archivos de Git Bundle (*.bundle)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2388" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de Git bundle &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2434" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2423" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
       <source>Verify Bundle</source>
       <translation>Verificar Bundle</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
+      <translation>Archivos de Git Bundle (*.bundle);;Todos los archivos (*)</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <source>List Bundle Heads</source>
+      <translation>Listar Bundle Heads</translation>
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
-      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
-      <translation>Archivos de Git Bundle (*.bundle);;Todos los archivos (*)</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2452" />
-      <source>List Bundle Heads</source>
-      <translation>Listar Bundle Heads</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2518" />
       <source>Apply Bundle</source>
       <translation>Aplicar Bundle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
       <source>Applying a bundle file (fetch)</source>
       <translation>Aplicando un archivo de bundle (fetch)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation>Subcomando bisect ({0}) inválido.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2821" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
       <source>Git Bisect ({0})</source>
       <translation>Git Bisect ({0})</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
       <source>Process Generation Error</source>
       <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2747" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2729" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
       <source>Create Bisect Replay File</source>
       <translation>Crear Archivo de Bisect Replay</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation>Archivos de Git Bisect Replay (*.replay)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2748" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo de Git bisect replay &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2765" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo&lt;b&gt;{0}&lt;/b&gt; no puede ser escrito.&lt;br /&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2784" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
       <source>Edit Bisect Replay File</source>
       <translation>Editar Archivo de Bisect Replay</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
+      <translation>Archivos de Git Bisect Replay (*.replay);;Todos los Archivos (*)</translation>
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
-      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
-      <translation>Archivos de Git Bisect Replay (*.replay);;Todos los Archivos (*)</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2810" />
       <source>Bisect Replay</source>
       <translation>Repetir Bisect</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3154" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Show Remote Info</source>
       <translation>Mostrar Info Remota</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3040" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
       <source>Rename Remote Repository</source>
       <translation>Renombrar Repositorio Remoto</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3041" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
       <source>Enter new name for remote repository:</source>
       <translation>Introducir el nuevo nombre para el repositorio remoto:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3176" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
       <source>Show Shortlog</source>
       <translation>Mostrar Shortlog</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3233" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
       <source>Cherry-pick</source>
       <translation>Cherry-pick</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3264" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
       <source>Copy Changesets (Continue)</source>
       <translation>Copiar Changesets (Continuar)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
       <source>Copy Changesets (Quit)</source>
       <translation>Copiar Changesets (Salir)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3311" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
       <source>Copy Changesets (Cancel)</source>
       <translation>Copiar Changesets (Cancelar)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
       <source>Saving stash</source>
       <translation>Guardando stash (guardado rápido)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3429" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
       <source>Show Stash</source>
       <translation>Mostrar Stash</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3552" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3503" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
       <source>Select a stash (empty for latest stash):</source>
       <translation>Seleccionar un stash (dejar en blanco para el último stash):</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3462" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
       <source>Restore Stash</source>
       <translation>Restaurar Stash</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3516" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
       <source>Restoring stash</source>
       <translation>Restaurando Stash</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
       <source>Create Branch</source>
       <translation>Crear Branch</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation>Introducir un nombre de branch sobre la que restaurar un stash:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3566" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
       <source>Creating branch</source>
       <translation>Creando branch</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3602" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
       <source>Delete Stash</source>
       <translation>Borrar Stash</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3603" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation>¿Desea realmente borrar el stash &lt;b&gt;{0}&lt;/b&gt;?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
       <source>Deleting stash</source>
       <translation>Borrando stash</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
       <source>Delete All Stashes</source>
       <translation>Borrar todos los Stashes</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3634" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
       <source>Do you really want to delete all stashes?</source>
       <translation>¿Desea realmente borrar todos los stashes?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
       <source>Deleting all stashes</source>
       <translation>Borrando todos los stashes</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
       <source>Showing the combined configuration settings</source>
       <translation>Mostrando los ajustes de configuración combinados</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
       <source>Verifying the integrity of the Git repository</source>
       <translation>Verificando la integridad del repositorio Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3743" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
       <source>Performing Repository Housekeeping</source>
       <translation>Llevando a cabo Reorganización del Repositorio</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3784" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Estadísticas&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Estadísticas&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
       <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Número de objetos sueltos: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Espacio en disco utilizado por objetos sueltos: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3797" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Número de objetos empaquetados: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Número de paquetes: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Espacio en disco utilizado por objetos empaquetados: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Objetos empaquetados en espera de pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3820" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
       <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Archivos basura: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3825" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Espacio en disco utilizado por archivos basura: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;No hay estadísticas disponibles.&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3898" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
       <source>Creating Archive</source>
       <translation>Creando Archivo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
       <source>Add Submodule</source>
       <translation>Añadir Submódulo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
       <source>List Submodules</source>
       <translation>Listar Submódulos</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4005" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
       <source>No submodules defined for the project.</source>
       <translation>El proyecto no tiene submódulos definidos.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4018" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
       <source>All</source>
       <translation>Todo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4022" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
       <source>Submodule Path</source>
       <translation>Ruta del Submódulo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4023" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
       <source>Select a submodule path:</source>
       <translation>Seleccionar ruta del submódulo:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4072" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
       <source>Initialize Submodules</source>
       <translation>Inicializar Submódulos</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4105" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
       <source>Unregister Submodules</source>
       <translation>Desregistrar Submódulos</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4175" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4136" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
       <source>Update Submodules</source>
       <translation>Actualizar Submódulos</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
       <source>Synchronize Submodules</source>
       <translation>Sincronizar Submódulos</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4259" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
       <source>Submodules Summary</source>
       <translation>Resumen de Submódulos</translation>
     </message>
@@ -25775,83 +25775,83 @@
   <context>
     <name>GitProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="473" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="589" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="429" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="324" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="184" />
       <source>Version Control</source>
       <translation>Control de Versiones</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="602" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="492" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="340" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="200" />
       <source>Commit changes to repository...</source>
       <translation>Hacer commit de los cambios al repositorio...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="609" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="496" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="499" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="347" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="207" />
       <source>Add/Stage to repository</source>
       <translation>Añadir al repositorio/Llevar al área de preparación (stage) del repositorio</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="614" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="504" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="352" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="212" />
       <source>Unstage changes</source>
       <translation>Sacar cambios del área de preparación (unstage)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="621" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="508" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="511" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="359" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="219" />
       <source>Remove from repository (and disk)</source>
       <translation>Eliminar del repositorio (y del disco)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="365" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="225" />
       <source>Remove from repository only</source>
       <translation>Eliminar solamente del repositorio</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="513" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="230" />
       <source>Copy</source>
       <translation>Copiar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="518" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="232" />
       <source>Move</source>
       <translation>Mover</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="523" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="237" />
       <source>Show log browser</source>
       <translation>Mostrar navegador de log</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="372" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="244" />
       <source>Show status</source>
       <translation>Mostrar estado</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="635" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="534" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="537" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="251" />
       <source>Show differences</source>
@@ -25863,8 +25863,8 @@
       <translation>Mostrar diferencias lado a lado</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="543" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="385" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="263" />
       <source>Show differences (extended)</source>
@@ -25891,71 +25891,71 @@
       <translation>Crear archivo de lista de omitidos</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="648" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="547" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="550" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="392" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="289" />
       <source>Revert changes</source>
       <translation>Revertir cambios</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="656" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="441" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
-      <source>Select all local file entries</source>
-      <translation>Seleccionar todas las entradas de archivos locales</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="558" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="444" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
-      <source>Select all versioned file entries</source>
-      <translation>Seleccionar todas las entradas de archivo versionadas</translation>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
+      <source>Select all local file entries</source>
+      <translation>Seleccionar todas las entradas de archivos locales</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="662" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="561" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="447" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
+      <source>Select all versioned file entries</source>
+      <translation>Seleccionar todas las entradas de archivo versionadas</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="564" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="450" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="406" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="301" />
       <source>Select all local directory entries</source>
       <translation>Seleccionar todas las entradas de directorios locales</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="666" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="454" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="305" />
       <source>Select all versioned directory entries</source>
       <translation>Seleccionar todas las entradas de directorios versionados</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="414" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="309" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="709" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="712" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="699" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation>¿Realmente quiere eliminar estos archivos del repositorio?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="842" />
       <source>Create {0} file</source>
       <translation>Crear archivo {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="843" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
@@ -30271,27 +30271,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="198" />
+      <location filename="../Globals/__init__.py" line="199" />
       <source>{0:4.2f} Bytes</source>
       <translation>{0:4.2f} Bytes</translation>
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="201" />
+      <location filename="../Globals/__init__.py" line="202" />
       <source>{0:4.2f} KiB</source>
       <translation>{0:4.2f} KiB</translation>
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="204" />
+      <location filename="../Globals/__init__.py" line="205" />
       <source>{0:4.2f} MiB</source>
       <translation>{0:4.2f} MiB</translation>
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="207" />
+      <location filename="../Globals/__init__.py" line="208" />
       <source>{0:4.2f} GiB</source>
       <translation>{0:4.2f} GiB</translation>
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="210" />
+      <location filename="../Globals/__init__.py" line="211" />
       <source>{0:4.2f} TiB</source>
       <translation>{0:4.2f} TiB</translation>
     </message>
@@ -36511,75 +36511,75 @@
       <translation>Extensiones</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="692" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="579" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="535" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="431" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="289" />
       <source>Version Control</source>
       <translation>Control de Versiones</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="595" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="598" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="305" />
       <source>Commit changes to repository...</source>
       <translation>Hacer commit de los cambios al repositorio...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="606" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="455" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="313" />
       <source>Add to repository</source>
       <translation>Añadir al repositorio</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="722" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="725" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="461" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="319" />
       <source>Remove from repository (and disk)</source>
       <translation>Eliminar del repositorio (y del disco)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="986" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="973" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="989" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="976" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="467" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="325" />
       <source>Remove from repository only</source>
       <translation>Eliminar solamente del repositorio</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="614" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="617" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="330" />
       <source>Copy</source>
       <translation>Copiar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="619" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="332" />
       <source>Move</source>
       <translation>Mover</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="621" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="624" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="337" />
       <source>Show log browser</source>
       <translation>Mostrar navegador de log</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="729" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="732" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="474" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="344" />
       <source>Show status</source>
       <translation>Mostrar estado</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="736" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="739" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="481" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="351" />
       <source>Show differences</source>
@@ -36591,8 +36591,8 @@
       <translation>Mostrar diferencias lado a lado</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="644" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="487" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="363" />
       <source>Show differences (extended)</source>
@@ -36619,95 +36619,95 @@
       <translation>Crear archivo de lista de omitidos</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="749" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="752" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="494" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="389" />
       <source>Revert changes</source>
       <translation>Revertir cambios</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="753" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="756" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="655" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="498" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="393" />
       <source>Conflicts resolved</source>
       <translation>Conflictos resueltos</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="755" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="654" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="657" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="500" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="395" />
       <source>Conflicts unresolved</source>
       <translation>Conflictos sin resolver</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="757" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="656" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="760" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="502" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="397" />
       <source>Re-Merge</source>
       <translation>Re-Merge</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="660" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="547" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
-      <source>Select all local file entries</source>
-      <translation>Seleccionar todas las entradas de archivo locales</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="764" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="663" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="550" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
-      <source>Select all versioned file entries</source>
-      <translation>Seleccionar todas las entradas de archivo versionadas</translation>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
+      <source>Select all local file entries</source>
+      <translation>Seleccionar todas las entradas de archivo locales</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="767" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="553" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
+      <source>Select all versioned file entries</source>
+      <translation>Seleccionar todas las entradas de archivo versionadas</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="556" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="407" />
       <source>Select all local directory entries</source>
       <translation>Seleccionar todas las entradas de directorio locales</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="560" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="411" />
       <source>Select all versioned directory entries</source>
       <translation>Seleccionar todas las entradas de directorio versionadas</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="775" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="674" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="561" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="778" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="677" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="564" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="520" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="415" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="890" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="893" />
       <source>Create {0} file</source>
       <translation>Crear archivo {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="891" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="894" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="987" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="990" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="977" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation>¿Realmente quiere eliminar estos archivos del repositorio?</translation>
     </message>
@@ -50914,43 +50914,43 @@
       <translation>¿Desea añadirlos a la lista de dispositivos configurados manualmente?</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="594" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="592" />
       <source>Clear</source>
       <translation>Limpiar</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="599" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="597" />
       <source>Copy</source>
       <translation>Copiar</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="603" />
       <source>Paste</source>
       <translation>Pegar</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="612" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="610" />
       <source>Select All</source>
       <translation>Seleccionar todo</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="638" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="636" />
       <source>Press to disconnect the current device</source>
       <translation>Pulsar para desconectar el dispositivo seleccionado</translation>
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="643" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="641" />
       <source>Press to connect the selected device</source>
       <translation>Pulsar para conectar el dispositivo seleccionado</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="675" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="673" />
       <source>No device attached</source>
       <translation>No hay dispositivo conectado</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="674" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -50963,90 +50963,90 @@
 Finalmente, pulsar el botón de reset del dispositivo y esperar unos pocos segundos antes de intentar de nuevo.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="705" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="703" />
       <source>Start REPL</source>
       <translation>Iniciar REPL</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="706" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="704" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El REPL no se puede iniciar.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1234" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1223" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
       <source>Serial Device Connect</source>
       <translation>Conexión de Dispositivo en Serie</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1224" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El dispositivo en el puerto de serie &lt;b&gt;{0}&lt;/b&gt; no responde. Puede que no tenga un firmware MicroPython flasheado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1235" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1233" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se puede conectar el dispositovo en el puerto de serie &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1293" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1284" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1282" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
       <source>Run Script</source>
       <translation>Ejecutar Script</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1276" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
       <source>There is no editor open. Abort...</source>
       <translation>No hay editor abierto. Abortando...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1285" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1283" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation>El editor actual no contiene un script. Abortando...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1292" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se puede ejecutar el script.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
       <source>Start Chart</source>
       <translation>Iniciar Gráfica</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1329" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;No se puede iniciar la gráfica.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1346" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1344" />
       <source>µPy Chart</source>
       <translation>Gráfico µPy</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1363" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1361" />
       <source>Unsaved Chart Data</source>
       <translation>Datos de Gráfica sin Guardar</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1364" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1362" />
       <source>The chart contains unsaved data.</source>
       <translation>La gráfica contiene datos sin guardar.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1412" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1410" />
       <source>Start File Manager</source>
       <translation>Comenzar Gestor de Archivos</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1413" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1411" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El Gestor de Archivos no se puede iniciar.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1433" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1431" />
       <source>µPy Files</source>
       <translation>Archivos µPy</translation>
     </message>
@@ -51071,7 +51071,7 @@
       <translation>Mostrar Datos de Microprocesador</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1735" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1554" />
       <source>Synchronize Time</source>
       <translation>Sincronizar Hora</translation>
@@ -51097,207 +51097,213 @@
       <translation>Mostrar Módulos Incorporados</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2138" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1578" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1570" />
       <source>Install Package</source>
       <translation>Instalar Package</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2150" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2183" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2180" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1574" />
       <source>Install Packages</source>
       <translation>Instalar Packages</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1955" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1580" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1959" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
       <source>Compile Python File</source>
       <translation>Compilar Archivo de Python</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1979" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1970" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1983" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1974" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1588" />
       <source>Compile Current Editor</source>
       <translation>Compilar Editor Actual</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1609" />
       <source>Download Firmware</source>
       <translation>Descargar Firmware</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
-      <source>Show Documentation</source>
-      <translation>Mostrar Documentación</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
-      <source>Convert To UF2</source>
-      <translation>Convertir a UF2</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1616" />
-      <source>Flash UF2 Device</source>
-      <translation>Flashear Dispositivo UF2</translation>
+      <source>Show Documentation</source>
+      <translation>Mostrar Documentación</translation>
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1619" />
+      <source>Convert To UF2</source>
+      <translation>Convertir a UF2</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1620" />
+      <source>Flash UF2 Device</source>
+      <translation>Flashear Dispositivo UF2</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1623" />
       <source>Manage Unknown Devices</source>
       <translation>Gestión Dispositivos Desconocidos</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1622" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1626" />
       <source>Ignored Serial Devices</source>
       <translation>Dispositivos de Serie Ignorados</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1625" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1629" />
       <source>Configure</source>
       <translation>Configurar</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1634" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1638" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation>&lt;h3&gt;Información de Versión de Dispositivo&lt;/h3&gt;</translation>
     </message>
     <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1649" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1645" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1641" />
       <source>Device Version Information</source>
       <translation>Información de Versión de Dispositivo</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1646" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1650" />
       <source>No version information available.</source>
       <translation>No hay información de versión disponible.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1670" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1674" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1666" />
       <source>unknown</source>
       <translation>desconocido</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1680" />
       <source> ({0})</source>
       <translation> ({0})</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1683" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1696" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1687" />
       <source>Device Implementation Information</source>
       <translation>Información de Implementación de Dispositivo</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1688" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;h3&gt;Información de Implementación de Dispositivo&lt;/h3&gt;&lt;p&gt;Este dispositivo contiene &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1693" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1697" />
       <source>No device implementation information available.</source>
       <translation>Sin información disponible de implementación de dispositivo.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1736" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La hora del dispositivo conectado está sincronizada con la hora local.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1754" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1758" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Fecha y Hora del Dispositivo&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Fecha&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Hora&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1762" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1766" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation>&lt;h3&gt;Fecha y Hora del Dispositivo&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1782" />
       <source>Device Date and Time</source>
       <translation>Fecha y Hora del Dispositivo</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1794" />
       <source>Local Date and Time</source>
       <translation>Fecha y Hora Local</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1795" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Fecha y Hora del Local&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Fecha&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Hora&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1832" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1815" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1836" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1819" />
       <source>Date and Time</source>
       <translation>Fecha y Hora</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1816" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1820" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Fecha y Hora Local&lt;/th&gt;&lt;th&gt;Fecha y Hora del Dispositivo&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Fecha&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Hora&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1837" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Fecha y Hora Local&lt;/th&gt;&lt;th&gt;Fecha y Hora del Dispositivo&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1857" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1861" />
       <source>Error handling device</source>
       <translation>Error de gestión del dispositivo</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1858" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1862" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ha ocurrido un error al comunicar con el dispositivo conectado.&lt;/p&gt;&lt;p&gt;Método: {0}&lt;/p&gt;&lt;p&gt;Mensaje: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1900" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1904" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation>El compilador multiplataforma de MicroPython &lt;b&gt;mpy-cross&lt;/b&gt; no se encuentra. Asegúrese de que está en la ruta de búsqueda o configurarlo en la página de configuración de MicroPython.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1926" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1930" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation>Archivos Python (*.py);;Todos los Archivos (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1940" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation>El archivo de Python &lt;b&gt;{0}&lt;/b&gt; no existe. Abortando...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1945" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1949" />
       <source>'mpy-cross' Output</source>
       <translation>Salida de 'mpy-cross'</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1971" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1975" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation>El editor actual no contiene un archivo de Python. Abortando...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2063" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2067" />
       <source>Add Unknown Devices</source>
       <translation>Añadir Dispositivos Desconocidos</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2068" />
       <source>Select the devices to be added:</source>
       <translation>Seleccionar los dispositivos a añadir:</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2113" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2117" />
       <source>Plus any modules on the filesystem.</source>
       <translation>Más cualesquiera módulos en el sistema de archivos.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2151" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2169" />
+      <source>Package '{0}' was installed successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2184" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation>Introducir los packages a instalar separados por espacios:</translation>
     </message>
@@ -51350,198 +51356,198 @@
       <translation>Privada Aleatoria No Resoluble</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="108" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="110" />
       <source>BBC micro:bit</source>
       <translation>BBC micro:bit</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="111" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="113" />
       <source>Calliope mini</source>
       <translation>Calliope mini</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="208" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="210" />
       <source>BBC micro:bit/Calliope Functions</source>
       <translation>Funciones BBC micro:bit/Calliope</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="421" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="409" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="392" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="211" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="411" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="213" />
       <source>Show MicroPython Versions</source>
       <translation>Mostrar Versiones de MicroPython</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="215" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="217" />
       <source>Flash MicroPython</source>
       <translation>Flash MicroPython</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="218" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="220" />
       <source>Flash Firmware</source>
       <translation>Flash Firmware</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="496" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="222" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="498" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="224" />
       <source>Save Script as 'main.py'</source>
       <translation>Guardar Script como 'main.py'</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="225" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="227" />
       <source>Save the current script as 'main.py' on the connected device</source>
       <translation>Guardar el script actual como 'main.py' en el dispositivo conectado</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="229" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="231" />
       <source>Reset {0}</source>
       <translation>Restablecer {0}</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="375" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="366" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="352" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="335" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="322" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="302" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="377" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="354" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="337" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="324" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="304" />
       <source>Flash MicroPython/Firmware</source>
       <translation>Flash MicroPython/Firmware</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="303" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="305" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed and plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;See the &lt;a href="https://microbit.org/guide/firmware/"&gt;micro:bit web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El BBC micro:bit no está listo para flashear el firmware DAPLink. Seguir estas instrucciones.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;desconectar cable USB y todas las baterías&lt;/li&gt;&lt;li&gt;mantener el botón RESET apretado y conectar el cable USB de nuevo&lt;/li&gt;&lt;li&gt;debería haber disponible un volumen llamado MANTENIMIENTO&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Ver el &lt;a href="https://microbit.org/guide/firmware/"&gt;website de micro:bit&lt;/a&gt; para más detalles.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="323" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="325" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MICROBIT is available.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El micro:bit BBC no está listo para flashing del firmware de MycroPython. Por favor asegurar la disponibilidad de un dispositivo llamado MICROBIT.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="336" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="338" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed an plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;</source>
       <translation>&lt;p&gt;El "Calliope mini" no está listo para flashear el firmware DAPLink. Seguir estas instrucciones. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;desconectar cable USB y todas las baterías &lt;/li&gt;&lt;li&gt;mantener apretado el botón de RESET y conectar de nuevo el cable USB&lt;/li&gt;&lt;li&gt;debería haber disponible una unidad llamada MANTENIMIENTO&lt;/li&gt;&lt;/ul&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="353" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="355" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MINI is available.&lt;/p&gt;</source>
       <translation>&lt;p&gt;El "Calliope Mini" no está listo para flashing del firmware de MycroPython. Por favor asegurar la disponibilidad de un dispositivo llamado MINI.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="370" />
       <source>MicroPython/Firmware Files (*.hex *.bin);;All Files (*)</source>
       <translation>Archivos de MicroPython/Firmware (*.hex *.bin);;Todos los Archivos (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="376" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="378" />
       <source>There are multiple devices ready for flashing. Please make sure, that only one device is prepared.</source>
       <translation>Hay múltiples dispositivos listos para flashing. Por favor, asegurar que solamente hay un dispositivo listo.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="395" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation>No se puede determinar el firmware del dispositivo conectado o la placa no corre con MicroPython o CircuitPython. Abortando...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="410" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="412" />
       <source>&lt;p&gt;The BBC micro:bit generation cannot be determined. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;La generación de BBC micro:bit no se puede determinar. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="424" />
       <source>&lt;p&gt;The firmware URL for the device type &lt;b&gt;{0}&lt;/b&gt; is not known. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;La URL de firmware para el tipo de dispositivo &lt;b&gt;{0}&lt;/b&gt; no es conocida. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="452" />
       <source>unknown</source>
       <translation>desconocido</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="466" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="468" />
       <source>Firmware</source>
       <translation>Firmware</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="469" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="471" />
       <source>&lt;h4&gt;{0} Version Information&lt;br/&gt;(BBC micro:bit v{1})&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h4&gt;Información de Versión de {0}&lt;br/&gt;(BBC micro:bit v{1})&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Instalado:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Disponible:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="478" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="480" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;¡Actualización disponible!&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="484" />
       <source>{0} Version</source>
       <translation>Versión de {0}</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="502" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="504" />
       <source>The current editor does not contain a Python script. Write it anyway?</source>
       <translation>El editor actual no contiene un script Python. ¿Escribir de todos modos?</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="513" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="515" />
       <source>The script is empty. Aborting.</source>
       <translation>Script vacío. Abortando.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="567" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="569" />
       <source>MicroPython Firmware for BBC micro:bit V1</source>
       <translation>Firmware MicroPython para BBC micro:bit V1</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="599" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="586" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="571" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="601" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="588" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="573" />
       <source>DAPLink Firmware</source>
       <translation>Firmware DAPLink</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="578" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="580" />
       <source>MicroPython Firmware for BBC micro:bit V2</source>
       <translation>Firmware MicroPython para BBC micro:bit V2</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="582" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="584" />
       <source>CircuitPython Firmware for BBC micro:bit V2</source>
       <translation>Firmware CircuitPython para BBC micro:bit V2</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="595" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="597" />
       <source>MicroPython Firmware</source>
       <translation>Firmware MicroPython</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="818" />
-      <source>Active</source>
-      <translation>Activa</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="819" />
-      <source>Name</source>
-      <translation>Nombre</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="820" />
-      <source>MAC-Address</source>
-      <translation>Dirección MAC</translation>
+      <source>Active</source>
+      <translation>Activa</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="821" />
+      <source>Name</source>
+      <translation>Nombre</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="822" />
-      <source>Address Type</source>
-      <translation>Tipo de Dirección</translation>
+      <source>MAC-Address</source>
+      <translation>Dirección MAC</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="824" />
+      <source>Address Type</source>
+      <translation>Tipo de Dirección</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="826" />
       <source>Connected</source>
       <translation>Conectada</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="825" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="827" />
       <source>Advertising</source>
       <translation>Publicitando</translation>
     </message>
@@ -51639,720 +51645,740 @@
   <context>
     <name>MiniEditor</name>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="459" />
+      <location filename="../QScintilla/MiniEditor.py" line="460" />
       <source>About eric Mini Editor</source>
       <translation>Acerca del Mini Editor de eric</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="461" />
       <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don't need the power of a full blown editor.</source>
       <translation>El Mini Editor de eric es un componente de edición basado en QScintilla. Puede utilizarse para tareas simples de edición que no necesitan la potencia de un editor más completo.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="529" />
+      <location filename="../QScintilla/MiniEditor.py" line="530" />
       <source>Line: {0:5}</source>
       <translation>Línea: {0:5}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="533" />
+      <location filename="../QScintilla/MiniEditor.py" line="534" />
       <source>Pos: {0:5}</source>
       <translation>Pos: {0:5}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="547" />
+      <location filename="../QScintilla/MiniEditor.py" line="548" />
       <source>Language: {0}</source>
       <translation>Lenguaje: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="610" />
       <source>New</source>
       <translation>Nuevo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="611" />
-      <source>&amp;New</source>
-      <translation>&amp;Nuevo</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="612" />
+      <source>&amp;New</source>
+      <translation>&amp;Nuevo</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="613" />
       <source>Ctrl+N</source>
       <comment>File|New</comment>
       <translation>Ctrl+N</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="617" />
+      <location filename="../QScintilla/MiniEditor.py" line="618" />
       <source>Open an empty editor window</source>
       <translation>Abre una ventana vacia en el editor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="619" />
+      <location filename="../QScintilla/MiniEditor.py" line="620" />
       <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nuevo&lt;/b&gt;&lt;p&gt;Se creará una ventana vacia en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="625" />
+      <location filename="../QScintilla/MiniEditor.py" line="626" />
       <source>Open</source>
       <translation>Abrir</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="627" />
-      <source>&amp;Open...</source>
-      <translation>&amp;Abrir...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="628" />
+      <source>&amp;Open...</source>
+      <translation>&amp;Abrir...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="629" />
       <source>Ctrl+O</source>
       <comment>File|Open</comment>
       <translation>Ctrl+O</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="633" />
+      <location filename="../QScintilla/MiniEditor.py" line="634" />
       <source>Open a file</source>
       <translation>Abrir un archivo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="635" />
+      <location filename="../QScintilla/MiniEditor.py" line="636" />
       <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Abrir un archivo&lt;/b&gt;&lt;p&gt;Le preguntará el nombre del archivo para ser abierto en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="644" />
+      <location filename="../QScintilla/MiniEditor.py" line="645" />
       <source>Save</source>
       <translation>Guardar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="646" />
-      <source>&amp;Save</source>
-      <translation>&amp;Guardar</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="647" />
+      <source>&amp;Save</source>
+      <translation>&amp;Guardar</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="648" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation>Ctrl+S</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="652" />
+      <location filename="../QScintilla/MiniEditor.py" line="653" />
       <source>Save the current file</source>
       <translation>Guarda el archivo actual</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="654" />
+      <location filename="../QScintilla/MiniEditor.py" line="655" />
       <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Guardar archivo&lt;/b&gt;&lt;p&gt;Almacena el contenido de la ventana de edición actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="663" />
+      <location filename="../QScintilla/MiniEditor.py" line="664" />
       <source>Save as</source>
       <translation>Guardar como</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="665" />
-      <source>Save &amp;as...</source>
-      <translation>Guardar co&amp;mo...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="666" />
+      <source>Save &amp;as...</source>
+      <translation>Guardar co&amp;mo...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="667" />
       <source>Shift+Ctrl+S</source>
       <comment>File|Save As</comment>
       <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="671" />
+      <location filename="../QScintilla/MiniEditor.py" line="672" />
       <source>Save the current file to a new one</source>
       <translation>Guarda el archivo actual en uno nuevo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="673" />
+      <location filename="../QScintilla/MiniEditor.py" line="674" />
       <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Guardar archivo como&lt;/b&gt;&lt;p&gt;Guarda el contenido del archivo actual en uno nuevo. El archivo puede ser introducido en el cuadro de selección de archivos.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="683" />
+      <location filename="../QScintilla/MiniEditor.py" line="684" />
       <source>Save Copy</source>
       <translation>Guardar Copia</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="686" />
       <source>Save &amp;Copy...</source>
       <translation>Guardar &amp;Copia...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="691" />
+      <location filename="../QScintilla/MiniEditor.py" line="692" />
       <source>Save a copy of the current file</source>
       <translation>Guardar una copia del archivo actual</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="693" />
+      <location filename="../QScintilla/MiniEditor.py" line="694" />
       <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Guardar Copia&lt;/b&gt;&lt;p&gt;Guardar una copia del contenido de la ventana de editor actual. El archivo puede ser introducido usando un diálogo de selección de archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="703" />
+      <location filename="../QScintilla/MiniEditor.py" line="704" />
       <source>Close</source>
       <translation>Cerrar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="705" />
-      <source>&amp;Close</source>
-      <translation>&amp;Cerrar</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="706" />
+      <source>&amp;Close</source>
+      <translation>&amp;Cerrar</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="707" />
       <source>Ctrl+W</source>
       <comment>File|Close</comment>
       <translation>Ctrl+W</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="711" />
+      <location filename="../QScintilla/MiniEditor.py" line="712" />
       <source>Close the editor window</source>
       <translation>Cierra la ventanas del editor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="713" />
+      <location filename="../QScintilla/MiniEditor.py" line="714" />
       <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cierra la ventana&lt;/b&gt;&lt;p&gt;Cierra la ventana actual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="719" />
+      <location filename="../QScintilla/MiniEditor.py" line="720" />
       <source>Print</source>
       <translation>Imprimir</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="721" />
-      <source>&amp;Print</source>
-      <translation>Im&amp;primir</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="722" />
+      <source>&amp;Print</source>
+      <translation>Im&amp;primir</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="723" />
       <source>Ctrl+P</source>
       <comment>File|Print</comment>
       <translation>Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="727" />
+      <location filename="../QScintilla/MiniEditor.py" line="728" />
       <source>Print the current file</source>
       <translation>Imprime el archivo actual</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="729" />
+      <location filename="../QScintilla/MiniEditor.py" line="730" />
       <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of the current file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Imprimir Archivo&lt;/b&gt;&lt;p&gt;Imprime el contenido del archivo en edición.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="738" />
+      <location filename="../QScintilla/MiniEditor.py" line="739" />
       <source>Print Preview</source>
       <translation>Presentación preliminar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="747" />
       <source>Print preview of the current file</source>
       <translation>Impirmir la selección del archivo actual</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="748" />
+      <location filename="../QScintilla/MiniEditor.py" line="749" />
       <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Presentación Preliminar&lt;/b&gt;&lt;p&gt;Presentación preliminar del texto de ayuda mostrado.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="761" />
+      <location filename="../QScintilla/MiniEditor.py" line="762" />
       <source>Undo</source>
       <translation>Deshacer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="763" />
-      <source>&amp;Undo</source>
-      <translation>&amp;Deshacer</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="764" />
+      <source>&amp;Undo</source>
+      <translation>&amp;Deshacer</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="765" />
       <source>Ctrl+Z</source>
       <comment>Edit|Undo</comment>
       <translation>Ctrl+Z</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="765" />
+      <location filename="../QScintilla/MiniEditor.py" line="766" />
       <source>Alt+Backspace</source>
       <comment>Edit|Undo</comment>
       <translation>Alt+Backspace</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="769" />
+      <location filename="../QScintilla/MiniEditor.py" line="770" />
       <source>Undo the last change</source>
       <translation>Revierte el último cambio</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="771" />
+      <location filename="../QScintilla/MiniEditor.py" line="772" />
       <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Deshacer&lt;/b&gt;&lt;p&gt;Deshace el último cambio hecho en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="780" />
+      <location filename="../QScintilla/MiniEditor.py" line="781" />
       <source>Redo</source>
       <translation>Rehacer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="782" />
-      <source>&amp;Redo</source>
-      <translation>&amp;Rehacer</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="783" />
+      <source>&amp;Redo</source>
+      <translation>&amp;Rehacer</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="784" />
       <source>Ctrl+Shift+Z</source>
       <comment>Edit|Redo</comment>
       <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="788" />
+      <location filename="../QScintilla/MiniEditor.py" line="789" />
       <source>Redo the last change</source>
       <translation>Rehace el último cambio</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="790" />
+      <location filename="../QScintilla/MiniEditor.py" line="791" />
       <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Rehacer&lt;/b&gt;&lt;p&gt;Rehace el último cambio hecho en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="799" />
+      <location filename="../QScintilla/MiniEditor.py" line="800" />
       <source>Cut</source>
       <translation>Cortar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="801" />
-      <source>Cu&amp;t</source>
-      <translation>Cor&amp;tar</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="802" />
+      <source>Cu&amp;t</source>
+      <translation>Cor&amp;tar</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="803" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation>Ctrl+X</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="803" />
+      <location filename="../QScintilla/MiniEditor.py" line="804" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation>Shift+Del</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="807" />
+      <location filename="../QScintilla/MiniEditor.py" line="808" />
       <source>Cut the selection</source>
       <translation>Corta la selección</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="809" />
+      <location filename="../QScintilla/MiniEditor.py" line="810" />
       <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cortar&lt;/b&gt;&lt;p&gt;Cortar el texto seleccionado y lo envia al portapapeles.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="819" />
+      <location filename="../QScintilla/MiniEditor.py" line="820" />
       <source>Copy</source>
       <translation>Copiar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="821" />
-      <source>&amp;Copy</source>
-      <translation>&amp;Copiar</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="822" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
-      <translation>Ctrl+C</translation>
+      <source>&amp;Copy</source>
+      <translation>&amp;Copiar</translation>
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="823" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation>Ctrl+C</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="824" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+Ins</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="827" />
+      <location filename="../QScintilla/MiniEditor.py" line="828" />
       <source>Copy the selection</source>
       <translation>Copia lo seleccionado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="829" />
+      <location filename="../QScintilla/MiniEditor.py" line="830" />
       <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Copiar&lt;/b&gt;&lt;p&gt;Copiar el texto seleccionado al portapapeles.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="839" />
+      <location filename="../QScintilla/MiniEditor.py" line="840" />
       <source>Paste</source>
       <translation>Pegar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="841" />
-      <source>&amp;Paste</source>
-      <translation>&amp;Pegar</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="842" />
-      <source>Ctrl+V</source>
-      <comment>Edit|Paste</comment>
-      <translation>Ctrl+V</translation>
+      <source>&amp;Paste</source>
+      <translation>&amp;Pegar</translation>
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="843" />
+      <source>Ctrl+V</source>
+      <comment>Edit|Paste</comment>
+      <translation>Ctrl+V</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="844" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation>Shift+Ins</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="847" />
+      <location filename="../QScintilla/MiniEditor.py" line="848" />
       <source>Paste the last cut/copied text</source>
       <translation>Pega el último texto copiado/cortado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="849" />
+      <location filename="../QScintilla/MiniEditor.py" line="850" />
       <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Pegar&lt;/b&gt;&lt;p&gt;Pegar el contenido del portapapeles en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="859" />
+      <location filename="../QScintilla/MiniEditor.py" line="860" />
       <source>Clear</source>
       <translation>Borrar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="861" />
-      <source>Cl&amp;ear</source>
-      <translation>&amp;Borrar</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="862" />
+      <source>Cl&amp;ear</source>
+      <translation>&amp;Borrar</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="863" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation>Alt+Shift+C</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="867" />
+      <location filename="../QScintilla/MiniEditor.py" line="868" />
       <source>Clear all text</source>
       <translation>Borra todo el texto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="869" />
+      <location filename="../QScintilla/MiniEditor.py" line="870" />
       <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Borrar&lt;/b&gt;&lt;p&gt;Borra todo el texto del editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>About</source>
       <translation>Acerca de</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>&amp;About</source>
       <translation>&amp;Acerca de</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2863" />
+      <location filename="../QScintilla/MiniEditor.py" line="2864" />
       <source>Display information about this software</source>
       <translation>Muestra información acerca de este software</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2865" />
+      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Acerca de&lt;/b&gt;&lt;p&gt;Muestra información acerca de este software.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About Qt</source>
       <translation>Acerca de Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About &amp;Qt</source>
       <translation>Acerca de &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2877" />
+      <location filename="../QScintilla/MiniEditor.py" line="2878" />
       <source>Display information about the Qt toolkit</source>
       <translation>Muestra información sobre las herramientas Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2880" />
+      <location filename="../QScintilla/MiniEditor.py" line="2881" />
       <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Acerca de Qt&lt;/b&gt;&lt;p&gt;Muestra información sobre las herramientas Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2889" />
+      <location filename="../QScintilla/MiniEditor.py" line="2890" />
       <source>What's This?</source>
       <translation>¿Qué es esto?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2891" />
-      <source>&amp;What's This?</source>
-      <translation>¿&amp;Qué es esto?</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <source>&amp;What's This?</source>
+      <translation>¿&amp;Qué es esto?</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2893" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2897" />
+      <location filename="../QScintilla/MiniEditor.py" line="2898" />
       <source>Context sensitive help</source>
       <translation>Ayuda sensible al contexto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2899" />
+      <location filename="../QScintilla/MiniEditor.py" line="2900" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mostrar ayuda sensible al contexto&lt;/b&gt;&lt;p&gt;En modo ¿Qué es esto? el puntero del ratón muestra una flecha con un interrogante, y se puede hacer click en elementos de la interfaz gráfica para obtener una descripción corta de lo que hacen y de cómo se utilizan. En los diálogos, se puede acceder a esta característica utilizando el botón de ayuda de contexto en la barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2918" />
       <source>Preferences</source>
       <translation>Preferencias</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2920" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Preferencias...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2925" />
+      <location filename="../QScintilla/MiniEditor.py" line="2926" />
       <source>Set the prefered configuration</source>
       <translation>Establecer la configuración preferida</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2927" />
+      <location filename="../QScintilla/MiniEditor.py" line="2928" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Preferencias&lt;/b&gt;&lt;p&gt;Establecezca los elementos de configuración de la aplicación con sus valores preferidos.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2941" />
+      <location filename="../QScintilla/MiniEditor.py" line="2942" />
       <source>&amp;File</source>
       <translation>&amp;Archivo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2953" />
+      <location filename="../QScintilla/MiniEditor.py" line="2954" />
       <source>&amp;Edit</source>
       <translation>&amp;Editar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2963" />
+      <location filename="../QScintilla/MiniEditor.py" line="2964" />
       <source>&amp;Search</source>
       <translation>&amp;Buscar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2974" />
       <source>&amp;View</source>
       <translation>&amp;Ver</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2979" />
+      <location filename="../QScintilla/MiniEditor.py" line="2980" />
       <source>Se&amp;ttings</source>
       <translation>Con&amp;figuración</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2985" />
       <source>&amp;Help</source>
       <translation>A&amp;yuda</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2996" />
+      <location filename="../QScintilla/MiniEditor.py" line="2997" />
       <source>File</source>
       <translation>Archivo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3008" />
+      <location filename="../QScintilla/MiniEditor.py" line="3009" />
       <source>Edit</source>
       <translation>Editar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3017" />
+      <location filename="../QScintilla/MiniEditor.py" line="3018" />
       <source>Search</source>
       <translation>Buscar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3023" />
+      <location filename="../QScintilla/MiniEditor.py" line="3024" />
       <source>View</source>
       <translation>Ver</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3029" />
+      <location filename="../QScintilla/MiniEditor.py" line="3030" />
       <source>Settings</source>
       <translation>Ajustes</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3032" />
+      <location filename="../QScintilla/MiniEditor.py" line="3033" />
       <source>Help</source>
       <translation>Ayuda</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3045" />
+      <location filename="../QScintilla/MiniEditor.py" line="3046" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta zona de la barra de estado muestra el lenguaje del editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3055" />
+      <location filename="../QScintilla/MiniEditor.py" line="3056" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta zona de la barra de estado muestra una indicación  de las propiedades de escritura de los archivos del  editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3064" />
+      <location filename="../QScintilla/MiniEditor.py" line="3065" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta zona de la barra de estado muestra el número de línea en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3073" />
+      <location filename="../QScintilla/MiniEditor.py" line="3074" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta zona de la barra de estado muestra la posición del cursor en el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3087" />
+      <location filename="../QScintilla/MiniEditor.py" line="3088" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta zona de la barra de estado permite hacer zoom sobre el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3094" />
+      <location filename="../QScintilla/MiniEditor.py" line="3095" />
       <source>Ready</source>
       <translation>Listo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3169" />
-      <source>eric Mini Editor</source>
-      <translation>Mini Editor de eric</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <source>eric Mini Editor</source>
+      <translation>Mini Editor de eric</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3171" />
       <source>The document has unsaved changes.</source>
       <translation>El documento tiene cambios sin guardar.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3197" />
-      <source>Open File</source>
-      <translation>Abrir archivo</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <source>Open File</source>
+      <translation>Abrir archivo</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3199" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo&lt;b&gt;{0}&lt;/b&gt; no puede ser abierto.&lt;br /&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3226" />
+      <location filename="../QScintilla/MiniEditor.py" line="3227" />
       <source>File loaded</source>
       <translation>Archivo cargado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3307" />
-      <source>Save File</source>
-      <translation>Guardar archivo</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <source>Save File</source>
+      <translation>Guardar archivo</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3309" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no puede ser guardado.&lt;br&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3314" />
+      <location filename="../QScintilla/MiniEditor.py" line="3315" />
       <source>File saved</source>
       <translation>Archivo guardado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>[*] - {0}</source>
       <translation>[*] - {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>Mini Editor</source>
       <translation>Mini Editor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3683" />
-      <location filename="../QScintilla/MiniEditor.py" line="3654" />
-      <location filename="../QScintilla/MiniEditor.py" line="3338" />
+      <location filename="../QScintilla/MiniEditor.py" line="3684" />
+      <location filename="../QScintilla/MiniEditor.py" line="3655" />
+      <location filename="../QScintilla/MiniEditor.py" line="3339" />
       <source>Untitled</source>
       <translation>Sin título</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
       <source>{0}[*] - {1}</source>
       <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3649" />
+      <location filename="../QScintilla/MiniEditor.py" line="3650" />
       <source>Printing...</source>
       <translation>Imprimiendo...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3665" />
+      <location filename="../QScintilla/MiniEditor.py" line="3666" />
       <source>Printing completed</source>
       <translation>Impresión completa</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3667" />
+      <location filename="../QScintilla/MiniEditor.py" line="3668" />
       <source>Error while printing</source>
       <translation>Error mientras se imprimía</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3670" />
+      <location filename="../QScintilla/MiniEditor.py" line="3671" />
       <source>Printing aborted</source>
       <translation>Impresión cancelada</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3724" />
-      <source>Select all</source>
-      <translation>Seleccionar todo</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <source>Select all</source>
+      <translation>Seleccionar todo</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3726" />
       <source>Deselect all</source>
       <translation>Deseleccionar todo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3738" />
+      <location filename="../QScintilla/MiniEditor.py" line="3739" />
       <source>Languages</source>
       <translation>Lenguajes</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3741" />
+      <location filename="../QScintilla/MiniEditor.py" line="3742" />
       <source>No Language</source>
       <translation>Ningún Lenguaje</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3763" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Guessed</source>
       <translation>Suposición</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3785" />
-      <location filename="../QScintilla/MiniEditor.py" line="3767" />
+      <location filename="../QScintilla/MiniEditor.py" line="3786" />
+      <location filename="../QScintilla/MiniEditor.py" line="3768" />
       <source>Alternatives</source>
       <translation>Alternativas</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3783" />
       <source>Alternatives ({0})</source>
       <translation>Alternativas ({0})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3813" />
-      <source>Pygments Lexer</source>
-      <translation>Analizador Léxico de Pygments</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <source>Pygments Lexer</source>
+      <translation>Analizador Léxico de Pygments</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3815" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>Seleccionar el Analizador Léxico de Pygments a aplicar.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4326" />
+      <location filename="../QScintilla/MiniEditor.py" line="4336" />
       <source>EditorConfig Properties</source>
       <translation>Propiedades de EditorConfig</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4327" />
+      <location filename="../QScintilla/MiniEditor.py" line="4337" />
       <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Las propiedades de EditorConfig para el archivo &lt;b&gt;{0}&lt;/b&gt; no se ha podido cargar.&lt;/p&gt;</translation>
     </message>
   </context>
   <context>
+    <name>MipLocalInstaller</name>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="185" />
+      <source>Unable to find 'lib' in sys.path. Please enter a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="229" />
+      <source>
+
+Package may be partially installed.</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>MipPackageDialog</name>
     <message>
+      <location filename="../MicroPython/MipPackageDialog.py" line="34" />
+      <source>Enter the URL of the package index. Leave empty to use the default index ({0}).</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
       <source>Install Package</source>
       <translation>Instalar Package</translation>
@@ -52387,6 +52413,21 @@
       <source>Install .mpy File</source>
       <translation>Instalar Archivo .mpy</translation>
     </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Target Directory:</source>
+      <translation type="unfinished">Directorio de Destino:</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Enter the directory to install to (must be contained in sys.path). Leave empty to detect automatically.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Package Index:</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>MiscellaneousChecker</name>
@@ -53052,194 +53093,194 @@
       <translation>Archivos de MultiProyect (*.emj);;Archivos XML de MultiProyecto (*.e5m *.e4m)</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="603" />
-      <location filename="../MultiProject/MultiProject.py" line="593" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="591" />
       <source>Multi Project Files (*.emj)</source>
       <translation>Archivos de Multiproyecto (*.emj)</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="599" />
       <source>Save Multiproject</source>
       <translation>Guardar Multiproyecto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="617" />
+      <location filename="../MultiProject/MultiProject.py" line="615" />
       <source>Save File</source>
       <translation>Guardar archivo</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="618" />
+      <location filename="../MultiProject/MultiProject.py" line="616" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="644" />
+      <location filename="../MultiProject/MultiProject.py" line="642" />
       <source>Close Multiproject</source>
       <translation>Cerrar Multiproyecto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="645" />
+      <location filename="../MultiProject/MultiProject.py" line="643" />
       <source>The current multiproject has unsaved changes.</source>
       <translation>El multiproyecto actual tiene cambios sin guardar.</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="696" />
+      <source>New multiproject</source>
+      <translation>Nuevo Multiproyecto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="698" />
-      <source>New multiproject</source>
-      <translation>Nuevo Multiproyecto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>&amp;New...</source>
       <translation>&amp;Nuevo...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="704" />
+      <source>Generate a new multiproject</source>
+      <translation>Generar un nuevo multiproyecto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="706" />
-      <source>Generate a new multiproject</source>
-      <translation>Generar un nuevo multiproyecto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nuevo...&lt;/b&gt;&lt;p&gt;Abre un diálogo para introducir la información para un nuevo multiproyecto.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="716" />
+      <source>Open multiproject</source>
+      <translation>Abrir Multiproyecto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="718" />
-      <source>Open multiproject</source>
-      <translation>Abrir Multiproyecto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="720" />
       <source>&amp;Open...</source>
       <translation>&amp;Abrir...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="724" />
+      <source>Open an existing multiproject</source>
+      <translation>Abrir un multiproyecto existente</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="726" />
-      <source>Open an existing multiproject</source>
-      <translation>Abrir un multiproyecto existente</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="728" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Abrir...&lt;/b&gt;&lt;p&gt;Abre un multiproyecto existente.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="732" />
+      <source>Close multiproject</source>
+      <translation>Cerrar Multiproyecto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="734" />
-      <source>Close multiproject</source>
-      <translation>Cerrar Multiproyecto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&amp;Close</source>
       <translation>&amp;Cerrar</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="740" />
+      <source>Close the current multiproject</source>
+      <translation>Cierra el multiproyecto actual</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="742" />
-      <source>Close the current multiproject</source>
-      <translation>Cierra el multiproyecto actual</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cerrar&lt;/b&gt;&lt;p&gt;Cierra el multiproyecto actual.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="748" />
+      <source>Save multiproject</source>
+      <translation>Guardar multiproyecto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="750" />
-      <source>Save multiproject</source>
-      <translation>Guardar multiproyecto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="752" />
       <source>&amp;Save</source>
       <translation>&amp;Guardar</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="756" />
+      <source>Save the current multiproject</source>
+      <translation>Guarda el multiproyecto actual</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="758" />
-      <source>Save the current multiproject</source>
-      <translation>Guarda el multiproyecto actual</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="760" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Guardar&lt;/b&gt;&lt;p&gt;Guarda el multiproyecto actual.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <source>Save multiproject as</source>
+      <translation>Guardar multiproyecto como</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="766" />
-      <source>Save multiproject as</source>
-      <translation>Guardar multiproyecto como</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="768" />
       <source>Save &amp;as...</source>
       <translation>Guardar co&amp;mo...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="775" />
+      <location filename="../MultiProject/MultiProject.py" line="773" />
       <source>Save the current multiproject to a new file</source>
       <translation>Guardar el multiproyecto actual en un nuevo archivo</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="778" />
+      <location filename="../MultiProject/MultiProject.py" line="776" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Guardar como&lt;/b&gt;&lt;p&gt;Guarda el multiproyecto en nuevo archivo.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="785" />
+      <source>Add project to multiproject</source>
+      <translation>Añadir proyecto al multiproyecto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="787" />
-      <source>Add project to multiproject</source>
-      <translation>Añadir proyecto al multiproyecto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="789" />
       <source>Add &amp;project...</source>
       <translation>Añadir &amp;proyecto...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="796" />
+      <location filename="../MultiProject/MultiProject.py" line="794" />
       <source>Add a project to the current multiproject</source>
       <translation>Añadir un nuevo proyecto al multiproyecto actual</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="799" />
+      <location filename="../MultiProject/MultiProject.py" line="797" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Añadir proyecto...&lt;/b&gt;&lt;p&gt;Abre un diálogo para añadir un proyecto al multiproyecto actual.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="807" />
+      <source>Multiproject properties</source>
+      <translation>Propiedades del multiproyecto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="809" />
-      <source>Multiproject properties</source>
-      <translation>Propiedades del multiproyecto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="811" />
       <source>&amp;Properties...</source>
       <translation>&amp;Propiedades...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="815" />
+      <source>Show the multiproject properties</source>
+      <translation>Ver las propiedades del multiproyecto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="817" />
-      <source>Show the multiproject properties</source>
-      <translation>Ver las propiedades del multiproyecto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Propiedades...&lt;/b&gt;&lt;p&gt;Muestra un diálogo para editar las propiedades del multiproyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="840" />
+      <location filename="../MultiProject/MultiProject.py" line="838" />
       <source>&amp;Multiproject</source>
       <translation>&amp;Multiproyecto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="841" />
+      <location filename="../MultiProject/MultiProject.py" line="839" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation>Abrir Multiproyectos &amp;recientes</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="880" />
       <location filename="../MultiProject/MultiProject.py" line="878" />
+      <location filename="../MultiProject/MultiProject.py" line="876" />
       <source>Multiproject</source>
       <translation>Multiproyecto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="935" />
+      <location filename="../MultiProject/MultiProject.py" line="933" />
       <source>&amp;Clear</source>
       <translation>&amp;Borrar</translation>
     </message>
@@ -69243,7 +69284,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="417" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="415" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished">Mostrar Versiones de MicroPython</translation>
@@ -69254,7 +69295,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="381" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="379" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="367" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="349" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="239" />
@@ -69292,42 +69333,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="380" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="378" />
       <source>'st-flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="400" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="398" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="401" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="399" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="416" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished">No se puede determinar el firmware del dispositivo conectado o la placa no corre con MicroPython. Abortando...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="444" />
       <source>unknown</source>
       <translation type="unfinished">desconocido</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished">&lt;h4&gt;Información de Versión de MicroPython&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Instalado:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Disponible:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="460" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;&lt;b&gt;¡Actualización disponible!&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="462" />
       <source>MicroPython Version</source>
       <translation type="unfinished">Versión de MicroPython</translation>
     </message>
@@ -69827,49 +69868,49 @@
 </translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="155" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="154" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="151" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="150" />
       <source>Find Next</source>
       <translation>Buscar Siguiente</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="168" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="167" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="164" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="163" />
       <source>Find Prev</source>
       <translation>Buscar Anterior</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="181" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="180" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="177" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="176" />
       <source>Replace and Search</source>
       <translation>Buscar y Reemplazar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="197" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="196" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="191" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="190" />
       <source>Replace Occurrence</source>
       <translation>Reemplazar Ocurrencia</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="211" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="210" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="205" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="204" />
       <source>Replace All</source>
       <translation>Reemplazar Todo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1048" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1045" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="597" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="559" />
       <source>'{0}' was not found.</source>
       <translation>'{0}' no se ha encontrado.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1201" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1198" />
       <source>Replaced {0} occurrences.</source>
       <translation>Se han reemplazado {0} ocurrencias.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1207" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1204" />
       <source>Nothing replaced because '{0}' was not found.</source>
       <translation>No se ha reemplazado nada porque '{0}' no se ha encontrado.</translation>
     </message>
@@ -77676,50 +77717,50 @@
   <context>
     <name>SvnProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="734" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="591" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="594" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="547" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="394" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="593" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="546" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="596" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="549" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="399" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="210" />
       <source>Version Control</source>
       <translation>Control de Versiones</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="750" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="607" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="753" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="610" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="224" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="758" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="761" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="415" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="226" />
       <source>Update from repository</source>
       <translation>Hacer update desde repositorio</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="756" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="616" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="416" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="230" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="764" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="615" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="767" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="618" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="421" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="232" />
       <source>Commit changes to repository...</source>
       <translation>Hacer commit de los cambios al repositorio...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="763" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="620" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="623" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="423" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="237" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="622" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="625" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="428" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="239" />
       <source>Add to repository</source>
@@ -77734,90 +77775,90 @@
       <translation>Añadir árbol al repositorio</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="769" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="626" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="772" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="629" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="436" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="250" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="441" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="252" />
       <source>Remove from repository (and disk)</source>
       <translation>Eliminar del repositorio (y del disco)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="634" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="255" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="257" />
       <source>Copy</source>
       <translation>Copiar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="257" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="259" />
       <source>Move</source>
       <translation>Mover</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="776" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="779" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="641" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="443" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="262" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="784" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="787" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="643" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="448" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="264" />
       <source>Add to Changelist</source>
       <translation>Añadir a la lista de cambios</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="780" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="783" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="645" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="266" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="788" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="647" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="452" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="268" />
       <source>Remove from Changelist</source>
       <translation>Quitar de la lista de cambios</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="272" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="650" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="653" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="274" />
       <source>Show log browser</source>
       <translation>Mostrar navegador de log</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="786" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="655" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="658" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="453" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="279" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="794" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="660" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="281" />
       <source>Show status</source>
       <translation>Mostrar estado</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="663" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="287" />
       <source>Show repository info</source>
       <translation>Mostrar informacion del repositorio</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="793" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="662" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="665" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="801" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="670" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="673" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="465" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="294" />
       <source>Show differences</source>
@@ -77830,12 +77871,12 @@
       <translation>Mostrar diferencias lado a lado</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="799" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="802" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="671" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="466" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="298" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="807" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="810" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="679" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="471" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="306" />
       <source>Show differences (extended)</source>
@@ -77848,12 +77889,12 @@
       <translation>Mostrar diferencias lado a lado (extendido)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="805" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="472" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="310" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="813" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="685" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="477" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="318" />
       <source>Show differences (URLs)</source>
@@ -77866,34 +77907,34 @@
       <translation>Mostrar archivo anotado</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="812" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="681" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="815" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="684" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="479" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="319" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="820" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="689" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="823" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="692" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="484" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="327" />
       <source>Revert changes</source>
       <translation>Revertir cambios</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="818" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="690" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="826" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="829" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="333" />
       <source>Merge changes</source>
       <translation>Hacer merge de los cambios</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="822" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="691" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="483" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="329" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="830" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="699" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="488" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="337" />
       <source>Conflicts resolved</source>
@@ -77932,106 +77973,106 @@
       <translation>Robar bloqueo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="828" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="697" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="510" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="356" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="836" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="361" />
       <source>Set Property</source>
       <translation>Establecer propiedad</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="827" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="830" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="699" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="358" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="835" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="838" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="707" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="363" />
       <source>List Properties</source>
       <translation>Listar propiedades</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="829" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="698" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="832" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="701" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="360" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="837" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="709" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="365" />
       <source>Delete Property</source>
       <translation>Borrar propiedad</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="559" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="841" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="710" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="561" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
-      <source>Select all local file entries</source>
-      <translation>Seleccionar todas las entradas de archivo locales</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="836" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="562" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="844" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="713" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
-      <source>Select all versioned file entries</source>
-      <translation>Seleccionar todas las entradas de archivo versionadas</translation>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
+      <source>Select all local file entries</source>
+      <translation>Seleccionar todas las entradas de archivo locales</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="839" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="708" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="847" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="716" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="567" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
+      <source>Select all versioned file entries</source>
+      <translation>Seleccionar todas las entradas de archivo versionadas</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="842" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="570" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="526" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="375" />
       <source>Select all local directory entries</source>
       <translation>Seleccionar todas las entradas de directorio locales</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="843" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="712" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="846" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="715" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="572" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="528" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="374" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="851" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="720" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="571" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="854" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="723" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="574" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="379" />
       <source>Select all versioned directory entries</source>
       <translation>Seleccionar todas las entradas de directorio versionadas</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="847" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="576" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="532" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="378" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="855" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="724" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="575" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="858" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="727" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="578" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="534" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="383" />
       <source>Configure...</source>
@@ -90610,8 +90651,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
+      <location filename="../QScintilla/MiniEditor.py" line="1685" />
       <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/MiniEditor.py" line="1683" />
       <location filename="../QScintilla/ShellWindow.py" line="435" />
       <location filename="../QScintilla/ShellWindow.py" line="434" />
       <source>Delete current line</source>
@@ -90619,7 +90660,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
+      <location filename="../QScintilla/MiniEditor.py" line="1686" />
       <location filename="../QScintilla/ShellWindow.py" line="436" />
       <source>Ctrl+Shift+L</source>
       <translation>Ctrl+Shift+L</translation>
@@ -90627,8 +90668,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="1207" />
       <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/MiniEditor.py" line="1205" />
       <location filename="../QScintilla/ShellWindow.py" line="447" />
       <location filename="../QScintilla/ShellWindow.py" line="446" />
       <source>Indent one level</source>
@@ -90636,7 +90677,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
+      <location filename="../QScintilla/MiniEditor.py" line="1208" />
       <location filename="../QScintilla/ShellWindow.py" line="448" />
       <source>Tab</source>
       <translation>Tab</translation>
@@ -90644,8 +90685,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
+      <location filename="../QScintilla/MiniEditor.py" line="1673" />
       <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1671" />
       <location filename="../QScintilla/ShellWindow.py" line="459" />
       <location filename="../QScintilla/ShellWindow.py" line="458" />
       <source>Insert new line</source>
@@ -90653,14 +90694,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
+      <location filename="../QScintilla/MiniEditor.py" line="1674" />
       <location filename="../QScintilla/ShellWindow.py" line="460" />
       <source>Return</source>
       <translation>Return</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
+      <location filename="../QScintilla/MiniEditor.py" line="1675" />
       <location filename="../QScintilla/ShellWindow.py" line="461" />
       <source>Enter</source>
       <translation>Enter</translation>
@@ -90668,8 +90709,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
+      <location filename="../QScintilla/MiniEditor.py" line="1559" />
       <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1557" />
       <location filename="../QScintilla/ShellWindow.py" line="471" />
       <location filename="../QScintilla/ShellWindow.py" line="470" />
       <source>Delete previous character</source>
@@ -90677,21 +90718,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
+      <location filename="../QScintilla/MiniEditor.py" line="1560" />
       <location filename="../QScintilla/ShellWindow.py" line="472" />
       <source>Backspace</source>
       <translation>Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1566" />
+      <location filename="../QScintilla/MiniEditor.py" line="1567" />
       <location filename="../QScintilla/ShellWindow.py" line="479" />
       <source>Meta+H</source>
       <translation>Meta+H</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1571" />
+      <location filename="../QScintilla/MiniEditor.py" line="1572" />
       <location filename="../QScintilla/ShellWindow.py" line="484" />
       <source>Shift+Backspace</source>
       <translation>Shift+Backspace</translation>
@@ -90699,8 +90740,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
+      <location filename="../QScintilla/MiniEditor.py" line="1597" />
       <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1595" />
       <location filename="../QScintilla/ShellWindow.py" line="493" />
       <location filename="../QScintilla/ShellWindow.py" line="492" />
       <source>Delete current character</source>
@@ -90708,14 +90749,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
+      <location filename="../QScintilla/MiniEditor.py" line="1598" />
       <location filename="../QScintilla/ShellWindow.py" line="494" />
       <source>Del</source>
       <translation>Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1604" />
+      <location filename="../QScintilla/MiniEditor.py" line="1605" />
       <location filename="../QScintilla/ShellWindow.py" line="501" />
       <source>Meta+D</source>
       <translation>Meta+D</translation>
@@ -90723,8 +90764,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
+      <location filename="../QScintilla/MiniEditor.py" line="1613" />
       <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/MiniEditor.py" line="1611" />
       <location filename="../QScintilla/ShellWindow.py" line="509" />
       <location filename="../QScintilla/ShellWindow.py" line="508" />
       <source>Delete word to left</source>
@@ -90732,7 +90773,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1614" />
       <location filename="../QScintilla/ShellWindow.py" line="510" />
       <source>Ctrl+Backspace</source>
       <translation>Ctrl+Backspace</translation>
@@ -90740,8 +90781,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1625" />
       <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/MiniEditor.py" line="1623" />
       <location filename="../QScintilla/ShellWindow.py" line="521" />
       <location filename="../QScintilla/ShellWindow.py" line="520" />
       <source>Delete word to right</source>
@@ -90749,7 +90790,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
+      <location filename="../QScintilla/MiniEditor.py" line="1626" />
       <location filename="../QScintilla/ShellWindow.py" line="522" />
       <source>Ctrl+Del</source>
       <translation>Ctrl+Del</translation>
@@ -90757,8 +90798,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
+      <location filename="../QScintilla/MiniEditor.py" line="1637" />
       <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/MiniEditor.py" line="1635" />
       <location filename="../QScintilla/ShellWindow.py" line="533" />
       <location filename="../QScintilla/ShellWindow.py" line="532" />
       <source>Delete line to left</source>
@@ -90766,7 +90807,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1638" />
+      <location filename="../QScintilla/MiniEditor.py" line="1639" />
       <location filename="../QScintilla/ShellWindow.py" line="535" />
       <source>Ctrl+Shift+Backspace</source>
       <translation>Ctrl+Shift+Backspace</translation>
@@ -90774,8 +90815,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
+      <location filename="../QScintilla/MiniEditor.py" line="1651" />
       <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/MiniEditor.py" line="1649" />
       <location filename="../QScintilla/ShellWindow.py" line="547" />
       <location filename="../QScintilla/ShellWindow.py" line="546" />
       <source>Delete line to right</source>
@@ -90783,14 +90824,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1658" />
+      <location filename="../QScintilla/MiniEditor.py" line="1659" />
       <location filename="../QScintilla/ShellWindow.py" line="555" />
       <source>Meta+K</source>
       <translation>Meta+K</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1663" />
+      <location filename="../QScintilla/MiniEditor.py" line="1664" />
       <location filename="../QScintilla/ShellWindow.py" line="560" />
       <source>Ctrl+Shift+Del</source>
       <translation>Ctrl+Shift+Del</translation>
@@ -90798,8 +90839,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
+      <location filename="../QScintilla/MiniEditor.py" line="895" />
       <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/MiniEditor.py" line="893" />
       <location filename="../QScintilla/ShellWindow.py" line="569" />
       <location filename="../QScintilla/ShellWindow.py" line="568" />
       <source>Move left one character</source>
@@ -90807,14 +90848,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
+      <location filename="../QScintilla/MiniEditor.py" line="896" />
       <location filename="../QScintilla/ShellWindow.py" line="570" />
       <source>Left</source>
       <translation>Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="904" />
       <location filename="../QScintilla/ShellWindow.py" line="578" />
       <source>Meta+B</source>
       <translation>Meta+B</translation>
@@ -90822,8 +90863,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="911" />
       <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/MiniEditor.py" line="909" />
       <location filename="../QScintilla/ShellWindow.py" line="585" />
       <location filename="../QScintilla/ShellWindow.py" line="584" />
       <source>Move right one character</source>
@@ -90831,14 +90872,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
+      <location filename="../QScintilla/MiniEditor.py" line="912" />
       <location filename="../QScintilla/ShellWindow.py" line="586" />
       <source>Right</source>
       <translation>Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="918" />
+      <location filename="../QScintilla/MiniEditor.py" line="919" />
       <location filename="../QScintilla/ShellWindow.py" line="593" />
       <source>Meta+F</source>
       <translation>Meta+F</translation>
@@ -90846,8 +90887,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="991" />
       <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/MiniEditor.py" line="989" />
       <location filename="../QScintilla/ShellWindow.py" line="601" />
       <location filename="../QScintilla/ShellWindow.py" line="600" />
       <source>Move left one word</source>
@@ -90856,8 +90897,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="998" />
-      <location filename="../QScintilla/MiniEditor.py" line="966" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/MiniEditor.py" line="967" />
       <location filename="../QScintilla/ShellWindow.py" line="609" />
       <source>Alt+Left</source>
       <translation>Alt+Left</translation>
@@ -90865,8 +90906,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1058" />
-      <location filename="../QScintilla/MiniEditor.py" line="1002" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
+      <location filename="../QScintilla/MiniEditor.py" line="1003" />
       <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Ctrl+Left</source>
       <translation>Ctrl+Left</translation>
@@ -90874,8 +90915,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
+      <location filename="../QScintilla/MiniEditor.py" line="1011" />
       <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/MiniEditor.py" line="1009" />
       <location filename="../QScintilla/ShellWindow.py" line="621" />
       <location filename="../QScintilla/ShellWindow.py" line="620" />
       <source>Move right one word</source>
@@ -90884,8 +90925,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1812" />
-      <location filename="../QScintilla/MiniEditor.py" line="1022" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="1023" />
       <location filename="../QScintilla/ShellWindow.py" line="629" />
       <source>Ctrl+Right</source>
       <translation>Ctrl+Right</translation>
@@ -90893,8 +90934,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1032" />
-      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1033" />
+      <location filename="../QScintilla/MiniEditor.py" line="1030" />
       <location filename="../QScintilla/ShellWindow.py" line="639" />
       <location filename="../QScintilla/ShellWindow.py" line="636" />
       <source>Move to first visible character in document line</source>
@@ -90903,8 +90944,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2073" />
-      <location filename="../QScintilla/MiniEditor.py" line="1042" />
+      <location filename="../QScintilla/MiniEditor.py" line="2074" />
+      <location filename="../QScintilla/MiniEditor.py" line="1043" />
       <location filename="../QScintilla/ShellWindow.py" line="649" />
       <source>Home</source>
       <translation>Home</translation>
@@ -90912,8 +90953,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
+      <location filename="../QScintilla/MiniEditor.py" line="1071" />
       <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/MiniEditor.py" line="1069" />
       <location filename="../QScintilla/ShellWindow.py" line="657" />
       <location filename="../QScintilla/ShellWindow.py" line="656" />
       <source>Move to end of document line</source>
@@ -90921,7 +90962,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1078" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
       <location filename="../QScintilla/ShellWindow.py" line="665" />
       <source>Meta+E</source>
       <translation>Meta+E</translation>
@@ -90929,8 +90970,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1083" />
       <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>End</source>
       <translation>End</translation>
@@ -90938,8 +90979,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="927" />
       <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/MiniEditor.py" line="925" />
       <location filename="../QScintilla/ShellWindow.py" line="677" />
       <location filename="../QScintilla/ShellWindow.py" line="676" />
       <source>Move up one line</source>
@@ -90947,14 +90988,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
+      <location filename="../QScintilla/MiniEditor.py" line="928" />
       <location filename="../QScintilla/ShellWindow.py" line="678" />
       <source>Up</source>
       <translation>Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="934" />
+      <location filename="../QScintilla/MiniEditor.py" line="935" />
       <location filename="../QScintilla/ShellWindow.py" line="685" />
       <source>Meta+P</source>
       <translation>Meta+P</translation>
@@ -90962,8 +91003,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
+      <location filename="../QScintilla/MiniEditor.py" line="943" />
       <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/MiniEditor.py" line="941" />
       <location filename="../QScintilla/ShellWindow.py" line="693" />
       <location filename="../QScintilla/ShellWindow.py" line="692" />
       <source>Move down one line</source>
@@ -90971,14 +91012,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="944" />
       <location filename="../QScintilla/ShellWindow.py" line="694" />
       <source>Down</source>
       <translation>Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="950" />
+      <location filename="../QScintilla/MiniEditor.py" line="951" />
       <location filename="../QScintilla/ShellWindow.py" line="701" />
       <source>Meta+N</source>
       <translation>Meta+N</translation>
@@ -90986,8 +91027,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1194" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
+      <location filename="../QScintilla/MiniEditor.py" line="1092" />
       <location filename="../QScintilla/ShellWindow.py" line="710" />
       <source>Ctrl+Down</source>
       <translation>Ctrl+Down</translation>
@@ -90995,8 +91036,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1174" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
+      <location filename="../QScintilla/MiniEditor.py" line="1104" />
       <location filename="../QScintilla/ShellWindow.py" line="722" />
       <source>Ctrl+Up</source>
       <translation>Ctrl+Up</translation>
@@ -91004,8 +91045,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1139" />
       <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/MiniEditor.py" line="1137" />
       <location filename="../QScintilla/ShellWindow.py" line="733" />
       <location filename="../QScintilla/ShellWindow.py" line="732" />
       <source>Move up one page</source>
@@ -91013,7 +91054,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
+      <location filename="../QScintilla/MiniEditor.py" line="1140" />
       <location filename="../QScintilla/ShellWindow.py" line="734" />
       <source>PgUp</source>
       <translation>PgUp</translation>
@@ -91021,8 +91062,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
+      <location filename="../QScintilla/MiniEditor.py" line="1151" />
       <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1149" />
       <location filename="../QScintilla/ShellWindow.py" line="745" />
       <location filename="../QScintilla/ShellWindow.py" line="744" />
       <source>Move down one page</source>
@@ -91030,14 +91071,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1152" />
       <location filename="../QScintilla/ShellWindow.py" line="746" />
       <source>PgDown</source>
       <translation>PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1158" />
+      <location filename="../QScintilla/MiniEditor.py" line="1159" />
       <location filename="../QScintilla/ShellWindow.py" line="753" />
       <source>Meta+V</source>
       <translation>Meta+V</translation>
@@ -91045,8 +91086,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
+      <location filename="../QScintilla/MiniEditor.py" line="1859" />
       <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/MiniEditor.py" line="1857" />
       <location filename="../QScintilla/ShellWindow.py" line="761" />
       <location filename="../QScintilla/ShellWindow.py" line="760" />
       <source>Escape</source>
@@ -91054,7 +91095,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
+      <location filename="../QScintilla/MiniEditor.py" line="1860" />
       <location filename="../QScintilla/ShellWindow.py" line="762" />
       <source>Esc</source>
       <translation>Esc</translation>
@@ -91062,8 +91103,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1233" />
+      <location filename="../QScintilla/MiniEditor.py" line="1230" />
       <location filename="../QScintilla/ShellWindow.py" line="775" />
       <location filename="../QScintilla/ShellWindow.py" line="772" />
       <source>Extend selection left one character</source>
@@ -91071,14 +91112,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1235" />
+      <location filename="../QScintilla/MiniEditor.py" line="1236" />
       <location filename="../QScintilla/ShellWindow.py" line="778" />
       <source>Shift+Left</source>
       <translation>Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1242" />
+      <location filename="../QScintilla/MiniEditor.py" line="1243" />
       <location filename="../QScintilla/ShellWindow.py" line="785" />
       <source>Meta+Shift+B</source>
       <translation>Meta+Shift+B</translation>
@@ -91086,8 +91127,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1253" />
+      <location filename="../QScintilla/MiniEditor.py" line="1250" />
       <location filename="../QScintilla/ShellWindow.py" line="795" />
       <location filename="../QScintilla/ShellWindow.py" line="792" />
       <source>Extend selection right one character</source>
@@ -91095,14 +91136,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1255" />
+      <location filename="../QScintilla/MiniEditor.py" line="1256" />
       <location filename="../QScintilla/ShellWindow.py" line="798" />
       <source>Shift+Right</source>
       <translation>Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1262" />
+      <location filename="../QScintilla/MiniEditor.py" line="1263" />
       <location filename="../QScintilla/ShellWindow.py" line="805" />
       <source>Meta+Shift+F</source>
       <translation>Meta+Shift+F</translation>
@@ -91110,8 +91151,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
+      <location filename="../QScintilla/MiniEditor.py" line="1347" />
       <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/MiniEditor.py" line="1345" />
       <location filename="../QScintilla/ShellWindow.py" line="813" />
       <location filename="../QScintilla/ShellWindow.py" line="812" />
       <source>Extend selection left one word</source>
@@ -91120,8 +91161,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1355" />
-      <location filename="../QScintilla/MiniEditor.py" line="1315" />
+      <location filename="../QScintilla/MiniEditor.py" line="1356" />
+      <location filename="../QScintilla/MiniEditor.py" line="1316" />
       <location filename="../QScintilla/ShellWindow.py" line="822" />
       <source>Alt+Shift+Left</source>
       <translation>Alt+Shift+Left</translation>
@@ -91129,8 +91170,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2276" />
-      <location filename="../QScintilla/MiniEditor.py" line="1361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2277" />
+      <location filename="../QScintilla/MiniEditor.py" line="1362" />
       <location filename="../QScintilla/ShellWindow.py" line="828" />
       <source>Ctrl+Shift+Left</source>
       <translation>Ctrl+Shift+Left</translation>
@@ -91138,8 +91179,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1372" />
-      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1373" />
+      <location filename="../QScintilla/MiniEditor.py" line="1370" />
       <location filename="../QScintilla/ShellWindow.py" line="839" />
       <location filename="../QScintilla/ShellWindow.py" line="836" />
       <source>Extend selection right one word</source>
@@ -91149,9 +91190,9 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1383" />
-      <location filename="../QScintilla/MiniEditor.py" line="1337" />
+      <location filename="../QScintilla/MiniEditor.py" line="2151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1384" />
+      <location filename="../QScintilla/MiniEditor.py" line="1338" />
       <location filename="../QScintilla/ShellWindow.py" line="850" />
       <source>Alt+Shift+Right</source>
       <translation>Alt+Shift+Right</translation>
@@ -91159,8 +91200,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1837" />
-      <location filename="../QScintilla/MiniEditor.py" line="1389" />
+      <location filename="../QScintilla/MiniEditor.py" line="1838" />
+      <location filename="../QScintilla/MiniEditor.py" line="1390" />
       <location filename="../QScintilla/ShellWindow.py" line="856" />
       <source>Ctrl+Shift+Right</source>
       <translation>Ctrl+Shift+Right</translation>
@@ -91168,8 +91209,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1401" />
-      <location filename="../QScintilla/MiniEditor.py" line="1397" />
+      <location filename="../QScintilla/MiniEditor.py" line="1402" />
+      <location filename="../QScintilla/MiniEditor.py" line="1398" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
       <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
@@ -91177,7 +91218,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1412" />
+      <location filename="../QScintilla/MiniEditor.py" line="1413" />
       <location filename="../QScintilla/ShellWindow.py" line="879" />
       <source>Shift+Home</source>
       <translation>Shift+Home</translation>
@@ -91185,8 +91226,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1422" />
-      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1423" />
+      <location filename="../QScintilla/MiniEditor.py" line="1420" />
       <location filename="../QScintilla/ShellWindow.py" line="889" />
       <location filename="../QScintilla/ShellWindow.py" line="886" />
       <source>Extend selection to end of document line</source>
@@ -91194,14 +91235,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1432" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
       <location filename="../QScintilla/ShellWindow.py" line="899" />
       <source>Meta+Shift+E</source>
       <translation>Meta+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1437" />
       <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Shift+End</source>
       <translation>Shift+End</translation>
@@ -91210,21 +91251,21 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2532" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
       <location filename="../QScintilla/ShellWindow.py" line="917" />
       <source>Search</source>
       <translation>Buscar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2534" />
+      <location filename="../QScintilla/MiniEditor.py" line="2535" />
       <location filename="../QScintilla/ShellWindow.py" line="919" />
       <source>&amp;Search...</source>
       <translation>&amp;Buscar...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2536" />
+      <location filename="../QScintilla/MiniEditor.py" line="2537" />
       <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
@@ -91232,7 +91273,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2543" />
+      <location filename="../QScintilla/MiniEditor.py" line="2544" />
       <location filename="../QScintilla/ShellWindow.py" line="928" />
       <source>Search for a text</source>
       <translation>Buscar un texto</translation>
@@ -91244,21 +91285,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
       <location filename="../QScintilla/ShellWindow.py" line="943" />
       <source>Search next</source>
       <translation>Buscar siguiente</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2560" />
+      <location filename="../QScintilla/MiniEditor.py" line="2561" />
       <location filename="../QScintilla/ShellWindow.py" line="945" />
       <source>Search &amp;next</source>
       <translation>Buscar &amp;Siguiente</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2562" />
+      <location filename="../QScintilla/MiniEditor.py" line="2563" />
       <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>F3</source>
       <comment>Search|Search next</comment>
@@ -91266,7 +91307,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2569" />
+      <location filename="../QScintilla/MiniEditor.py" line="2570" />
       <location filename="../QScintilla/ShellWindow.py" line="954" />
       <source>Search next occurrence of text</source>
       <translation>Buscar siguiente ocurrencia del texto</translation>
@@ -91278,21 +91319,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2584" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
       <location filename="../QScintilla/ShellWindow.py" line="971" />
       <source>Search previous</source>
       <translation>Buscar anterior</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2586" />
+      <location filename="../QScintilla/MiniEditor.py" line="2587" />
       <location filename="../QScintilla/ShellWindow.py" line="973" />
       <source>Search &amp;previous</source>
       <translation>Buscar a&amp;nterior</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2588" />
+      <location filename="../QScintilla/MiniEditor.py" line="2589" />
       <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
@@ -91300,7 +91341,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2597" />
+      <location filename="../QScintilla/MiniEditor.py" line="2598" />
       <location filename="../QScintilla/ShellWindow.py" line="984" />
       <source>Search previous occurrence of text</source>
       <translation>Buscar anterior ocurrencia del texto</translation>
@@ -91312,21 +91353,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2757" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
       <location filename="../QScintilla/ShellWindow.py" line="1010" />
       <source>Zoom in</source>
       <translation>Aumentar zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2759" />
+      <location filename="../QScintilla/MiniEditor.py" line="2760" />
       <location filename="../QScintilla/ShellWindow.py" line="1012" />
       <source>Zoom &amp;in</source>
       <translation>A&amp;umentar Zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/MiniEditor.py" line="2762" />
       <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
@@ -91334,7 +91375,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2764" />
+      <location filename="../QScintilla/MiniEditor.py" line="2765" />
       <location filename="../QScintilla/ShellWindow.py" line="1017" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
@@ -91342,35 +91383,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/MiniEditor.py" line="2771" />
       <location filename="../QScintilla/ShellWindow.py" line="1023" />
       <source>Zoom in on the text</source>
       <translation>Zoom sobre el texto</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2773" />
+      <location filename="../QScintilla/MiniEditor.py" line="2774" />
       <location filename="../QScintilla/ShellWindow.py" line="1026" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aumentar zoom&lt;/b&gt;&lt;p&gt;Aumentar zoom sobre el texto. Hace que el texto sea de mayor tamaño.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2783" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
       <location filename="../QScintilla/ShellWindow.py" line="1036" />
       <source>Zoom out</source>
       <translation>Disminuir Zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2785" />
+      <location filename="../QScintilla/MiniEditor.py" line="2786" />
       <location filename="../QScintilla/ShellWindow.py" line="1038" />
       <source>Zoom &amp;out</source>
       <translation>Dismi&amp;nuir Zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/MiniEditor.py" line="2788" />
       <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
@@ -91378,7 +91419,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2790" />
+      <location filename="../QScintilla/MiniEditor.py" line="2791" />
       <location filename="../QScintilla/ShellWindow.py" line="1043" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
@@ -91386,35 +91427,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/MiniEditor.py" line="2797" />
       <location filename="../QScintilla/ShellWindow.py" line="1049" />
       <source>Zoom out on the text</source>
       <translation>Disminuir zoom en el texto</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2799" />
+      <location filename="../QScintilla/MiniEditor.py" line="2800" />
       <location filename="../QScintilla/ShellWindow.py" line="1052" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Disminuir zoom&lt;/b&gt;&lt;p&gt;Disminuir zoom sobre el texto. Hace que el texto sea de menor tamaño.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2809" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
       <location filename="../QScintilla/ShellWindow.py" line="1062" />
       <source>Zoom reset</source>
       <translation>Restablecer zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2811" />
+      <location filename="../QScintilla/MiniEditor.py" line="2812" />
       <location filename="../QScintilla/ShellWindow.py" line="1064" />
       <source>Zoom &amp;reset</source>
       <translation>&amp;Restablecer zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2813" />
+      <location filename="../QScintilla/MiniEditor.py" line="2814" />
       <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
@@ -91422,42 +91463,42 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/MiniEditor.py" line="2821" />
       <location filename="../QScintilla/ShellWindow.py" line="1073" />
       <source>Reset the zoom of the text</source>
       <translation>Restablecer el zoom aplicado al texto</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2823" />
+      <location filename="../QScintilla/MiniEditor.py" line="2824" />
       <location filename="../QScintilla/ShellWindow.py" line="1076" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Restablecer zoom&lt;/b&gt;&lt;p&gt;Restablece el zoom aplicado al texto. Establece el factor de zoom a 100%.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2834" />
+      <location filename="../QScintilla/MiniEditor.py" line="2835" />
       <location filename="../QScintilla/ShellWindow.py" line="1087" />
       <source>Zoom</source>
       <translation>Zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2836" />
+      <location filename="../QScintilla/MiniEditor.py" line="2837" />
       <location filename="../QScintilla/ShellWindow.py" line="1089" />
       <source>&amp;Zoom</source>
       <translation>&amp;Zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/MiniEditor.py" line="2844" />
       <location filename="../QScintilla/ShellWindow.py" line="1096" />
       <source>Zoom the text</source>
       <translation>Zoom sobre el texto</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2846" />
+      <location filename="../QScintilla/MiniEditor.py" line="2847" />
       <location filename="../QScintilla/ShellWindow.py" line="1099" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom sobre el texto. Abre un diálogo donde se puede introducir el tamaño deseado.&lt;/p&gt;</translation>
@@ -91465,984 +91506,984 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="804" />
       <location filename="../ViewManager/ViewManager.py" line="802" />
-      <location filename="../QScintilla/MiniEditor.py" line="740" />
+      <location filename="../QScintilla/MiniEditor.py" line="741" />
       <source>Print Preview</source>
       <translation>Presentación preliminar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
+      <location filename="../QScintilla/MiniEditor.py" line="959" />
       <location filename="../QScintilla/MiniEditor.py" line="958" />
-      <location filename="../QScintilla/MiniEditor.py" line="957" />
       <source>Move left one word part</source>
       <translation>Mover a la izquierda una parte de palabra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
+      <location filename="../QScintilla/MiniEditor.py" line="975" />
       <location filename="../QScintilla/MiniEditor.py" line="974" />
-      <location filename="../QScintilla/MiniEditor.py" line="973" />
       <source>Move right one word part</source>
       <translation>Mover a la derecha una parte de palabra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2128" />
-      <location filename="../QScintilla/MiniEditor.py" line="1018" />
-      <location filename="../QScintilla/MiniEditor.py" line="982" />
+      <location filename="../QScintilla/MiniEditor.py" line="2129" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/MiniEditor.py" line="983" />
       <source>Alt+Right</source>
       <translation>Alt+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1051" />
       <location filename="../QScintilla/MiniEditor.py" line="1050" />
-      <location filename="../QScintilla/MiniEditor.py" line="1049" />
       <source>Move to start of display line</source>
       <translation>Mover al principio de la línea mostrada</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="1063" />
       <source>Alt+Home</source>
       <translation>Alt+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
+      <location filename="../QScintilla/MiniEditor.py" line="1091" />
       <location filename="../QScintilla/MiniEditor.py" line="1090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1089" />
       <source>Scroll view down one line</source>
       <translation>Scroll hacia abajo una línea</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
+      <location filename="../QScintilla/MiniEditor.py" line="1103" />
       <location filename="../QScintilla/MiniEditor.py" line="1102" />
-      <location filename="../QScintilla/MiniEditor.py" line="1101" />
       <source>Scroll view up one line</source>
       <translation>Scroll hacia arriba una línea</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
+      <location filename="../QScintilla/MiniEditor.py" line="1115" />
       <location filename="../QScintilla/MiniEditor.py" line="1114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1113" />
       <source>Move up one paragraph</source>
       <translation>Mover arriba un párrafo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
+      <location filename="../QScintilla/MiniEditor.py" line="1116" />
       <source>Alt+Up</source>
       <translation>Alt+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
+      <location filename="../QScintilla/MiniEditor.py" line="1127" />
       <location filename="../QScintilla/MiniEditor.py" line="1126" />
-      <location filename="../QScintilla/MiniEditor.py" line="1125" />
       <source>Move down one paragraph</source>
       <translation>Mover abajo un párrafo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
+      <location filename="../QScintilla/MiniEditor.py" line="1128" />
       <source>Alt+Down</source>
       <translation>Alt+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
+      <location filename="../QScintilla/MiniEditor.py" line="1167" />
       <location filename="../QScintilla/MiniEditor.py" line="1166" />
-      <location filename="../QScintilla/MiniEditor.py" line="1165" />
       <source>Move to start of document</source>
       <translation>Mover al principio del documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1178" />
+      <location filename="../QScintilla/MiniEditor.py" line="1179" />
       <source>Ctrl+Home</source>
       <translation>Ctrl+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
+      <location filename="../QScintilla/MiniEditor.py" line="1187" />
       <location filename="../QScintilla/MiniEditor.py" line="1186" />
-      <location filename="../QScintilla/MiniEditor.py" line="1185" />
       <source>Move to end of document</source>
       <translation>Mover al final del documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1198" />
+      <location filename="../QScintilla/MiniEditor.py" line="1199" />
       <source>Ctrl+End</source>
       <translation>Ctrl+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
+      <location filename="../QScintilla/MiniEditor.py" line="1219" />
       <location filename="../QScintilla/MiniEditor.py" line="1218" />
-      <location filename="../QScintilla/MiniEditor.py" line="1217" />
       <source>Unindent one level</source>
       <translation>Desindentar un nivel</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
+      <location filename="../QScintilla/MiniEditor.py" line="1220" />
       <source>Shift+Tab</source>
       <translation>Shift+Tab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
+      <location filename="../QScintilla/MiniEditor.py" line="1271" />
       <location filename="../QScintilla/MiniEditor.py" line="1270" />
-      <location filename="../QScintilla/MiniEditor.py" line="1269" />
       <source>Extend selection up one line</source>
       <translation>Extender selección hacia arriba una línea</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
+      <location filename="../QScintilla/MiniEditor.py" line="1272" />
       <source>Shift+Up</source>
       <translation>Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1278" />
+      <location filename="../QScintilla/MiniEditor.py" line="1279" />
       <source>Meta+Shift+P</source>
       <translation>Meta+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
+      <location filename="../QScintilla/MiniEditor.py" line="1287" />
       <location filename="../QScintilla/MiniEditor.py" line="1286" />
-      <location filename="../QScintilla/MiniEditor.py" line="1285" />
       <source>Extend selection down one line</source>
       <translation>Extender selección hacia abajo una línea</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
+      <location filename="../QScintilla/MiniEditor.py" line="1288" />
       <source>Shift+Down</source>
       <translation>Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1294" />
+      <location filename="../QScintilla/MiniEditor.py" line="1295" />
       <source>Meta+Shift+N</source>
       <translation>Meta+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1304" />
-      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1305" />
+      <location filename="../QScintilla/MiniEditor.py" line="1302" />
       <source>Extend selection left one word part</source>
       <translation>Extender selección a la izquierda una parte de palabra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1326" />
-      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1327" />
+      <location filename="../QScintilla/MiniEditor.py" line="1324" />
       <source>Extend selection right one word part</source>
       <translation>Extender selección a la derecha una parte de palabra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1446" />
-      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1447" />
+      <location filename="../QScintilla/MiniEditor.py" line="1444" />
       <source>Extend selection up one paragraph</source>
       <translation>Extender selección hacia arriba un párrafo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1449" />
+      <location filename="../QScintilla/MiniEditor.py" line="1450" />
       <source>Alt+Shift+Up</source>
       <translation>Alt+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1462" />
-      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1463" />
+      <location filename="../QScintilla/MiniEditor.py" line="1460" />
       <source>Extend selection down one paragraph</source>
       <translation>Extender selección hacia abajo un párrafo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1465" />
+      <location filename="../QScintilla/MiniEditor.py" line="1466" />
       <source>Alt+Shift+Down</source>
       <translation>Alt+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1477" />
       <location filename="../QScintilla/MiniEditor.py" line="1476" />
-      <location filename="../QScintilla/MiniEditor.py" line="1475" />
       <source>Extend selection up one page</source>
       <translation>Extender selección arriba una página</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
+      <location filename="../QScintilla/MiniEditor.py" line="1478" />
       <source>Shift+PgUp</source>
       <translation>Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="1489" />
       <location filename="../QScintilla/MiniEditor.py" line="1488" />
-      <location filename="../QScintilla/MiniEditor.py" line="1487" />
       <source>Extend selection down one page</source>
       <translation>Extender selección hacia abajo una línea</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
+      <location filename="../QScintilla/MiniEditor.py" line="1490" />
       <source>Shift+PgDown</source>
       <translation>Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1496" />
+      <location filename="../QScintilla/MiniEditor.py" line="1497" />
       <source>Meta+Shift+V</source>
       <translation>Meta+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1506" />
-      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1507" />
+      <location filename="../QScintilla/MiniEditor.py" line="1504" />
       <source>Extend selection to start of document</source>
       <translation>Extender selección al principio del documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1516" />
+      <location filename="../QScintilla/MiniEditor.py" line="1517" />
       <source>Ctrl+Shift+Up</source>
       <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1521" />
+      <location filename="../QScintilla/MiniEditor.py" line="1522" />
       <source>Ctrl+Shift+Home</source>
       <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1533" />
+      <location filename="../QScintilla/MiniEditor.py" line="1530" />
       <source>Extend selection to end of document</source>
       <translation>Extender selección al final del documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1543" />
+      <location filename="../QScintilla/MiniEditor.py" line="1544" />
       <source>Ctrl+Shift+Down</source>
       <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1549" />
+      <location filename="../QScintilla/MiniEditor.py" line="1550" />
       <source>Ctrl+Shift+End</source>
       <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1583" />
+      <location filename="../QScintilla/MiniEditor.py" line="1580" />
       <source>Delete previous character if not at start of line</source>
       <translation>Borrar carácter anterior si no se está al principio de la línea</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1697" />
       <location filename="../QScintilla/MiniEditor.py" line="1696" />
-      <location filename="../QScintilla/MiniEditor.py" line="1695" />
       <source>Duplicate current line</source>
       <translation>Duplicar línea actual</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
+      <location filename="../QScintilla/MiniEditor.py" line="1698" />
       <source>Ctrl+D</source>
       <translation>Ctrl+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1710" />
-      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1711" />
+      <location filename="../QScintilla/MiniEditor.py" line="1708" />
       <source>Swap current and previous lines</source>
       <translation>Intercambiar línea actual con la anterior</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1713" />
+      <location filename="../QScintilla/MiniEditor.py" line="1714" />
       <source>Ctrl+T</source>
       <translation>Ctrl+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="1725" />
       <location filename="../QScintilla/MiniEditor.py" line="1724" />
-      <location filename="../QScintilla/MiniEditor.py" line="1723" />
       <source>Reverse selected lines</source>
       <translation>Revertir líneas seleccionadas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
+      <location filename="../QScintilla/MiniEditor.py" line="1726" />
       <source>Meta+Alt+R</source>
       <translation>Meta+Alt+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
+      <location filename="../QScintilla/MiniEditor.py" line="1737" />
       <location filename="../QScintilla/MiniEditor.py" line="1736" />
-      <location filename="../QScintilla/MiniEditor.py" line="1735" />
       <source>Cut current line</source>
       <translation>Cortar línea actual</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
+      <location filename="../QScintilla/MiniEditor.py" line="1738" />
       <source>Alt+Shift+L</source>
       <translation>Alt+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
+      <location filename="../QScintilla/MiniEditor.py" line="1749" />
       <location filename="../QScintilla/MiniEditor.py" line="1748" />
-      <location filename="../QScintilla/MiniEditor.py" line="1747" />
       <source>Copy current line</source>
       <translation>Copiar línea actual</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="1750" />
       <source>Ctrl+Shift+T</source>
       <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
+      <location filename="../QScintilla/MiniEditor.py" line="1761" />
       <location filename="../QScintilla/MiniEditor.py" line="1760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1759" />
       <source>Toggle insert/overtype</source>
       <translation>Alternar insertar/sobreescribir</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
+      <location filename="../QScintilla/MiniEditor.py" line="1762" />
       <source>Ins</source>
       <translation>Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1775" />
+      <location filename="../QScintilla/MiniEditor.py" line="1772" />
       <source>Convert selection to lower case</source>
       <translation>Convertir selección a minúsculas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1777" />
+      <location filename="../QScintilla/MiniEditor.py" line="1778" />
       <source>Alt+Shift+U</source>
       <translation>Alt+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1791" />
+      <location filename="../QScintilla/MiniEditor.py" line="1788" />
       <source>Convert selection to upper case</source>
       <translation>Convertir selección a mayúsculas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1793" />
+      <location filename="../QScintilla/MiniEditor.py" line="1794" />
       <source>Ctrl+Shift+U</source>
       <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
+      <location filename="../QScintilla/MiniEditor.py" line="1805" />
       <location filename="../QScintilla/MiniEditor.py" line="1804" />
-      <location filename="../QScintilla/MiniEditor.py" line="1803" />
       <source>Move to end of display line</source>
       <translation>Mover al final de la línea mostrada</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1816" />
+      <location filename="../QScintilla/MiniEditor.py" line="1817" />
       <source>Alt+End</source>
       <translation>Alt+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1827" />
+      <location filename="../QScintilla/MiniEditor.py" line="1824" />
       <source>Extend selection to end of display line</source>
       <translation>Extender selección hasta el final de la línea mostrada</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
+      <location filename="../QScintilla/MiniEditor.py" line="1847" />
       <location filename="../QScintilla/MiniEditor.py" line="1846" />
-      <location filename="../QScintilla/MiniEditor.py" line="1845" />
       <source>Formfeed</source>
       <translation>Formfeed</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1872" />
-      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1873" />
+      <location filename="../QScintilla/MiniEditor.py" line="1870" />
       <source>Extend rectangular selection down one line</source>
       <translation>Extender selección rectangular hacia abajo una línea</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1875" />
+      <location filename="../QScintilla/MiniEditor.py" line="1876" />
       <source>Alt+Ctrl+Down</source>
       <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1883" />
+      <location filename="../QScintilla/MiniEditor.py" line="1884" />
       <source>Meta+Alt+Shift+N</source>
       <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1894" />
-      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1895" />
+      <location filename="../QScintilla/MiniEditor.py" line="1892" />
       <source>Extend rectangular selection up one line</source>
       <translation>Extender selección rectangular hacia arriba una línea</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1897" />
+      <location filename="../QScintilla/MiniEditor.py" line="1898" />
       <source>Alt+Ctrl+Up</source>
       <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1905" />
+      <location filename="../QScintilla/MiniEditor.py" line="1906" />
       <source>Meta+Alt+Shift+P</source>
       <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1916" />
-      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1917" />
+      <location filename="../QScintilla/MiniEditor.py" line="1914" />
       <source>Extend rectangular selection left one character</source>
       <translation>Extender selección rectangular a la izquierda un carácter</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1919" />
+      <location filename="../QScintilla/MiniEditor.py" line="1920" />
       <source>Alt+Ctrl+Left</source>
       <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1927" />
+      <location filename="../QScintilla/MiniEditor.py" line="1928" />
       <source>Meta+Alt+Shift+B</source>
       <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1938" />
-      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1939" />
+      <location filename="../QScintilla/MiniEditor.py" line="1936" />
       <source>Extend rectangular selection right one character</source>
       <translation>Extender selección rectangular a la derecha un carácter</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1941" />
+      <location filename="../QScintilla/MiniEditor.py" line="1942" />
       <source>Alt+Ctrl+Right</source>
       <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1949" />
+      <location filename="../QScintilla/MiniEditor.py" line="1950" />
       <source>Meta+Alt+Shift+F</source>
       <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1962" />
-      <location filename="../QScintilla/MiniEditor.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1963" />
+      <location filename="../QScintilla/MiniEditor.py" line="1958" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation>Extender selección rectangular al primer carácter visible en la línea de documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1975" />
+      <location filename="../QScintilla/MiniEditor.py" line="1976" />
       <source>Alt+Shift+Home</source>
       <translation>Alt+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1986" />
-      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1987" />
+      <location filename="../QScintilla/MiniEditor.py" line="1984" />
       <source>Extend rectangular selection to end of document line</source>
       <translation>Extender selección rectangular hasta el final de la línea de documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1997" />
+      <location filename="../QScintilla/MiniEditor.py" line="1998" />
       <source>Meta+Alt+Shift+E</source>
       <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2002" />
+      <location filename="../QScintilla/MiniEditor.py" line="2003" />
       <source>Alt+Shift+End</source>
       <translation>Alt+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2012" />
-      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2013" />
+      <location filename="../QScintilla/MiniEditor.py" line="2010" />
       <source>Extend rectangular selection up one page</source>
       <translation>Extender selección rectangular hacia arriba una página</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2015" />
+      <location filename="../QScintilla/MiniEditor.py" line="2016" />
       <source>Alt+Shift+PgUp</source>
       <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2028" />
-      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2029" />
+      <location filename="../QScintilla/MiniEditor.py" line="2026" />
       <source>Extend rectangular selection down one page</source>
       <translation>Extender selección rectangular hacia abajo una página</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2031" />
+      <location filename="../QScintilla/MiniEditor.py" line="2032" />
       <source>Alt+Shift+PgDown</source>
       <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2039" />
+      <location filename="../QScintilla/MiniEditor.py" line="2040" />
       <source>Meta+Alt+Shift+V</source>
       <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2515" />
       <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2513" />
+      <location filename="../QScintilla/MiniEditor.py" line="2049" />
       <location filename="../QScintilla/MiniEditor.py" line="2048" />
-      <location filename="../QScintilla/MiniEditor.py" line="2047" />
       <source>Duplicate current selection</source>
       <translation>Duplicar selección actual</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2516" />
+      <location filename="../QScintilla/MiniEditor.py" line="2050" />
       <source>Ctrl+Shift+D</source>
       <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2063" />
-      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2061" />
       <source>Scroll to start of document</source>
       <translation>Desplazamiento hasta el principio del documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
+      <location filename="../QScintilla/MiniEditor.py" line="2083" />
       <location filename="../QScintilla/MiniEditor.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="2081" />
       <source>Scroll to end of document</source>
       <translation>Desplazamiento hasta el final del documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2101" />
-      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2102" />
+      <location filename="../QScintilla/MiniEditor.py" line="2099" />
       <source>Scroll vertically to center current line</source>
       <translation>Desplazamiento vertical para centrar la línea actual</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2111" />
+      <location filename="../QScintilla/MiniEditor.py" line="2112" />
       <source>Meta+L</source>
       <translation>Meta+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
+      <location filename="../QScintilla/MiniEditor.py" line="2121" />
       <location filename="../QScintilla/MiniEditor.py" line="2120" />
-      <location filename="../QScintilla/MiniEditor.py" line="2119" />
       <source>Move to end of next word</source>
       <translation>Mover al final de la palabra siguiente</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2139" />
-      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2140" />
+      <location filename="../QScintilla/MiniEditor.py" line="2137" />
       <source>Extend selection to end of next word</source>
       <translation>Extender selección al final de la siguiente palabra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2162" />
-      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2163" />
+      <location filename="../QScintilla/MiniEditor.py" line="2160" />
       <source>Move to end of previous word</source>
       <translation>Mover al final de la palabra anterior</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2179" />
-      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2180" />
+      <location filename="../QScintilla/MiniEditor.py" line="2177" />
       <source>Extend selection to end of previous word</source>
       <translation>Extender selección al final de la palabra anterior</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2196" />
-      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2197" />
+      <location filename="../QScintilla/MiniEditor.py" line="2194" />
       <source>Move to start of document line</source>
       <translation>Mover al principio de la línea de documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2206" />
+      <location filename="../QScintilla/MiniEditor.py" line="2207" />
       <source>Meta+A</source>
       <translation>Meta+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2218" />
+      <location filename="../QScintilla/MiniEditor.py" line="2215" />
       <source>Extend selection to start of document line</source>
       <translation>Extender selección hasta el inicio de la línea documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2228" />
+      <location filename="../QScintilla/MiniEditor.py" line="2229" />
       <source>Meta+Shift+A</source>
       <translation>/media/110106_1117</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2241" />
-      <location filename="../QScintilla/MiniEditor.py" line="2237" />
+      <location filename="../QScintilla/MiniEditor.py" line="2242" />
+      <location filename="../QScintilla/MiniEditor.py" line="2238" />
       <source>Extend rectangular selection to start of document line</source>
       <translation>Extender selección rectangular hasta el principio de la línea de documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2253" />
+      <location filename="../QScintilla/MiniEditor.py" line="2254" />
       <source>Meta+Alt+Shift+A</source>
       <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2265" />
-      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2266" />
+      <location filename="../QScintilla/MiniEditor.py" line="2263" />
       <source>Extend selection to start of display line</source>
       <translation>Extender selección hasta el principio de la línea mostrada</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2288" />
-      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2289" />
+      <location filename="../QScintilla/MiniEditor.py" line="2286" />
       <source>Move to start of display or document line</source>
       <translation>Mover al principio de línea mostrada o de documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2306" />
-      <location filename="../QScintilla/MiniEditor.py" line="2302" />
+      <location filename="../QScintilla/MiniEditor.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="2303" />
       <source>Extend selection to start of display or document line</source>
       <translation>Extender selección hasta el inicio de la línea mostrada o de documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2325" />
-      <location filename="../QScintilla/MiniEditor.py" line="2321" />
+      <location filename="../QScintilla/MiniEditor.py" line="2326" />
+      <location filename="../QScintilla/MiniEditor.py" line="2322" />
       <source>Move to first visible character in display or document line</source>
       <translation>Mover al primer carácter visible en la línea mostrada o de documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2345" />
-      <location filename="../QScintilla/MiniEditor.py" line="2340" />
+      <location filename="../QScintilla/MiniEditor.py" line="2346" />
+      <location filename="../QScintilla/MiniEditor.py" line="2341" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation>Extender selección al primer carácter visible en la línea mostrada o de documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2364" />
-      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2365" />
+      <location filename="../QScintilla/MiniEditor.py" line="2362" />
       <source>Move to end of display or document line</source>
       <translation>Mover al final de la línea mostrada o de documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2381" />
-      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2382" />
+      <location filename="../QScintilla/MiniEditor.py" line="2379" />
       <source>Extend selection to end of display or document line</source>
       <translation>Extender selección al final de la línea mostrada o de documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="2397" />
       <location filename="../QScintilla/MiniEditor.py" line="2396" />
-      <location filename="../QScintilla/MiniEditor.py" line="2395" />
       <source>Stuttered move up one page</source>
       <translation>Mover progresivamente hacia arriba una página</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2411" />
-      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2412" />
+      <location filename="../QScintilla/MiniEditor.py" line="2409" />
       <source>Stuttered extend selection up one page</source>
       <translation>Extender progresivamente la selección arriba una página</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2428" />
-      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2429" />
+      <location filename="../QScintilla/MiniEditor.py" line="2426" />
       <source>Stuttered move down one page</source>
       <translation>Mover progresivamente hacia abajo una página</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2446" />
+      <location filename="../QScintilla/MiniEditor.py" line="2443" />
       <source>Stuttered extend selection down one page</source>
       <translation>Extender progresivamente la selección abajo una página</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2462" />
-      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2463" />
+      <location filename="../QScintilla/MiniEditor.py" line="2460" />
       <source>Delete right to end of next word</source>
       <translation>Borrar a la derecha hasta el final de la siguiente palabra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2472" />
+      <location filename="../QScintilla/MiniEditor.py" line="2473" />
       <source>Alt+Del</source>
       <translation>Alt+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2484" />
+      <location filename="../QScintilla/MiniEditor.py" line="2481" />
       <source>Move selected lines up one line</source>
       <translation>Mover las líneas seleccionadas arriba una línea</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2500" />
-      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2501" />
+      <location filename="../QScintilla/MiniEditor.py" line="2498" />
       <source>Move selected lines down one line</source>
       <translation>Mover las líneas seleccionadas abajo una línea</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2546" />
+      <location filename="../QScintilla/MiniEditor.py" line="2547" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Buscar&lt;/b&gt;&lt;p&gt;Buscar texto en el editor. En el diálogo muestra opciones e indica el texto de búsqueda.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2572" />
+      <location filename="../QScintilla/MiniEditor.py" line="2573" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Buscar siguiente&lt;/b&gt;&lt;p&gt;Buscar la siguiente ocurrencia de un texto en el editor actual. Se reutilizan el texto de búsqueda introducido anteriormente y sus opciones.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2602" />
+      <location filename="../QScintilla/MiniEditor.py" line="2603" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Buscar anterior&lt;/b&gt;&lt;p&gt;Buscar la anterior ocurrencia de un texto en el editor actual. Se reutilizan el texto de búsqueda introducido anteriormente y sus opciones.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2616" />
-      <location filename="../QScintilla/MiniEditor.py" line="2614" />
+      <location filename="../QScintilla/MiniEditor.py" line="2617" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Clear search markers</source>
       <translation>Limpiar marcadores de búsqueda</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2618" />
+      <location filename="../QScintilla/MiniEditor.py" line="2619" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation>Ctrl+3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2627" />
+      <location filename="../QScintilla/MiniEditor.py" line="2628" />
       <source>Clear all displayed search markers</source>
       <translation>Limpiar todos los marcadores de texto mostrados</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2632" />
+      <location filename="../QScintilla/MiniEditor.py" line="2633" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Limpiar marcadores de búsqueda&lt;/b&gt;&lt;p&gt;Limpiar todos los marcadores de búsqueda mostrados.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2642" />
+      <location filename="../QScintilla/MiniEditor.py" line="2643" />
       <source>Replace</source>
       <translation>Reemplazar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2644" />
       <source>&amp;Replace...</source>
       <translation>&amp;Reemplazar...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2645" />
+      <location filename="../QScintilla/MiniEditor.py" line="2646" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation>Ctrl+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2652" />
+      <location filename="../QScintilla/MiniEditor.py" line="2653" />
       <source>Replace some text</source>
       <translation>Reemplazar un texto</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2655" />
+      <location filename="../QScintilla/MiniEditor.py" line="2656" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Reemplazar&lt;/b&gt;&lt;p&gt;Buscar un texto en el editor actual y reemplazarlo. Se muestra un diálogo para introducir el texto de búsqueda, el texto de reemplazo y las opciones para buscar y reemplazar.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2669" />
-      <location filename="../QScintilla/MiniEditor.py" line="2667" />
+      <location filename="../QScintilla/MiniEditor.py" line="2670" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Replace and Search</source>
       <translation>Buscar y Reemplazar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2671" />
+      <location filename="../QScintilla/MiniEditor.py" line="2672" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation>Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2680" />
+      <location filename="../QScintilla/MiniEditor.py" line="2681" />
       <source>Replace the found text and search the next occurrence</source>
       <translation>Reemplazar el texto encontrado y buscar siguiente ocurrencia</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2685" />
+      <location filename="../QScintilla/MiniEditor.py" line="2686" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Buscar y Reemplazar&lt;/b&gt;&lt;p&gt;Reemplazar la ocurrencia de texto en editor actual y buscar la siguiente. Se reusan el texto y las opciones de búsqueda introducidas previamente.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2701" />
-      <location filename="../QScintilla/MiniEditor.py" line="2699" />
+      <location filename="../QScintilla/MiniEditor.py" line="2702" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Replace Occurrence</source>
       <translation>Reemplazar Ocurrencia</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2703" />
+      <location filename="../QScintilla/MiniEditor.py" line="2704" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation>Ctrl+Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2712" />
+      <location filename="../QScintilla/MiniEditor.py" line="2713" />
       <source>Replace the found text</source>
       <translation>Reemplazar el texto encontrado</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2715" />
+      <location filename="../QScintilla/MiniEditor.py" line="2716" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Reemplazar Ocurrencia&lt;/b&gt;&lt;p&gt;Reemplazar la ocurrencia del texto de búsqueda hallado en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2728" />
-      <location filename="../QScintilla/MiniEditor.py" line="2726" />
+      <location filename="../QScintilla/MiniEditor.py" line="2729" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Replace All</source>
       <translation>Reemplazar Todo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2730" />
+      <location filename="../QScintilla/MiniEditor.py" line="2731" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation>Shift+Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2739" />
+      <location filename="../QScintilla/MiniEditor.py" line="2740" />
       <source>Replace search text occurrences</source>
       <translation>Reemplazar ocurrencias de texto de búsqueda</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2742" />
+      <location filename="../QScintilla/MiniEditor.py" line="2743" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Reemplazar Todo&lt;/b&gt;&lt;p&gt;Reemplazar todas las ocurrencias del texto de búsqueda en el editor actual.&lt;/p&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_fr.ts	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/i18n/eric7_fr.ts	Sat Apr 15 18:22:09 2023 +0200
@@ -1821,77 +1821,77 @@
   <context>
     <name>BaseDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="190" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="196" />
       <source>Device Data Not Available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="191" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="197" />
       <source>&lt;p&gt;The device data is not available. Try to connect to the device again. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="244" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="250" />
       <source>Unsupported Device</source>
       <translation type="unfinished">Matériel non supporté</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="254" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="260" />
       <source>REPL is not supported by this device.</source>
       <translation type="unfinished">REPL n'est pas supporté pour ce matériel.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="273" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="279" />
       <source>Plotter is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="292" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="298" />
       <source>Running scripts is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="311" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="317" />
       <source>File Manager is not supported by this device.</source>
       <translation type="unfinished">Le gestionnaire de fichier n'est pas supporté pour ce matériel.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="366" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="372" />
       <source>Select Device Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="367" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="373" />
       <source>Select the directory for the connected device:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="513" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="519" />
       <source>Detected an error without indications.</source>
       <translation type="unfinished">Supprimer une erreur sans indications.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1400" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1464" />
       <source>Operation not supported.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>Yes</source>
       <translation type="unfinished">Oui</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>No</source>
       <translation type="unfinished">Non</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>yes</source>
       <translation type="unfinished">oui</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>no</source>
       <translation type="unfinished">non</translation>
     </message>
@@ -4074,17 +4074,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="141" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
       <source>WIZnet 5x00 Ethernet</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="143" />
       <source>&lt;p&gt;Support for &lt;b&gt;WIZnet 5x00&lt;/b&gt; Ethernet boards could not be detected. Is the module &lt;b&gt;adafruit_wiznet5k&lt;/b&gt; installed?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="176" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="177" />
       <source>CircuitPython</source>
       <translation type="unfinished" />
     </message>
@@ -4252,114 +4252,114 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1127" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="864" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1128" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="865" />
       <source>unknown ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1576" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1499" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1039" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="960" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1577" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1500" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1040" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="961" />
       <source>The device volume is not available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1003" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="975" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
       <source>Write WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1539" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1005" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="977" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1546" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="984" />
+      <source>Aborted</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1195" />
+      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1266" />
+      <source>CircuitPython does not support reporting of connected clients.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
+      <source>Active</source>
+      <translation type="unfinished">Actif</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
+      <source>Connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
+      <source>IPv4 Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
+      <source>Netmask</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
+      <source>Gateway</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
+      <source>DNS</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1677" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
+      <source>Chip Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1358" />
+      <source>max. Sockets</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1538" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1545" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1011" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="983" />
-      <source>Aborted</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1194" />
-      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1265" />
-      <source>CircuitPython does not support reporting of connected clients.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1674" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1349" />
-      <source>Active</source>
-      <translation type="unfinished">Actif</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1680" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
-      <source>Connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
-      <source>IPv4 Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
-      <source>Netmask</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
-      <source>Gateway</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
-      <source>DNS</source>
+      <source>Write Connect Script</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1676" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
-      <source>Chip Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
-      <source>max. Sockets</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1537" />
-      <source>Write Connect Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
       <source>Name</source>
       <translation type="unfinished">Nom</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1678" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1679" />
       <source>Address Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1682" />
       <source>Advertising</source>
       <translation type="unfinished" />
     </message>
@@ -10417,12 +10417,12 @@
       <translation>&lt;p&gt;Impossible de lancer le débogueur en arrière-plan.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1378" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1380" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1379" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1381" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -12272,7 +12272,7 @@
       <translation>Décommenter</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9146" />
+      <location filename="../QScintilla/Editor.py" line="9154" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12545,7 +12545,7 @@
       <translation type="unfinished">Orthographe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8264" />
+      <location filename="../QScintilla/Editor.py" line="8272" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation>Correction orthographique...</translation>
@@ -12606,7 +12606,7 @@
       <translation>Éditer le point d'arrêt...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5923" />
+      <location filename="../QScintilla/Editor.py" line="5932" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation>Activer le point d'arrêt</translation>
@@ -12840,356 +12840,356 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5097" />
+      <location filename="../QScintilla/Editor.py" line="5106" />
       <source>Autocompletion</source>
       <translation>Autocompletion</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5098" />
+      <location filename="../QScintilla/Editor.py" line="5107" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>L'autocompletion n'est pas disponible car aucune source d'autocomplétion n'est définie.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5226" />
+      <location filename="../QScintilla/Editor.py" line="5235" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5227" />
+      <location filename="../QScintilla/Editor.py" line="5236" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5519" />
+      <location filename="../QScintilla/Editor.py" line="5528" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5520" />
+      <location filename="../QScintilla/Editor.py" line="5529" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5927" />
+      <location filename="../QScintilla/Editor.py" line="5936" />
       <source>Disable breakpoint</source>
       <translation>Désactiver le point d'arrêt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6307" />
+      <location filename="../QScintilla/Editor.py" line="6315" />
       <source>Code Coverage</source>
       <translation>Code Coverage</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6308" />
+      <location filename="../QScintilla/Editor.py" line="6316" />
       <source>Please select a coverage file</source>
       <translation>Sélectionner un fichier coverage</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="6391" />
       <location filename="../QScintilla/Editor.py" line="6383" />
-      <location filename="../QScintilla/Editor.py" line="6375" />
       <source>Show Code Coverage Annotations</source>
       <translation>Afficher les annotations de Code Coverage</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6376" />
-      <source>All lines have been covered.</source>
-      <translation>Toutes les lignes ont été executées.</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="6384" />
+      <source>All lines have been covered.</source>
+      <translation>Toutes les lignes ont été executées.</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="6392" />
       <source>There is no coverage file available.</source>
       <translation>Impossible de trouver le fichier de coverage.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6488" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <source>Profile Data</source>
       <translation>Profiler de données</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6489" />
+      <location filename="../QScintilla/Editor.py" line="6497" />
       <source>Please select a profile file</source>
       <translation>Sélectionner un fichier profile</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6650" />
-      <location filename="../QScintilla/Editor.py" line="6644" />
+      <location filename="../QScintilla/Editor.py" line="6658" />
+      <location filename="../QScintilla/Editor.py" line="6652" />
       <source>Syntax Error</source>
       <translation>Erreur de syntaxe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6651" />
+      <location filename="../QScintilla/Editor.py" line="6659" />
       <source>No syntax error message available.</source>
       <translation>Aucun message d'erreur de syntaxe..</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
-      <location filename="../QScintilla/Editor.py" line="6856" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6864" />
       <source>Warning</source>
       <translation>Warning</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
       <source>No warning messages available.</source>
       <translation>Pas de message d'alerte disponible.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6926" />
+      <location filename="../QScintilla/Editor.py" line="6934" />
       <source>Style: {0}</source>
       <translation>Style : {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6929" />
+      <location filename="../QScintilla/Editor.py" line="6937" />
       <source>Warning: {0}</source>
       <translation>Alerte : {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6936" />
+      <location filename="../QScintilla/Editor.py" line="6944" />
       <source>Error: {0}</source>
       <translation>Erreur : {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Macro Name</source>
       <translation>Nom de la macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Select a macro name:</source>
       <translation>Sélectionner un nom de macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7069" />
+      <location filename="../QScintilla/Editor.py" line="7077" />
       <source>Load macro file</source>
       <translation>Charger un fichier macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7115" />
-      <location filename="../QScintilla/Editor.py" line="7071" />
+      <location filename="../QScintilla/Editor.py" line="7123" />
+      <location filename="../QScintilla/Editor.py" line="7079" />
       <source>Macro files (*.macro)</source>
       <translation>Fichier Macro (*.macro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7093" />
-      <location filename="../QScintilla/Editor.py" line="7083" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
+      <location filename="../QScintilla/Editor.py" line="7091" />
       <source>Error loading macro</source>
       <translation>Erreur lors du chargement de la macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7084" />
+      <location filename="../QScintilla/Editor.py" line="7092" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7094" />
+      <location filename="../QScintilla/Editor.py" line="7102" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt; est corrompu.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7113" />
+      <location filename="../QScintilla/Editor.py" line="7121" />
       <source>Save macro file</source>
       <translation>Enregistrer le fichier macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7131" />
+      <location filename="../QScintilla/Editor.py" line="7139" />
       <source>Save macro</source>
       <translation>Enregistrer la macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7132" />
+      <location filename="../QScintilla/Editor.py" line="7140" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7147" />
+      <location filename="../QScintilla/Editor.py" line="7155" />
       <source>Error saving macro</source>
       <translation>Erreur lors de l'enregistrement de la macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7148" />
+      <location filename="../QScintilla/Editor.py" line="7156" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt; ne peut être écrit.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7161" />
+      <location filename="../QScintilla/Editor.py" line="7169" />
       <source>Start Macro Recording</source>
       <translation>Démarrer l'enregistrement de la macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7162" />
+      <location filename="../QScintilla/Editor.py" line="7170" />
       <source>Macro recording is already active. Start new?</source>
       <translation>L'enregistrement de macro est déjà actif. En démarrer une nouvelle ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7188" />
+      <location filename="../QScintilla/Editor.py" line="7196" />
       <source>Macro Recording</source>
       <translation>Enregistrement de macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7189" />
+      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation>Entrer le nom de la macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7340" />
+      <location filename="../QScintilla/Editor.py" line="7348" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7346" />
+      <location filename="../QScintilla/Editor.py" line="7354" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation>&lt;br&gt;&lt;b&gt;Alerte :&lt;/b&gt; Vous allez perdre vos modifications à la réouverture.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7353" />
+      <location filename="../QScintilla/Editor.py" line="7361" />
       <source>File changed</source>
       <translation>Fichier modifié</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7403" />
+      <location filename="../QScintilla/Editor.py" line="7411" />
       <source>{0} (ro)</source>
       <translation type="unfinished">{0} (ro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7708" />
+      <location filename="../QScintilla/Editor.py" line="7716" />
       <source>Drop Error</source>
       <translation>Erreur de suppression</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7709" />
+      <location filename="../QScintilla/Editor.py" line="7717" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; n'est pas un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7729" />
+      <location filename="../QScintilla/Editor.py" line="7737" />
       <source>Resources</source>
       <translation>Ressources</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7739" />
       <source>Add file...</source>
       <translation>Ajouter un fichier...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7732" />
+      <location filename="../QScintilla/Editor.py" line="7740" />
       <source>Add files...</source>
       <translation>Ajouter des fichiers...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7733" />
+      <location filename="../QScintilla/Editor.py" line="7741" />
       <source>Add aliased file...</source>
       <translation>Ajouter un fichier alias...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7735" />
+      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation>Ajouter une ressource localisée...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7738" />
+      <location filename="../QScintilla/Editor.py" line="7746" />
       <source>Add resource frame</source>
       <translation>Ajouter un cadre ressource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7765" />
       <source>Add file resource</source>
       <translation>Ajoute un fichier ressource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7771" />
+      <location filename="../QScintilla/Editor.py" line="7779" />
       <source>Add file resources</source>
       <translation>Ajoute des fichiers ressources</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7795" />
-      <location filename="../QScintilla/Editor.py" line="7789" />
+      <location filename="../QScintilla/Editor.py" line="7803" />
+      <location filename="../QScintilla/Editor.py" line="7797" />
       <source>Add aliased file resource</source>
       <translation>Ajoute un alias de fichier ressource</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7796" />
+      <location filename="../QScintilla/Editor.py" line="7804" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7871" />
+      <location filename="../QScintilla/Editor.py" line="7879" />
       <source>Package Diagram</source>
       <translation>Diagramme de package</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7872" />
+      <location filename="../QScintilla/Editor.py" line="7880" />
       <source>Include class attributes?</source>
       <translation>Inclure les attributs de classes ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7892" />
+      <location filename="../QScintilla/Editor.py" line="7900" />
       <source>Imports Diagram</source>
       <translation>Diagramme des modules</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7893" />
+      <location filename="../QScintilla/Editor.py" line="7901" />
       <source>Include imports from external modules?</source>
       <translation>Inclure l'importation de modules externes?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7912" />
+      <location filename="../QScintilla/Editor.py" line="7920" />
       <source>Application Diagram</source>
       <translation>Diagramme de l'application</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7913" />
+      <location filename="../QScintilla/Editor.py" line="7921" />
       <source>Include module names?</source>
       <translation>Inclure les noms de modules ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8268" />
+      <location filename="../QScintilla/Editor.py" line="8276" />
       <source>Add to dictionary</source>
       <translation>Ajouter au dictionnaire</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8270" />
+      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation>Tout ignorer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8688" />
+      <location filename="../QScintilla/Editor.py" line="8696" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8689" />
+      <location filename="../QScintilla/Editor.py" line="8697" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation>La sélection contient des données illégales pour un tri numérique.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8782" />
+      <location filename="../QScintilla/Editor.py" line="8790" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8783" />
+      <location filename="../QScintilla/Editor.py" line="8791" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8879" />
+      <location filename="../QScintilla/Editor.py" line="8887" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8885" />
+      <location filename="../QScintilla/Editor.py" line="8893" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8953" />
+      <location filename="../QScintilla/Editor.py" line="8961" />
       <source>EditorConfig Properties</source>
       <translation>Propriétés d'EditorConfig</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8954" />
+      <location filename="../QScintilla/Editor.py" line="8962" />
       <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'EditorConfig du fichier &lt;b&gt;{0}&lt;/b&gt; n'ont pas pu être chargées.&lt;/p&gt;</translation>
     </message>
@@ -18270,12 +18270,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="222" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation type="unfinished">Chargement d'une feuille de style</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="225" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;La feuille de style Qt &lt;b&gt;{0}&lt;/b&gt; ne peut être lue.&lt;br&gt;Raison: {1}&lt;/p&gt;</translation>
     </message>
@@ -23218,7 +23218,7 @@
       <translation>&lt;p&gt;Échec de la copie du fichier &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2719" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation>Impossible de lancer le processus {0}. Assurez-vous qu'il est bien dans le chemin de recherche.</translation>
@@ -23281,370 +23281,370 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2277" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2319" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2340" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
       <source>Current Branch</source>
       <translation>Branche actuelle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2341" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;La branche actuelle est &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2405" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2387" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2388" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2434" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2423" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <source>List Bundle Heads</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
-      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2452" />
-      <source>List Bundle Heads</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2518" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2821" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
       <source>Git Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
       <source>Process Generation Error</source>
       <translation>Erreur du processus</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2747" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2729" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
       <source>Create Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2748" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2765" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être écrit.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2784" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
-      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2810" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3154" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3040" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3041" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3176" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3233" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3264" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3311" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
       <source>Copy Changesets (Cancel)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3429" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3552" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3503" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
       <source>Select a stash (empty for latest stash):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3462" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
       <source>Restore Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3516" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
       <source>Create Branch</source>
       <translation>Créer une branche</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3566" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
       <source>Creating branch</source>
       <translation>Création en cours de la branche</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3602" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3603" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3634" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
       <source>Verifying the integrity of the Git repository</source>
       <translation>Vérification en cours de l'intégrité du dépot Git</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3743" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
       <source>Performing Repository Housekeeping</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3784" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistiques&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistiques&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
       <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3797" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3820" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
       <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3825" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;Pas de statistique disponible.&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3898" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
       <source>Creating Archive</source>
       <translation>Création en cours de l'archive</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
       <source>Add Submodule</source>
       <translation>Ajouter un sous-module</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
       <source>List Submodules</source>
       <translation>Lister les sous-modules</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4005" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
       <source>No submodules defined for the project.</source>
       <translation>Pas de sous-modules définis pour ce projet.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4018" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
       <source>All</source>
       <translation>Tous</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4022" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
       <source>Submodule Path</source>
       <translation>Chemin de sous-module</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4023" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
       <source>Select a submodule path:</source>
       <translation>Sélectionner un chemin de sous-module :</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4072" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
       <source>Initialize Submodules</source>
       <translation>Initialiser les sous-modules</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4105" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4175" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4136" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
       <source>Update Submodules</source>
       <translation>Mettre à jour les sous-modules</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
       <source>Synchronize Submodules</source>
       <translation>Synchroniser les sous-modules</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4259" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -25978,83 +25978,83 @@
   <context>
     <name>GitProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="473" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="589" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="429" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="324" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="184" />
       <source>Version Control</source>
       <translation>Contrôle de version</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="602" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="492" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="340" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="200" />
       <source>Commit changes to repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="609" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="496" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="499" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="347" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="207" />
       <source>Add/Stage to repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="614" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="504" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="352" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="212" />
       <source>Unstage changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="621" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="508" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="511" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="359" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="219" />
       <source>Remove from repository (and disk)</source>
       <translation>Supprimer du référentiel (et du disque)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="365" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="225" />
       <source>Remove from repository only</source>
       <translation>Supprimer du répertoire uniquement</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="513" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="230" />
       <source>Copy</source>
       <translation>Copier</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="518" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="232" />
       <source>Move</source>
       <translation>Déplacer</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="523" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="237" />
       <source>Show log browser</source>
       <translation>Afficher le navigateur de logs</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="372" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="244" />
       <source>Show status</source>
       <translation>Afficher l'état (status)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="635" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="534" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="537" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="251" />
       <source>Show differences</source>
@@ -26066,8 +26066,8 @@
       <translation>Montrer les différences côte à côte</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="543" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="385" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="263" />
       <source>Show differences (extended)</source>
@@ -26094,71 +26094,71 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="648" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="547" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="550" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="392" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="289" />
       <source>Revert changes</source>
       <translation>Revenir avant les modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="656" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="441" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
-      <source>Select all local file entries</source>
-      <translation>Sélectionner tous les fichiers locaux</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="558" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="444" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
-      <source>Select all versioned file entries</source>
-      <translation>Sélectionner tous les fichiers ayant une version</translation>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
+      <source>Select all local file entries</source>
+      <translation>Sélectionner tous les fichiers locaux</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="662" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="561" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="447" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
+      <source>Select all versioned file entries</source>
+      <translation>Sélectionner tous les fichiers ayant une version</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="564" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="450" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="406" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="301" />
       <source>Select all local directory entries</source>
       <translation>Sélectionner tous les répertoires locaux</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="666" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="454" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="305" />
       <source>Select all versioned directory entries</source>
       <translation>Sélectionner tous les répertoires ayant une version</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="414" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="309" />
       <source>Configure...</source>
       <translation>Configuration...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="709" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="712" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="699" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation>voulez-vous vraiment supprimer les fichiers de ce dépot ?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="842" />
       <source>Create {0} file</source>
       <translation type="unfinished">Créer le fichier {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="843" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. L'écraser ?&lt;/p&gt;</translation>
     </message>
@@ -30471,27 +30471,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="198" />
+      <location filename="../Globals/__init__.py" line="199" />
       <source>{0:4.2f} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="201" />
+      <location filename="../Globals/__init__.py" line="202" />
       <source>{0:4.2f} KiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="204" />
+      <location filename="../Globals/__init__.py" line="205" />
       <source>{0:4.2f} MiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="207" />
+      <location filename="../Globals/__init__.py" line="208" />
       <source>{0:4.2f} GiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="210" />
+      <location filename="../Globals/__init__.py" line="211" />
       <source>{0:4.2f} TiB</source>
       <translation type="unfinished" />
     </message>
@@ -36701,75 +36701,75 @@
       <translation type="unfinished">Extensions</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="692" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="579" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="535" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="431" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="289" />
       <source>Version Control</source>
       <translation>Contrôle de version</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="595" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="598" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="305" />
       <source>Commit changes to repository...</source>
       <translation>Committer les modifications dans le dépot...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="606" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="455" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="313" />
       <source>Add to repository</source>
       <translation>Ajouter au dépot</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="722" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="725" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="461" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="319" />
       <source>Remove from repository (and disk)</source>
       <translation>Supprimer du référentiel (et du disque)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="986" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="973" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="989" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="976" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="467" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="325" />
       <source>Remove from repository only</source>
       <translation>Supprimer du dépot uniquement</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="614" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="617" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="330" />
       <source>Copy</source>
       <translation>Copier</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="619" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="332" />
       <source>Move</source>
       <translation>Déplacer</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="621" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="624" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="337" />
       <source>Show log browser</source>
       <translation>Afficher le navigateur de logs</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="729" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="732" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="474" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="344" />
       <source>Show status</source>
       <translation>Afficher l'état (status)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="736" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="739" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="481" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="351" />
       <source>Show differences</source>
@@ -36781,8 +36781,8 @@
       <translation>Montrer les différences côte à côte</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="644" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="487" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="363" />
       <source>Show differences (extended)</source>
@@ -36809,95 +36809,95 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="749" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="752" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="494" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="389" />
       <source>Revert changes</source>
       <translation>Revenir avant les modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="753" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="756" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="655" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="498" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="393" />
       <source>Conflicts resolved</source>
       <translation type="unfinished">Conflits résolus</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="755" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="654" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="657" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="500" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="395" />
       <source>Conflicts unresolved</source>
       <translation type="unfinished">Conflits non résolus</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="757" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="656" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="760" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="502" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="397" />
       <source>Re-Merge</source>
       <translation>Re-fusionner</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="660" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="547" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
-      <source>Select all local file entries</source>
-      <translation>Sélectionner tous les fichiers locaux</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="764" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="663" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="550" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
-      <source>Select all versioned file entries</source>
-      <translation>Sélectionner tous les fichiers ayant une version</translation>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
+      <source>Select all local file entries</source>
+      <translation>Sélectionner tous les fichiers locaux</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="767" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="553" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
+      <source>Select all versioned file entries</source>
+      <translation>Sélectionner tous les fichiers ayant une version</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="556" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="407" />
       <source>Select all local directory entries</source>
       <translation>Sélectionner tous les répertoires locaux</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="560" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="411" />
       <source>Select all versioned directory entries</source>
       <translation>Sélectionner tous les répertoires ayant une version</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="775" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="674" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="561" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="778" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="677" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="564" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="520" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="415" />
       <source>Configure...</source>
       <translation>Configuration...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="890" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="893" />
       <source>Create {0} file</source>
       <translation type="unfinished">Créer le fichier {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="891" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="894" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. L'écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="987" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="990" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="977" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation>Voulez-vous vraiment supprimer ces fichiers du dépot ?</translation>
     </message>
@@ -51148,43 +51148,43 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="594" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="592" />
       <source>Clear</source>
       <translation>Effacer</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="599" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="597" />
       <source>Copy</source>
       <translation>Copier</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="603" />
       <source>Paste</source>
       <translation>Coller</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="612" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="610" />
       <source>Select All</source>
       <translation type="unfinished">Tout sélectionner</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="638" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="636" />
       <source>Press to disconnect the current device</source>
       <translation>Cliquer pour déconnecter le matériel courant</translation>
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="643" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="641" />
       <source>Press to connect the selected device</source>
       <translation>Cliquer pour se connecter au matériel sélectionné</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="675" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="673" />
       <source>No device attached</source>
       <translation>Pas de matériel relié</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="674" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -51193,90 +51193,90 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="705" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="703" />
       <source>Start REPL</source>
       <translation>Démarrer REPL</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="706" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="704" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;REPL ne peut être démarré.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1234" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1223" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1224" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1235" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1233" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut connecter un matériel sur le port série&lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1293" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1284" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1282" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
       <source>Run Script</source>
       <translation>Lancer le script</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1276" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
       <source>There is no editor open. Abort...</source>
       <translation>Il n'y a pas d'éditeur ouvert. Annulation...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1285" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1283" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation>L'éditeur courant ne contient pas de script. Annulation...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1292" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Ne peut lancer le script.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
       <source>Start Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1329" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1346" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1344" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1363" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1361" />
       <source>Unsaved Chart Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1364" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1362" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1412" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1410" />
       <source>Start File Manager</source>
       <translation>Démarrer le gestionnaire de fichier</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1413" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1411" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le gestionnaire de fichier ne peut démarrer.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1433" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1431" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
@@ -51301,7 +51301,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1735" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1554" />
       <source>Synchronize Time</source>
       <translation>Synchroniser le temps</translation>
@@ -51327,207 +51327,213 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2138" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1578" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1570" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2150" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2183" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2180" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1574" />
       <source>Install Packages</source>
       <translation type="unfinished">Installer des packages</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1955" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1580" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1959" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
       <source>Compile Python File</source>
       <translation>Compilier le fichier Python</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1979" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1970" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1983" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1974" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1588" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1609" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
-      <source>Show Documentation</source>
-      <translation>Montrer la documentation</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
-      <source>Convert To UF2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1616" />
-      <source>Flash UF2 Device</source>
-      <translation type="unfinished" />
+      <source>Show Documentation</source>
+      <translation>Montrer la documentation</translation>
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1619" />
+      <source>Convert To UF2</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1620" />
+      <source>Flash UF2 Device</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1623" />
       <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1622" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1626" />
       <source>Ignored Serial Devices</source>
       <translation>Matériels séries ignorés</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1625" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1629" />
       <source>Configure</source>
       <translation>Configuration</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1634" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1638" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1649" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1645" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1641" />
       <source>Device Version Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1646" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1650" />
       <source>No version information available.</source>
       <translation>Pas d'information de version disponible.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1670" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1674" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1666" />
       <source>unknown</source>
       <translation>inconnu</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1680" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1683" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1696" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1687" />
       <source>Device Implementation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1688" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1693" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1697" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1736" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation>&lt;p&gt;L'horloge du matériel connecté a été synchronisée à l'horloge locale.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1754" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1758" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Date et heure matériel&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1762" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1766" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation>&lt;h3&gt;Date et heure matériel&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1782" />
       <source>Device Date and Time</source>
       <translation>Date et heure matériel</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1794" />
       <source>Local Date and Time</source>
       <translation>Date et heure locales</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1795" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Date et heure locales&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1832" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1815" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1836" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1819" />
       <source>Date and Time</source>
       <translation>Date et heure</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1816" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1820" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Date et heure locales&lt;/th&gt;&lt;th&gt;Date et heure matériel&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1837" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Date et heure locales&lt;/th&gt;&lt;th&gt;Date et heure matériel&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1857" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1861" />
       <source>Error handling device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1858" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1862" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il y a eu une erreur de communication avec le matériel connecté.&lt;/p&gt;&lt;p&gt;Méthode : {0}&lt;/p&gt;&lt;p&gt;Message : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1900" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1904" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1926" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1930" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation>Fichiers Python (*.py);;Tous les fichiers (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1940" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation>Le fichier Python &lt;b&gt;{0}&lt;/b&gt; n'existe pas. Annulation...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1945" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1949" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1971" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1975" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation>L'éditeur courant ne contient pas un fichier Python. Annulation...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2063" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2067" />
       <source>Add Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2068" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2113" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2117" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2151" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2169" />
+      <source>Package '{0}' was installed successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2184" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -51592,198 +51598,198 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="108" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="110" />
       <source>BBC micro:bit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="111" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="113" />
       <source>Calliope mini</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="208" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="210" />
       <source>BBC micro:bit/Calliope Functions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="421" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="409" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="392" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="211" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="411" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="213" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="215" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="217" />
       <source>Flash MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="218" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="220" />
       <source>Flash Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="496" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="222" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="498" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="224" />
       <source>Save Script as 'main.py'</source>
       <translation>Enregistrer le script en tant que 'main.py'</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="225" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="227" />
       <source>Save the current script as 'main.py' on the connected device</source>
       <translation>Enregistre le script courant en tant que 'main.py' sur le matériel connecté</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="229" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="231" />
       <source>Reset {0}</source>
       <translation>Réinitialiser {0}</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="375" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="366" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="352" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="335" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="322" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="302" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="377" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="354" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="337" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="324" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="304" />
       <source>Flash MicroPython/Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="303" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="305" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed and plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;See the &lt;a href="https://microbit.org/guide/firmware/"&gt;micro:bit web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="323" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="325" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MICROBIT is available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="336" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="338" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed an plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="353" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="355" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MINI is available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="370" />
       <source>MicroPython/Firmware Files (*.hex *.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="376" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="378" />
       <source>There are multiple devices ready for flashing. Please make sure, that only one device is prepared.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="395" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="410" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="412" />
       <source>&lt;p&gt;The BBC micro:bit generation cannot be determined. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="424" />
       <source>&lt;p&gt;The firmware URL for the device type &lt;b&gt;{0}&lt;/b&gt; is not known. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="452" />
       <source>unknown</source>
       <translation type="unfinished">inconnu</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="466" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="468" />
       <source>Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="469" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="471" />
       <source>&lt;h4&gt;{0} Version Information&lt;br/&gt;(BBC micro:bit v{1})&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="478" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="480" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="484" />
       <source>{0} Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="502" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="504" />
       <source>The current editor does not contain a Python script. Write it anyway?</source>
       <translation>L'éditeur courant ne contient pas de script Python. L'écrire tout de même ?</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="513" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="515" />
       <source>The script is empty. Aborting.</source>
       <translation>Le script est vide. Annulation.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="567" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="569" />
       <source>MicroPython Firmware for BBC micro:bit V1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="599" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="586" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="571" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="601" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="588" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="573" />
       <source>DAPLink Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="578" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="580" />
       <source>MicroPython Firmware for BBC micro:bit V2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="582" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="584" />
       <source>CircuitPython Firmware for BBC micro:bit V2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="595" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="597" />
       <source>MicroPython Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="818" />
-      <source>Active</source>
-      <translation type="unfinished">Actif</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="819" />
-      <source>Name</source>
-      <translation type="unfinished">Nom</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="820" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
+      <source>Active</source>
+      <translation type="unfinished">Actif</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="821" />
+      <source>Name</source>
+      <translation type="unfinished">Nom</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="822" />
-      <source>Address Type</source>
+      <source>MAC-Address</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="824" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="826" />
       <source>Connected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="825" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="827" />
       <source>Advertising</source>
       <translation type="unfinished" />
     </message>
@@ -51917,720 +51923,740 @@
   <context>
     <name>MiniEditor</name>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="459" />
+      <location filename="../QScintilla/MiniEditor.py" line="460" />
       <source>About eric Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="461" />
       <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don't need the power of a full blown editor.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="529" />
+      <location filename="../QScintilla/MiniEditor.py" line="530" />
       <source>Line: {0:5}</source>
       <translation>Ligne : {0:5}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="533" />
+      <location filename="../QScintilla/MiniEditor.py" line="534" />
       <source>Pos: {0:5}</source>
       <translation>Position : {0:5}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="547" />
+      <location filename="../QScintilla/MiniEditor.py" line="548" />
       <source>Language: {0}</source>
       <translation type="unfinished">Langage : {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="610" />
       <source>New</source>
       <translation>Nouveau</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="611" />
-      <source>&amp;New</source>
-      <translation>&amp;Nouveau</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="612" />
+      <source>&amp;New</source>
+      <translation>&amp;Nouveau</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="613" />
       <source>Ctrl+N</source>
       <comment>File|New</comment>
       <translation>Ctrl+N</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="617" />
+      <location filename="../QScintilla/MiniEditor.py" line="618" />
       <source>Open an empty editor window</source>
       <translation>Ouvre une nouvelle page vide</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="619" />
+      <location filename="../QScintilla/MiniEditor.py" line="620" />
       <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'une nouvelle fenêtre d'édition.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="625" />
+      <location filename="../QScintilla/MiniEditor.py" line="626" />
       <source>Open</source>
       <translation>Ouvrir</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="627" />
-      <source>&amp;Open...</source>
-      <translation>&amp;Ouvrir...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="628" />
+      <source>&amp;Open...</source>
+      <translation>&amp;Ouvrir...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="629" />
       <source>Ctrl+O</source>
       <comment>File|Open</comment>
       <translation>Ctrl+O</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="633" />
+      <location filename="../QScintilla/MiniEditor.py" line="634" />
       <source>Open a file</source>
       <translation>Ouvrir un Fichier</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="635" />
+      <location filename="../QScintilla/MiniEditor.py" line="636" />
       <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'un fichier à ouvrir&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="644" />
+      <location filename="../QScintilla/MiniEditor.py" line="645" />
       <source>Save</source>
       <translation>Enregistrer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="646" />
-      <source>&amp;Save</source>
-      <translation>&amp;Enregistrer</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="647" />
+      <source>&amp;Save</source>
+      <translation>&amp;Enregistrer</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="648" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation>Ctrl+S</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="652" />
+      <location filename="../QScintilla/MiniEditor.py" line="653" />
       <source>Save the current file</source>
       <translation>Enregistre le fichier courant</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="654" />
+      <location filename="../QScintilla/MiniEditor.py" line="655" />
       <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="663" />
+      <location filename="../QScintilla/MiniEditor.py" line="664" />
       <source>Save as</source>
       <translation>Enregistrer sous</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="665" />
-      <source>Save &amp;as...</source>
-      <translation>&amp;Enregistrer sous...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="666" />
+      <source>Save &amp;as...</source>
+      <translation>&amp;Enregistrer sous...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="667" />
       <source>Shift+Ctrl+S</source>
       <comment>File|Save As</comment>
       <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="671" />
+      <location filename="../QScintilla/MiniEditor.py" line="672" />
       <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="673" />
+      <location filename="../QScintilla/MiniEditor.py" line="674" />
       <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="683" />
+      <location filename="../QScintilla/MiniEditor.py" line="684" />
       <source>Save Copy</source>
       <translation>Enregistrer une copie</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="686" />
       <source>Save &amp;Copy...</source>
       <translation>Enregistrer une &amp;copie...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="691" />
+      <location filename="../QScintilla/MiniEditor.py" line="692" />
       <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="693" />
+      <location filename="../QScintilla/MiniEditor.py" line="694" />
       <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'é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="703" />
+      <location filename="../QScintilla/MiniEditor.py" line="704" />
       <source>Close</source>
       <translation>Fermer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="705" />
-      <source>&amp;Close</source>
-      <translation>&amp;Fermer</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="706" />
+      <source>&amp;Close</source>
+      <translation>&amp;Fermer</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="707" />
       <source>Ctrl+W</source>
       <comment>File|Close</comment>
       <translation>Ctrl+W</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="711" />
+      <location filename="../QScintilla/MiniEditor.py" line="712" />
       <source>Close the editor window</source>
       <translation>Ferme la fenêtre de l'éditeur</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="713" />
+      <location filename="../QScintilla/MiniEditor.py" line="714" />
       <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="719" />
+      <location filename="../QScintilla/MiniEditor.py" line="720" />
       <source>Print</source>
       <translation>Imprimer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="721" />
-      <source>&amp;Print</source>
-      <translation>&amp;Imprimer</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="722" />
+      <source>&amp;Print</source>
+      <translation>&amp;Imprimer</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="723" />
       <source>Ctrl+P</source>
       <comment>File|Print</comment>
       <translation>Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="727" />
+      <location filename="../QScintilla/MiniEditor.py" line="728" />
       <source>Print the current file</source>
       <translation>Imprime le fichier courant</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="729" />
+      <location filename="../QScintilla/MiniEditor.py" line="730" />
       <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="738" />
+      <location filename="../QScintilla/MiniEditor.py" line="739" />
       <source>Print Preview</source>
       <translation>Aperçu avant impression</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="747" />
       <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="748" />
+      <location filename="../QScintilla/MiniEditor.py" line="749" />
       <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="761" />
+      <location filename="../QScintilla/MiniEditor.py" line="762" />
       <source>Undo</source>
       <translation>Défaire</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="763" />
-      <source>&amp;Undo</source>
-      <translation>&amp;Défaire</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="764" />
+      <source>&amp;Undo</source>
+      <translation>&amp;Défaire</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="765" />
       <source>Ctrl+Z</source>
       <comment>Edit|Undo</comment>
       <translation>Ctrl+Z</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="765" />
+      <location filename="../QScintilla/MiniEditor.py" line="766" />
       <source>Alt+Backspace</source>
       <comment>Edit|Undo</comment>
       <translation>Alt+Backspace</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="769" />
+      <location filename="../QScintilla/MiniEditor.py" line="770" />
       <source>Undo the last change</source>
       <translation>Annule la dernière modification</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="771" />
+      <location filename="../QScintilla/MiniEditor.py" line="772" />
       <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'éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="780" />
+      <location filename="../QScintilla/MiniEditor.py" line="781" />
       <source>Redo</source>
       <translation>Refaire</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="782" />
-      <source>&amp;Redo</source>
-      <translation>&amp;Refaire</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="783" />
+      <source>&amp;Redo</source>
+      <translation>&amp;Refaire</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="784" />
       <source>Ctrl+Shift+Z</source>
       <comment>Edit|Redo</comment>
       <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="788" />
+      <location filename="../QScintilla/MiniEditor.py" line="789" />
       <source>Redo the last change</source>
       <translation>Recharge la dernière modification</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="790" />
+      <location filename="../QScintilla/MiniEditor.py" line="791" />
       <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'éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="799" />
+      <location filename="../QScintilla/MiniEditor.py" line="800" />
       <source>Cut</source>
       <translation>Couper</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="801" />
-      <source>Cu&amp;t</source>
-      <translation>Cou&amp;per</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="802" />
+      <source>Cu&amp;t</source>
+      <translation>Cou&amp;per</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="803" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation>Ctrl+X</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="803" />
+      <location filename="../QScintilla/MiniEditor.py" line="804" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation>Shift+Del</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="807" />
+      <location filename="../QScintilla/MiniEditor.py" line="808" />
       <source>Cut the selection</source>
       <translation>Coupe la sélection</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="809" />
+      <location filename="../QScintilla/MiniEditor.py" line="810" />
       <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="819" />
+      <location filename="../QScintilla/MiniEditor.py" line="820" />
       <source>Copy</source>
       <translation>Copier</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="821" />
-      <source>&amp;Copy</source>
-      <translation>&amp;Copier</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="822" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
-      <translation>Ctrl+C</translation>
+      <source>&amp;Copy</source>
+      <translation>&amp;Copier</translation>
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="823" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation>Ctrl+C</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="824" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+Ins</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="827" />
+      <location filename="../QScintilla/MiniEditor.py" line="828" />
       <source>Copy the selection</source>
       <translation>Copie la sélection</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="829" />
+      <location filename="../QScintilla/MiniEditor.py" line="830" />
       <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="839" />
+      <location filename="../QScintilla/MiniEditor.py" line="840" />
       <source>Paste</source>
       <translation>Coller</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="841" />
-      <source>&amp;Paste</source>
-      <translation>Col&amp;ler</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="842" />
-      <source>Ctrl+V</source>
-      <comment>Edit|Paste</comment>
-      <translation>Ctrl+V</translation>
+      <source>&amp;Paste</source>
+      <translation>Col&amp;ler</translation>
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="843" />
+      <source>Ctrl+V</source>
+      <comment>Edit|Paste</comment>
+      <translation>Ctrl+V</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="844" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation>Shift+Ins</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="847" />
+      <location filename="../QScintilla/MiniEditor.py" line="848" />
       <source>Paste the last cut/copied text</source>
       <translation>Colle le dernier texte copié/coupé</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="849" />
+      <location filename="../QScintilla/MiniEditor.py" line="850" />
       <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'éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="859" />
+      <location filename="../QScintilla/MiniEditor.py" line="860" />
       <source>Clear</source>
       <translation>Effacer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="861" />
-      <source>Cl&amp;ear</source>
-      <translation>Ef&amp;facer</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="862" />
+      <source>Cl&amp;ear</source>
+      <translation>Ef&amp;facer</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="863" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation>Alt+Shift+C</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="867" />
+      <location filename="../QScintilla/MiniEditor.py" line="868" />
       <source>Clear all text</source>
       <translation>Efface tout le texte</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="869" />
+      <location filename="../QScintilla/MiniEditor.py" line="870" />
       <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'éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>About</source>
       <translation>À propos de</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>&amp;About</source>
       <translation>&amp;À propos de </translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2863" />
+      <location filename="../QScintilla/MiniEditor.py" line="2864" />
       <source>Display information about this software</source>
       <translation>Affiche les informations concernant le logiciel</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2865" />
+      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <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="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About Qt</source>
       <translation>À propos de Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About &amp;Qt</source>
       <translation>À propos de &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2877" />
+      <location filename="../QScintilla/MiniEditor.py" line="2878" />
       <source>Display information about the Qt toolkit</source>
       <translation>Affiche les informations concernant Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2880" />
+      <location filename="../QScintilla/MiniEditor.py" line="2881" />
       <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="2889" />
+      <location filename="../QScintilla/MiniEditor.py" line="2890" />
       <source>What's This?</source>
       <translation>Qu'est-ce que c'est ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2891" />
-      <source>&amp;What's This?</source>
-      <translation>&amp;Qu'est-ce que c'est?</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <source>&amp;What's This?</source>
+      <translation>&amp;Qu'est-ce que c'est?</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2893" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2897" />
+      <location filename="../QScintilla/MiniEditor.py" line="2898" />
       <source>Context sensitive help</source>
       <translation>Aide contextuelle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2899" />
+      <location filename="../QScintilla/MiniEditor.py" line="2900" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What'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'aide contextuelle&lt;/b&gt;&lt;p&gt;Dans le mode "Qu'est-ce que c'est?", la souris est affichée avec un point d'interrogation, et on peut cliquer sur les éléments de  l'interface pour obtenir une courte description de l'élément. Cette fonction peut être obtenue avec le bouton d'aide contextuelle de la barre principale.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2918" />
       <source>Preferences</source>
       <translation type="unfinished">Préférences</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2920" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished">&amp;Préférences...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2925" />
+      <location filename="../QScintilla/MiniEditor.py" line="2926" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished">Édition des préférences</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2927" />
+      <location filename="../QScintilla/MiniEditor.py" line="2928" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Préférences&lt;/b&gt;&lt;p&gt;Edite les valeurs souhaitées pour la configuration du logiciel.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2941" />
+      <location filename="../QScintilla/MiniEditor.py" line="2942" />
       <source>&amp;File</source>
       <translation>&amp;Fichier</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2953" />
+      <location filename="../QScintilla/MiniEditor.py" line="2954" />
       <source>&amp;Edit</source>
       <translation>&amp;Edition</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2963" />
+      <location filename="../QScintilla/MiniEditor.py" line="2964" />
       <source>&amp;Search</source>
       <translation type="unfinished">Re&amp;chercher</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2974" />
       <source>&amp;View</source>
       <translation type="unfinished">&amp;Affichage</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2979" />
+      <location filename="../QScintilla/MiniEditor.py" line="2980" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished">&amp;Configuration</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2985" />
       <source>&amp;Help</source>
       <translation>A&amp;ide</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2996" />
+      <location filename="../QScintilla/MiniEditor.py" line="2997" />
       <source>File</source>
       <translation>Fichier</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3008" />
+      <location filename="../QScintilla/MiniEditor.py" line="3009" />
       <source>Edit</source>
       <translation>Editer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3017" />
+      <location filename="../QScintilla/MiniEditor.py" line="3018" />
       <source>Search</source>
       <translation type="unfinished">Rechercher</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3023" />
+      <location filename="../QScintilla/MiniEditor.py" line="3024" />
       <source>View</source>
       <translation type="unfinished">Affichage</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3029" />
+      <location filename="../QScintilla/MiniEditor.py" line="3030" />
       <source>Settings</source>
       <translation type="unfinished">Configuration</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3032" />
+      <location filename="../QScintilla/MiniEditor.py" line="3033" />
       <source>Help</source>
       <translation>Aide</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3045" />
+      <location filename="../QScintilla/MiniEditor.py" line="3046" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3055" />
+      <location filename="../QScintilla/MiniEditor.py" line="3056" />
       <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'état affiche une indication sur les droits d'écriture des fichiers.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3064" />
+      <location filename="../QScintilla/MiniEditor.py" line="3065" />
       <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'état affiche le numéro de ligne de l'éditeur.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3073" />
+      <location filename="../QScintilla/MiniEditor.py" line="3074" />
       <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'état affiche la position du curseur.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3087" />
+      <location filename="../QScintilla/MiniEditor.py" line="3088" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3094" />
+      <location filename="../QScintilla/MiniEditor.py" line="3095" />
       <source>Ready</source>
       <translation>Prêt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3169" />
-      <source>eric Mini Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <source>eric Mini Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3171" />
       <source>The document has unsaved changes.</source>
       <translation>Le document a des modifications non enregistrées.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3197" />
-      <source>Open File</source>
-      <translation>Ouvrir Fichier</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <source>Open File</source>
+      <translation>Ouvrir Fichier</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3199" />
       <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="3226" />
+      <location filename="../QScintilla/MiniEditor.py" line="3227" />
       <source>File loaded</source>
       <translation>Fichier chargé</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3307" />
-      <source>Save File</source>
-      <translation>Enregistrer le fichier</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <source>Save File</source>
+      <translation>Enregistrer le fichier</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3309" />
       <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="3314" />
+      <location filename="../QScintilla/MiniEditor.py" line="3315" />
       <source>File saved</source>
       <translation>Fichier enregistré</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>[*] - {0}</source>
       <translation>[*] - {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>Mini Editor</source>
       <translation>Mini éditeur</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3683" />
-      <location filename="../QScintilla/MiniEditor.py" line="3654" />
-      <location filename="../QScintilla/MiniEditor.py" line="3338" />
+      <location filename="../QScintilla/MiniEditor.py" line="3684" />
+      <location filename="../QScintilla/MiniEditor.py" line="3655" />
+      <location filename="../QScintilla/MiniEditor.py" line="3339" />
       <source>Untitled</source>
       <translation>SansTitre</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
       <source>{0}[*] - {1}</source>
       <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3649" />
+      <location filename="../QScintilla/MiniEditor.py" line="3650" />
       <source>Printing...</source>
       <translation>Impression....</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3665" />
+      <location filename="../QScintilla/MiniEditor.py" line="3666" />
       <source>Printing completed</source>
       <translation>Impression terminée</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3667" />
+      <location filename="../QScintilla/MiniEditor.py" line="3668" />
       <source>Error while printing</source>
       <translation>Erreur durant l'impression</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3670" />
+      <location filename="../QScintilla/MiniEditor.py" line="3671" />
       <source>Printing aborted</source>
       <translation>Impression abandonnée</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3724" />
-      <source>Select all</source>
-      <translation>Tout sélectionner</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <source>Select all</source>
+      <translation>Tout sélectionner</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3726" />
       <source>Deselect all</source>
       <translation>Tout déselectionner</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3738" />
+      <location filename="../QScintilla/MiniEditor.py" line="3739" />
       <source>Languages</source>
       <translation>Langages</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3741" />
+      <location filename="../QScintilla/MiniEditor.py" line="3742" />
       <source>No Language</source>
       <translation>Pas de langage</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3763" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Guessed</source>
       <translation>Suggestion</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3785" />
-      <location filename="../QScintilla/MiniEditor.py" line="3767" />
+      <location filename="../QScintilla/MiniEditor.py" line="3786" />
+      <location filename="../QScintilla/MiniEditor.py" line="3768" />
       <source>Alternatives</source>
       <translation>Alternatives</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3783" />
       <source>Alternatives ({0})</source>
       <translation>Alternatives ({0})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3813" />
-      <source>Pygments Lexer</source>
-      <translation>Analyseur Pygments</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <source>Pygments Lexer</source>
+      <translation>Analyseur Pygments</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3815" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>Sélectionne l'analyseur Pygments à appliquer.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4326" />
+      <location filename="../QScintilla/MiniEditor.py" line="4336" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished">Propriétés d'EditorConfig</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4327" />
+      <location filename="../QScintilla/MiniEditor.py" line="4337" />
       <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'EditorConfig du fichier &lt;b&gt;{0}&lt;/b&gt; n'ont pas pu être chargées.&lt;/p&gt;</translation>
     </message>
   </context>
   <context>
+    <name>MipLocalInstaller</name>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="185" />
+      <source>Unable to find 'lib' in sys.path. Please enter a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="229" />
+      <source>
+
+Package may be partially installed.</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>MipPackageDialog</name>
     <message>
+      <location filename="../MicroPython/MipPackageDialog.py" line="34" />
+      <source>Enter the URL of the package index. Leave empty to use the default index ({0}).</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
       <source>Install Package</source>
       <translation type="unfinished" />
@@ -52665,6 +52691,21 @@
       <source>Install .mpy File</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Target Directory:</source>
+      <translation type="unfinished">Répertoire cible :</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Enter the directory to install to (must be contained in sys.path). Leave empty to detect automatically.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Package Index:</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>MiscellaneousChecker</name>
@@ -53324,194 +53365,194 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="603" />
-      <location filename="../MultiProject/MultiProject.py" line="593" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="591" />
       <source>Multi Project Files (*.emj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="599" />
       <source>Save Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="617" />
+      <location filename="../MultiProject/MultiProject.py" line="615" />
       <source>Save File</source>
       <translation>Enregistrer fichier</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="618" />
+      <location filename="../MultiProject/MultiProject.py" line="616" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="644" />
+      <location filename="../MultiProject/MultiProject.py" line="642" />
       <source>Close Multiproject</source>
       <translation>Ferme le multi-projet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="645" />
+      <location filename="../MultiProject/MultiProject.py" line="643" />
       <source>The current multiproject has unsaved changes.</source>
       <translation>Le multi-projet courant a des modifications non-enregistrées.</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="696" />
+      <source>New multiproject</source>
+      <translation>Nouveau multi-projet</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="698" />
-      <source>New multiproject</source>
-      <translation>Nouveau multi-projet</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>&amp;New...</source>
       <translation>&amp;Nouveau...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="704" />
+      <source>Generate a new multiproject</source>
+      <translation>Génère un nouveau multi-projet</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="706" />
-      <source>Generate a new multiproject</source>
-      <translation>Génère un nouveau multi-projet</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nouveau...&lt;/b&gt;&lt;p&gt;Ouvre une boite de dialogue pour saisir les informations du nouveau multi-projet.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="716" />
+      <source>Open multiproject</source>
+      <translation>Ouvrir un multi-projet</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="718" />
-      <source>Open multiproject</source>
-      <translation>Ouvrir un multi-projet</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="720" />
       <source>&amp;Open...</source>
       <translation>&amp;Ouvrir...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="724" />
+      <source>Open an existing multiproject</source>
+      <translation>Ouvre un multi-projet existant</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="726" />
-      <source>Open an existing multiproject</source>
-      <translation>Ouvre un multi-projet existant</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="728" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ouvre...&lt;/b&gt;&lt;p&gt;Ouvre un multi-projet existant.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="732" />
+      <source>Close multiproject</source>
+      <translation>Ferme le multi-projet</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="734" />
-      <source>Close multiproject</source>
-      <translation>Ferme le multi-projet</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&amp;Close</source>
       <translation>&amp;Fermer</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="740" />
+      <source>Close the current multiproject</source>
+      <translation>Fermer le multi-projet en cours</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="742" />
-      <source>Close the current multiproject</source>
-      <translation>Fermer le multi-projet en cours</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Fermer&lt;/b&gt;&lt;p&gt;Ferme le multi-projet en cours.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="748" />
+      <source>Save multiproject</source>
+      <translation>Enregistre le multiprojet</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="750" />
-      <source>Save multiproject</source>
-      <translation>Enregistre le multiprojet</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="752" />
       <source>&amp;Save</source>
       <translation>&amp;Enregistrer</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="756" />
+      <source>Save the current multiproject</source>
+      <translation>Enregistre le multi-projet courant</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="758" />
-      <source>Save the current multiproject</source>
-      <translation>Enregistre le multi-projet courant</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="760" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Enregistrer&lt;/b&gt;&lt;p&gt;Enregistre le multi-projet courant.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <source>Save multiproject as</source>
+      <translation>Enregistre le fichier multi-projet en tant que</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="766" />
-      <source>Save multiproject as</source>
-      <translation>Enregistre le fichier multi-projet en tant que</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="768" />
       <source>Save &amp;as...</source>
       <translation>&amp;Enregistrer sous...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="775" />
+      <location filename="../MultiProject/MultiProject.py" line="773" />
       <source>Save the current multiproject to a new file</source>
       <translation>Enregistre le multi-projet courant dans un nouveau fichier</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="778" />
+      <location filename="../MultiProject/MultiProject.py" line="776" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Enregistrer sous&lt;/b&gt;&lt;p&gt;Enregistre le multi-projet en cours dans un nouveau fichier.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="785" />
+      <source>Add project to multiproject</source>
+      <translation>Ajoute un projet au multi-projet</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="787" />
-      <source>Add project to multiproject</source>
-      <translation>Ajoute un projet au multi-projet</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="789" />
       <source>Add &amp;project...</source>
       <translation>Ajouter un &amp;projet...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="796" />
+      <location filename="../MultiProject/MultiProject.py" line="794" />
       <source>Add a project to the current multiproject</source>
       <translation>Ajoute un projet au multi-projet courant</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="799" />
+      <location filename="../MultiProject/MultiProject.py" line="797" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ajouter un projet...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre permettant d'ajouter un projet au multi-projet courant.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="807" />
+      <source>Multiproject properties</source>
+      <translation>Propriétés du multi-projet</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="809" />
-      <source>Multiproject properties</source>
-      <translation>Propriétés du multi-projet</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="811" />
       <source>&amp;Properties...</source>
       <translation>&amp;Propriétés...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="815" />
+      <source>Show the multiproject properties</source>
+      <translation>Affiche les propriétés du multi-projet</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="817" />
-      <source>Show the multiproject properties</source>
-      <translation>Affiche les propriétés du multi-projet</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Propriétés...&lt;/b&gt;&lt;p&gt;Affiche une boite de dialogue pour éditer les propriétés du multi-projet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="840" />
+      <location filename="../MultiProject/MultiProject.py" line="838" />
       <source>&amp;Multiproject</source>
       <translation>&amp;Multi-projet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="841" />
+      <location filename="../MultiProject/MultiProject.py" line="839" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation>Ouvre les multi-projets &amp;récents</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="880" />
       <location filename="../MultiProject/MultiProject.py" line="878" />
+      <location filename="../MultiProject/MultiProject.py" line="876" />
       <source>Multiproject</source>
       <translation>Multi-projet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="935" />
+      <location filename="../MultiProject/MultiProject.py" line="933" />
       <source>&amp;Clear</source>
       <translation>&amp;Effacer</translation>
     </message>
@@ -69888,7 +69929,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="417" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="415" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -69899,7 +69940,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="381" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="379" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="367" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="349" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="239" />
@@ -69937,42 +69978,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="380" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="378" />
       <source>'st-flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="400" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="398" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="401" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="399" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="416" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="444" />
       <source>unknown</source>
       <translation type="unfinished">inconnu</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="460" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="462" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -70426,49 +70467,49 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="155" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="154" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="151" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="150" />
       <source>Find Next</source>
       <translation>Suivant</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="168" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="167" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="164" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="163" />
       <source>Find Prev</source>
       <translation>Précédent</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="181" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="180" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="177" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="176" />
       <source>Replace and Search</source>
       <translation>Remplacer et Chercher</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="197" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="196" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="191" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="190" />
       <source>Replace Occurrence</source>
       <translation>Remplacer l'occurence</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="211" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="210" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="205" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="204" />
       <source>Replace All</source>
       <translation>Remplacer tout</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1048" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1045" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="597" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="559" />
       <source>'{0}' was not found.</source>
       <translation>'{0}' n'a pas été trouvé.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1201" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1198" />
       <source>Replaced {0} occurrences.</source>
       <translation>{0} occurrences remplacées.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1207" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1204" />
       <source>Nothing replaced because '{0}' was not found.</source>
       <translation>Rien de remplacé car '{0}' n'a pas été trouvé.</translation>
     </message>
@@ -78282,50 +78323,50 @@
   <context>
     <name>SvnProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="734" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="591" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="594" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="547" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="394" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="593" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="546" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="596" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="549" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="399" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="210" />
       <source>Version Control</source>
       <translation>Contrôle de version</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="750" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="607" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="753" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="610" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="224" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="758" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="761" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="415" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="226" />
       <source>Update from repository</source>
       <translation>Mettre à jour à partir du référentiel (update)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="756" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="616" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="416" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="230" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="764" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="615" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="767" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="618" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="421" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="232" />
       <source>Commit changes to repository...</source>
       <translation>Appliquer des changements dans le référentiel. (commit)...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="763" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="620" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="623" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="423" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="237" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="622" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="625" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="428" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="239" />
       <source>Add to repository</source>
@@ -78340,90 +78381,90 @@
       <translation>Ajouter l'arborescence au référentiel (add)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="769" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="626" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="772" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="629" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="436" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="250" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="441" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="252" />
       <source>Remove from repository (and disk)</source>
       <translation>Supprimer du référentiel (et du disque)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="634" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="255" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="257" />
       <source>Copy</source>
       <translation>Copier</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="257" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="259" />
       <source>Move</source>
       <translation>Déplacer</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="776" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="779" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="641" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="443" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="262" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="784" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="787" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="643" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="448" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="264" />
       <source>Add to Changelist</source>
       <translation>Ajouter à la liste des modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="780" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="783" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="645" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="266" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="788" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="647" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="452" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="268" />
       <source>Remove from Changelist</source>
       <translation>Supprimer de la liste des modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="272" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="650" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="653" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="274" />
       <source>Show log browser</source>
       <translation>Afficher le navigateur de logs</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="786" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="655" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="658" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="453" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="279" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="794" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="660" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="281" />
       <source>Show status</source>
       <translation>Afficher l'état (status)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="663" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="287" />
       <source>Show repository info</source>
       <translation>Afficher les infos du référentiel</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="793" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="662" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="665" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="801" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="670" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="673" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="465" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="294" />
       <source>Show differences</source>
@@ -78436,12 +78477,12 @@
       <translation>Montrer les différences côte à côte</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="799" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="802" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="671" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="466" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="298" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="807" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="810" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="679" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="471" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="306" />
       <source>Show differences (extended)</source>
@@ -78454,12 +78495,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="805" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="472" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="310" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="813" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="685" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="477" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="318" />
       <source>Show differences (URLs)</source>
@@ -78472,34 +78513,34 @@
       <translation>Afficher les fichiers annotés</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="812" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="681" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="815" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="684" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="479" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="319" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="820" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="689" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="823" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="692" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="484" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="327" />
       <source>Revert changes</source>
       <translation>Revenir avant les modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="818" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="690" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="826" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="829" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="333" />
       <source>Merge changes</source>
       <translation>Fusionner les modifications</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="822" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="691" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="483" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="329" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="830" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="699" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="488" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="337" />
       <source>Conflicts resolved</source>
@@ -78538,106 +78579,106 @@
       <translation>Voler le verrou</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="828" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="697" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="510" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="356" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="836" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="361" />
       <source>Set Property</source>
       <translation>Définir une propriété</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="827" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="830" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="699" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="358" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="835" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="838" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="707" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="363" />
       <source>List Properties</source>
       <translation>Lister les propriétés</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="829" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="698" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="832" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="701" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="360" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="837" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="709" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="365" />
       <source>Delete Property</source>
       <translation>Supprimer une propriété</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="559" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="841" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="710" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="561" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
-      <source>Select all local file entries</source>
-      <translation>Sélectionner tous les fichiers locaux</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="836" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="562" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="844" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="713" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
-      <source>Select all versioned file entries</source>
-      <translation>Sélectionner tous les fichiers ayant une version</translation>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
+      <source>Select all local file entries</source>
+      <translation>Sélectionner tous les fichiers locaux</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="839" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="708" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="847" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="716" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="567" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
+      <source>Select all versioned file entries</source>
+      <translation>Sélectionner tous les fichiers ayant une version</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="842" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="570" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="526" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="375" />
       <source>Select all local directory entries</source>
       <translation>Sélectionner tous les répertoires locaux</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="843" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="712" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="846" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="715" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="572" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="528" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="374" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="851" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="720" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="571" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="854" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="723" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="574" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="379" />
       <source>Select all versioned directory entries</source>
       <translation>Sélectionner tous les répertoires ayant une version</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="847" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="576" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="532" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="378" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="855" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="724" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="575" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="858" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="727" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="578" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="534" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="383" />
       <source>Configure...</source>
@@ -91217,8 +91258,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
+      <location filename="../QScintilla/MiniEditor.py" line="1685" />
       <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/MiniEditor.py" line="1683" />
       <location filename="../QScintilla/ShellWindow.py" line="435" />
       <location filename="../QScintilla/ShellWindow.py" line="434" />
       <source>Delete current line</source>
@@ -91226,7 +91267,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
+      <location filename="../QScintilla/MiniEditor.py" line="1686" />
       <location filename="../QScintilla/ShellWindow.py" line="436" />
       <source>Ctrl+Shift+L</source>
       <translation>Ctrl+Shift+L</translation>
@@ -91234,8 +91275,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="1207" />
       <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/MiniEditor.py" line="1205" />
       <location filename="../QScintilla/ShellWindow.py" line="447" />
       <location filename="../QScintilla/ShellWindow.py" line="446" />
       <source>Indent one level</source>
@@ -91243,7 +91284,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
+      <location filename="../QScintilla/MiniEditor.py" line="1208" />
       <location filename="../QScintilla/ShellWindow.py" line="448" />
       <source>Tab</source>
       <translation>Tab</translation>
@@ -91251,8 +91292,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
+      <location filename="../QScintilla/MiniEditor.py" line="1673" />
       <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1671" />
       <location filename="../QScintilla/ShellWindow.py" line="459" />
       <location filename="../QScintilla/ShellWindow.py" line="458" />
       <source>Insert new line</source>
@@ -91260,14 +91301,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
+      <location filename="../QScintilla/MiniEditor.py" line="1674" />
       <location filename="../QScintilla/ShellWindow.py" line="460" />
       <source>Return</source>
       <translation>Return</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
+      <location filename="../QScintilla/MiniEditor.py" line="1675" />
       <location filename="../QScintilla/ShellWindow.py" line="461" />
       <source>Enter</source>
       <translation>Enter</translation>
@@ -91275,8 +91316,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
+      <location filename="../QScintilla/MiniEditor.py" line="1559" />
       <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1557" />
       <location filename="../QScintilla/ShellWindow.py" line="471" />
       <location filename="../QScintilla/ShellWindow.py" line="470" />
       <source>Delete previous character</source>
@@ -91284,21 +91325,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
+      <location filename="../QScintilla/MiniEditor.py" line="1560" />
       <location filename="../QScintilla/ShellWindow.py" line="472" />
       <source>Backspace</source>
       <translation>Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1566" />
+      <location filename="../QScintilla/MiniEditor.py" line="1567" />
       <location filename="../QScintilla/ShellWindow.py" line="479" />
       <source>Meta+H</source>
       <translation>Meta+H</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1571" />
+      <location filename="../QScintilla/MiniEditor.py" line="1572" />
       <location filename="../QScintilla/ShellWindow.py" line="484" />
       <source>Shift+Backspace</source>
       <translation>Shift+Backspace</translation>
@@ -91306,8 +91347,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
+      <location filename="../QScintilla/MiniEditor.py" line="1597" />
       <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1595" />
       <location filename="../QScintilla/ShellWindow.py" line="493" />
       <location filename="../QScintilla/ShellWindow.py" line="492" />
       <source>Delete current character</source>
@@ -91315,14 +91356,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
+      <location filename="../QScintilla/MiniEditor.py" line="1598" />
       <location filename="../QScintilla/ShellWindow.py" line="494" />
       <source>Del</source>
       <translation>Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1604" />
+      <location filename="../QScintilla/MiniEditor.py" line="1605" />
       <location filename="../QScintilla/ShellWindow.py" line="501" />
       <source>Meta+D</source>
       <translation>Meta+D</translation>
@@ -91330,8 +91371,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
+      <location filename="../QScintilla/MiniEditor.py" line="1613" />
       <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/MiniEditor.py" line="1611" />
       <location filename="../QScintilla/ShellWindow.py" line="509" />
       <location filename="../QScintilla/ShellWindow.py" line="508" />
       <source>Delete word to left</source>
@@ -91339,7 +91380,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1614" />
       <location filename="../QScintilla/ShellWindow.py" line="510" />
       <source>Ctrl+Backspace</source>
       <translation>Ctrl+Backspace</translation>
@@ -91347,8 +91388,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1625" />
       <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/MiniEditor.py" line="1623" />
       <location filename="../QScintilla/ShellWindow.py" line="521" />
       <location filename="../QScintilla/ShellWindow.py" line="520" />
       <source>Delete word to right</source>
@@ -91356,7 +91397,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
+      <location filename="../QScintilla/MiniEditor.py" line="1626" />
       <location filename="../QScintilla/ShellWindow.py" line="522" />
       <source>Ctrl+Del</source>
       <translation>Ctrl+Del</translation>
@@ -91364,8 +91405,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
+      <location filename="../QScintilla/MiniEditor.py" line="1637" />
       <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/MiniEditor.py" line="1635" />
       <location filename="../QScintilla/ShellWindow.py" line="533" />
       <location filename="../QScintilla/ShellWindow.py" line="532" />
       <source>Delete line to left</source>
@@ -91373,7 +91414,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1638" />
+      <location filename="../QScintilla/MiniEditor.py" line="1639" />
       <location filename="../QScintilla/ShellWindow.py" line="535" />
       <source>Ctrl+Shift+Backspace</source>
       <translation>Ctrl+Shift+Backspace</translation>
@@ -91381,8 +91422,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
+      <location filename="../QScintilla/MiniEditor.py" line="1651" />
       <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/MiniEditor.py" line="1649" />
       <location filename="../QScintilla/ShellWindow.py" line="547" />
       <location filename="../QScintilla/ShellWindow.py" line="546" />
       <source>Delete line to right</source>
@@ -91390,14 +91431,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1658" />
+      <location filename="../QScintilla/MiniEditor.py" line="1659" />
       <location filename="../QScintilla/ShellWindow.py" line="555" />
       <source>Meta+K</source>
       <translation>Meta+K</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1663" />
+      <location filename="../QScintilla/MiniEditor.py" line="1664" />
       <location filename="../QScintilla/ShellWindow.py" line="560" />
       <source>Ctrl+Shift+Del</source>
       <translation>Ctrl+Shift+Del</translation>
@@ -91405,8 +91446,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
+      <location filename="../QScintilla/MiniEditor.py" line="895" />
       <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/MiniEditor.py" line="893" />
       <location filename="../QScintilla/ShellWindow.py" line="569" />
       <location filename="../QScintilla/ShellWindow.py" line="568" />
       <source>Move left one character</source>
@@ -91414,14 +91455,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
+      <location filename="../QScintilla/MiniEditor.py" line="896" />
       <location filename="../QScintilla/ShellWindow.py" line="570" />
       <source>Left</source>
       <translation>Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="904" />
       <location filename="../QScintilla/ShellWindow.py" line="578" />
       <source>Meta+B</source>
       <translation>Meta+B</translation>
@@ -91429,8 +91470,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="911" />
       <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/MiniEditor.py" line="909" />
       <location filename="../QScintilla/ShellWindow.py" line="585" />
       <location filename="../QScintilla/ShellWindow.py" line="584" />
       <source>Move right one character</source>
@@ -91438,14 +91479,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
+      <location filename="../QScintilla/MiniEditor.py" line="912" />
       <location filename="../QScintilla/ShellWindow.py" line="586" />
       <source>Right</source>
       <translation>Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="918" />
+      <location filename="../QScintilla/MiniEditor.py" line="919" />
       <location filename="../QScintilla/ShellWindow.py" line="593" />
       <source>Meta+F</source>
       <translation>Meta+F</translation>
@@ -91453,8 +91494,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="991" />
       <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/MiniEditor.py" line="989" />
       <location filename="../QScintilla/ShellWindow.py" line="601" />
       <location filename="../QScintilla/ShellWindow.py" line="600" />
       <source>Move left one word</source>
@@ -91463,8 +91504,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="998" />
-      <location filename="../QScintilla/MiniEditor.py" line="966" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/MiniEditor.py" line="967" />
       <location filename="../QScintilla/ShellWindow.py" line="609" />
       <source>Alt+Left</source>
       <translation>Alt+Left</translation>
@@ -91472,8 +91513,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1058" />
-      <location filename="../QScintilla/MiniEditor.py" line="1002" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
+      <location filename="../QScintilla/MiniEditor.py" line="1003" />
       <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Ctrl+Left</source>
       <translation>Ctrl+Left</translation>
@@ -91481,8 +91522,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
+      <location filename="../QScintilla/MiniEditor.py" line="1011" />
       <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/MiniEditor.py" line="1009" />
       <location filename="../QScintilla/ShellWindow.py" line="621" />
       <location filename="../QScintilla/ShellWindow.py" line="620" />
       <source>Move right one word</source>
@@ -91491,8 +91532,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1812" />
-      <location filename="../QScintilla/MiniEditor.py" line="1022" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="1023" />
       <location filename="../QScintilla/ShellWindow.py" line="629" />
       <source>Ctrl+Right</source>
       <translation>Ctrl+Right</translation>
@@ -91500,8 +91541,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1032" />
-      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1033" />
+      <location filename="../QScintilla/MiniEditor.py" line="1030" />
       <location filename="../QScintilla/ShellWindow.py" line="639" />
       <location filename="../QScintilla/ShellWindow.py" line="636" />
       <source>Move to first visible character in document line</source>
@@ -91510,8 +91551,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2073" />
-      <location filename="../QScintilla/MiniEditor.py" line="1042" />
+      <location filename="../QScintilla/MiniEditor.py" line="2074" />
+      <location filename="../QScintilla/MiniEditor.py" line="1043" />
       <location filename="../QScintilla/ShellWindow.py" line="649" />
       <source>Home</source>
       <translation>Home</translation>
@@ -91519,8 +91560,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
+      <location filename="../QScintilla/MiniEditor.py" line="1071" />
       <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/MiniEditor.py" line="1069" />
       <location filename="../QScintilla/ShellWindow.py" line="657" />
       <location filename="../QScintilla/ShellWindow.py" line="656" />
       <source>Move to end of document line</source>
@@ -91528,7 +91569,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1078" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
       <location filename="../QScintilla/ShellWindow.py" line="665" />
       <source>Meta+E</source>
       <translation>Meta+E</translation>
@@ -91536,8 +91577,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1083" />
       <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>End</source>
       <translation>End</translation>
@@ -91545,8 +91586,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="927" />
       <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/MiniEditor.py" line="925" />
       <location filename="../QScintilla/ShellWindow.py" line="677" />
       <location filename="../QScintilla/ShellWindow.py" line="676" />
       <source>Move up one line</source>
@@ -91554,14 +91595,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
+      <location filename="../QScintilla/MiniEditor.py" line="928" />
       <location filename="../QScintilla/ShellWindow.py" line="678" />
       <source>Up</source>
       <translation>Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="934" />
+      <location filename="../QScintilla/MiniEditor.py" line="935" />
       <location filename="../QScintilla/ShellWindow.py" line="685" />
       <source>Meta+P</source>
       <translation>Meta+P</translation>
@@ -91569,8 +91610,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
+      <location filename="../QScintilla/MiniEditor.py" line="943" />
       <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/MiniEditor.py" line="941" />
       <location filename="../QScintilla/ShellWindow.py" line="693" />
       <location filename="../QScintilla/ShellWindow.py" line="692" />
       <source>Move down one line</source>
@@ -91578,14 +91619,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="944" />
       <location filename="../QScintilla/ShellWindow.py" line="694" />
       <source>Down</source>
       <translation>Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="950" />
+      <location filename="../QScintilla/MiniEditor.py" line="951" />
       <location filename="../QScintilla/ShellWindow.py" line="701" />
       <source>Meta+N</source>
       <translation>Meta+N</translation>
@@ -91593,8 +91634,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1194" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
+      <location filename="../QScintilla/MiniEditor.py" line="1092" />
       <location filename="../QScintilla/ShellWindow.py" line="710" />
       <source>Ctrl+Down</source>
       <translation>Ctrl+Down</translation>
@@ -91602,8 +91643,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1174" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
+      <location filename="../QScintilla/MiniEditor.py" line="1104" />
       <location filename="../QScintilla/ShellWindow.py" line="722" />
       <source>Ctrl+Up</source>
       <translation>Ctrl+Up</translation>
@@ -91611,8 +91652,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1139" />
       <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/MiniEditor.py" line="1137" />
       <location filename="../QScintilla/ShellWindow.py" line="733" />
       <location filename="../QScintilla/ShellWindow.py" line="732" />
       <source>Move up one page</source>
@@ -91620,7 +91661,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
+      <location filename="../QScintilla/MiniEditor.py" line="1140" />
       <location filename="../QScintilla/ShellWindow.py" line="734" />
       <source>PgUp</source>
       <translation>PgUp</translation>
@@ -91628,8 +91669,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
+      <location filename="../QScintilla/MiniEditor.py" line="1151" />
       <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1149" />
       <location filename="../QScintilla/ShellWindow.py" line="745" />
       <location filename="../QScintilla/ShellWindow.py" line="744" />
       <source>Move down one page</source>
@@ -91637,14 +91678,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1152" />
       <location filename="../QScintilla/ShellWindow.py" line="746" />
       <source>PgDown</source>
       <translation>PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1158" />
+      <location filename="../QScintilla/MiniEditor.py" line="1159" />
       <location filename="../QScintilla/ShellWindow.py" line="753" />
       <source>Meta+V</source>
       <translation>Meta+V</translation>
@@ -91652,8 +91693,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
+      <location filename="../QScintilla/MiniEditor.py" line="1859" />
       <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/MiniEditor.py" line="1857" />
       <location filename="../QScintilla/ShellWindow.py" line="761" />
       <location filename="../QScintilla/ShellWindow.py" line="760" />
       <source>Escape</source>
@@ -91661,7 +91702,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
+      <location filename="../QScintilla/MiniEditor.py" line="1860" />
       <location filename="../QScintilla/ShellWindow.py" line="762" />
       <source>Esc</source>
       <translation>Esc</translation>
@@ -91669,8 +91710,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1233" />
+      <location filename="../QScintilla/MiniEditor.py" line="1230" />
       <location filename="../QScintilla/ShellWindow.py" line="775" />
       <location filename="../QScintilla/ShellWindow.py" line="772" />
       <source>Extend selection left one character</source>
@@ -91678,14 +91719,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1235" />
+      <location filename="../QScintilla/MiniEditor.py" line="1236" />
       <location filename="../QScintilla/ShellWindow.py" line="778" />
       <source>Shift+Left</source>
       <translation>Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1242" />
+      <location filename="../QScintilla/MiniEditor.py" line="1243" />
       <location filename="../QScintilla/ShellWindow.py" line="785" />
       <source>Meta+Shift+B</source>
       <translation>Meta+Shift+B</translation>
@@ -91693,8 +91734,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1253" />
+      <location filename="../QScintilla/MiniEditor.py" line="1250" />
       <location filename="../QScintilla/ShellWindow.py" line="795" />
       <location filename="../QScintilla/ShellWindow.py" line="792" />
       <source>Extend selection right one character</source>
@@ -91702,14 +91743,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1255" />
+      <location filename="../QScintilla/MiniEditor.py" line="1256" />
       <location filename="../QScintilla/ShellWindow.py" line="798" />
       <source>Shift+Right</source>
       <translation>Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1262" />
+      <location filename="../QScintilla/MiniEditor.py" line="1263" />
       <location filename="../QScintilla/ShellWindow.py" line="805" />
       <source>Meta+Shift+F</source>
       <translation>Meta+Shift+F</translation>
@@ -91717,8 +91758,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
+      <location filename="../QScintilla/MiniEditor.py" line="1347" />
       <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/MiniEditor.py" line="1345" />
       <location filename="../QScintilla/ShellWindow.py" line="813" />
       <location filename="../QScintilla/ShellWindow.py" line="812" />
       <source>Extend selection left one word</source>
@@ -91727,8 +91768,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1355" />
-      <location filename="../QScintilla/MiniEditor.py" line="1315" />
+      <location filename="../QScintilla/MiniEditor.py" line="1356" />
+      <location filename="../QScintilla/MiniEditor.py" line="1316" />
       <location filename="../QScintilla/ShellWindow.py" line="822" />
       <source>Alt+Shift+Left</source>
       <translation>Alt+Shift+Left</translation>
@@ -91736,8 +91777,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2276" />
-      <location filename="../QScintilla/MiniEditor.py" line="1361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2277" />
+      <location filename="../QScintilla/MiniEditor.py" line="1362" />
       <location filename="../QScintilla/ShellWindow.py" line="828" />
       <source>Ctrl+Shift+Left</source>
       <translation>Ctrl+Shift+Left</translation>
@@ -91745,8 +91786,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1372" />
-      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1373" />
+      <location filename="../QScintilla/MiniEditor.py" line="1370" />
       <location filename="../QScintilla/ShellWindow.py" line="839" />
       <location filename="../QScintilla/ShellWindow.py" line="836" />
       <source>Extend selection right one word</source>
@@ -91756,9 +91797,9 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1383" />
-      <location filename="../QScintilla/MiniEditor.py" line="1337" />
+      <location filename="../QScintilla/MiniEditor.py" line="2151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1384" />
+      <location filename="../QScintilla/MiniEditor.py" line="1338" />
       <location filename="../QScintilla/ShellWindow.py" line="850" />
       <source>Alt+Shift+Right</source>
       <translation>Alt+Shift+Right</translation>
@@ -91766,8 +91807,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1837" />
-      <location filename="../QScintilla/MiniEditor.py" line="1389" />
+      <location filename="../QScintilla/MiniEditor.py" line="1838" />
+      <location filename="../QScintilla/MiniEditor.py" line="1390" />
       <location filename="../QScintilla/ShellWindow.py" line="856" />
       <source>Ctrl+Shift+Right</source>
       <translation>Ctrl+Shift+Right</translation>
@@ -91775,8 +91816,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1401" />
-      <location filename="../QScintilla/MiniEditor.py" line="1397" />
+      <location filename="../QScintilla/MiniEditor.py" line="1402" />
+      <location filename="../QScintilla/MiniEditor.py" line="1398" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
       <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
@@ -91784,7 +91825,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1412" />
+      <location filename="../QScintilla/MiniEditor.py" line="1413" />
       <location filename="../QScintilla/ShellWindow.py" line="879" />
       <source>Shift+Home</source>
       <translation>Shift+Home</translation>
@@ -91792,8 +91833,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1422" />
-      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1423" />
+      <location filename="../QScintilla/MiniEditor.py" line="1420" />
       <location filename="../QScintilla/ShellWindow.py" line="889" />
       <location filename="../QScintilla/ShellWindow.py" line="886" />
       <source>Extend selection to end of document line</source>
@@ -91801,14 +91842,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1432" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
       <location filename="../QScintilla/ShellWindow.py" line="899" />
       <source>Meta+Shift+E</source>
       <translation>Meta+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1437" />
       <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Shift+End</source>
       <translation>Shift+End</translation>
@@ -91817,21 +91858,21 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2532" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
       <location filename="../QScintilla/ShellWindow.py" line="917" />
       <source>Search</source>
       <translation>Rechercher</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2534" />
+      <location filename="../QScintilla/MiniEditor.py" line="2535" />
       <location filename="../QScintilla/ShellWindow.py" line="919" />
       <source>&amp;Search...</source>
       <translation>Re&amp;chercher...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2536" />
+      <location filename="../QScintilla/MiniEditor.py" line="2537" />
       <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
@@ -91839,7 +91880,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2543" />
+      <location filename="../QScintilla/MiniEditor.py" line="2544" />
       <location filename="../QScintilla/ShellWindow.py" line="928" />
       <source>Search for a text</source>
       <translation>Recherche de texte</translation>
@@ -91851,21 +91892,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
       <location filename="../QScintilla/ShellWindow.py" line="943" />
       <source>Search next</source>
       <translation>Chercher suivant</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2560" />
+      <location filename="../QScintilla/MiniEditor.py" line="2561" />
       <location filename="../QScintilla/ShellWindow.py" line="945" />
       <source>Search &amp;next</source>
       <translation>Chercher &amp;suivant</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2562" />
+      <location filename="../QScintilla/MiniEditor.py" line="2563" />
       <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>F3</source>
       <comment>Search|Search next</comment>
@@ -91873,7 +91914,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2569" />
+      <location filename="../QScintilla/MiniEditor.py" line="2570" />
       <location filename="../QScintilla/ShellWindow.py" line="954" />
       <source>Search next occurrence of text</source>
       <translation>Recherche de l'occurence de texte suivante</translation>
@@ -91885,21 +91926,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2584" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
       <location filename="../QScintilla/ShellWindow.py" line="971" />
       <source>Search previous</source>
       <translation>Chercher précédent</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2586" />
+      <location filename="../QScintilla/MiniEditor.py" line="2587" />
       <location filename="../QScintilla/ShellWindow.py" line="973" />
       <source>Search &amp;previous</source>
       <translation>Chercher &amp;précédent</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2588" />
+      <location filename="../QScintilla/MiniEditor.py" line="2589" />
       <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
@@ -91907,7 +91948,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2597" />
+      <location filename="../QScintilla/MiniEditor.py" line="2598" />
       <location filename="../QScintilla/ShellWindow.py" line="984" />
       <source>Search previous occurrence of text</source>
       <translation>Recherche de l'occurence de texte précédente</translation>
@@ -91919,21 +91960,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2757" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
       <location filename="../QScintilla/ShellWindow.py" line="1010" />
       <source>Zoom in</source>
       <translation>Zoom avant</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2759" />
+      <location filename="../QScintilla/MiniEditor.py" line="2760" />
       <location filename="../QScintilla/ShellWindow.py" line="1012" />
       <source>Zoom &amp;in</source>
       <translation>Zoom a&amp;vant</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/MiniEditor.py" line="2762" />
       <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
@@ -91941,7 +91982,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2764" />
+      <location filename="../QScintilla/MiniEditor.py" line="2765" />
       <location filename="../QScintilla/ShellWindow.py" line="1017" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
@@ -91949,35 +91990,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/MiniEditor.py" line="2771" />
       <location filename="../QScintilla/ShellWindow.py" line="1023" />
       <source>Zoom in on the text</source>
       <translation>Zoom sur le texte</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2773" />
+      <location filename="../QScintilla/MiniEditor.py" line="2774" />
       <location filename="../QScintilla/ShellWindow.py" line="1026" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zoom avant&lt;/b&gt;&lt;p&gt;Zoom sur le texte. Affiche le texte en plus gros.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2783" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
       <location filename="../QScintilla/ShellWindow.py" line="1036" />
       <source>Zoom out</source>
       <translation>Zoom arrière</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2785" />
+      <location filename="../QScintilla/MiniEditor.py" line="2786" />
       <location filename="../QScintilla/ShellWindow.py" line="1038" />
       <source>Zoom &amp;out</source>
       <translation>Zoom a&amp;rrière</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/MiniEditor.py" line="2788" />
       <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
@@ -91985,7 +92026,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2790" />
+      <location filename="../QScintilla/MiniEditor.py" line="2791" />
       <location filename="../QScintilla/ShellWindow.py" line="1043" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
@@ -91993,35 +92034,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/MiniEditor.py" line="2797" />
       <location filename="../QScintilla/ShellWindow.py" line="1049" />
       <source>Zoom out on the text</source>
       <translation>Zoom arrière du texte</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2799" />
+      <location filename="../QScintilla/MiniEditor.py" line="2800" />
       <location filename="../QScintilla/ShellWindow.py" line="1052" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zoom arrière&lt;/b&gt;&lt;p&gt;Zoom arrière du texte. Affiche le texte en plus petit.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2809" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
       <location filename="../QScintilla/ShellWindow.py" line="1062" />
       <source>Zoom reset</source>
       <translation>Annulation du zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2811" />
+      <location filename="../QScintilla/MiniEditor.py" line="2812" />
       <location filename="../QScintilla/ShellWindow.py" line="1064" />
       <source>Zoom &amp;reset</source>
       <translation>Annulation du &amp;zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2813" />
+      <location filename="../QScintilla/MiniEditor.py" line="2814" />
       <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
@@ -92029,42 +92070,42 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/MiniEditor.py" line="2821" />
       <location filename="../QScintilla/ShellWindow.py" line="1073" />
       <source>Reset the zoom of the text</source>
       <translation>Annulation du zoom du texte</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2823" />
+      <location filename="../QScintilla/MiniEditor.py" line="2824" />
       <location filename="../QScintilla/ShellWindow.py" line="1076" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Annulation du zoom&lt;/b&gt;&lt;p&gt;Annulation du zoom du texte. Ceci met le facteur de zoom à 100%. &lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2834" />
+      <location filename="../QScintilla/MiniEditor.py" line="2835" />
       <location filename="../QScintilla/ShellWindow.py" line="1087" />
       <source>Zoom</source>
       <translation>Zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2836" />
+      <location filename="../QScintilla/MiniEditor.py" line="2837" />
       <location filename="../QScintilla/ShellWindow.py" line="1089" />
       <source>&amp;Zoom</source>
       <translation>&amp;Zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/MiniEditor.py" line="2844" />
       <location filename="../QScintilla/ShellWindow.py" line="1096" />
       <source>Zoom the text</source>
       <translation>Zoom du texte</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2846" />
+      <location filename="../QScintilla/MiniEditor.py" line="2847" />
       <location filename="../QScintilla/ShellWindow.py" line="1099" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom du texte. Ouvre une fenêtre pour entrer la taille souhaitée.&lt;/p&gt;</translation>
@@ -92072,984 +92113,984 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="804" />
       <location filename="../ViewManager/ViewManager.py" line="802" />
-      <location filename="../QScintilla/MiniEditor.py" line="740" />
+      <location filename="../QScintilla/MiniEditor.py" line="741" />
       <source>Print Preview</source>
       <translation>Aperçu avant impression</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
+      <location filename="../QScintilla/MiniEditor.py" line="959" />
       <location filename="../QScintilla/MiniEditor.py" line="958" />
-      <location filename="../QScintilla/MiniEditor.py" line="957" />
       <source>Move left one word part</source>
       <translation>Déplacement d'une part de mot vers la gauche</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
+      <location filename="../QScintilla/MiniEditor.py" line="975" />
       <location filename="../QScintilla/MiniEditor.py" line="974" />
-      <location filename="../QScintilla/MiniEditor.py" line="973" />
       <source>Move right one word part</source>
       <translation>Déplacement d'une part de mot vers la droite</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2128" />
-      <location filename="../QScintilla/MiniEditor.py" line="1018" />
-      <location filename="../QScintilla/MiniEditor.py" line="982" />
+      <location filename="../QScintilla/MiniEditor.py" line="2129" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/MiniEditor.py" line="983" />
       <source>Alt+Right</source>
       <translation>Alt+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1051" />
       <location filename="../QScintilla/MiniEditor.py" line="1050" />
-      <location filename="../QScintilla/MiniEditor.py" line="1049" />
       <source>Move to start of display line</source>
       <translation>Déplacement au début de la ligne courante</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="1063" />
       <source>Alt+Home</source>
       <translation>Alt+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
+      <location filename="../QScintilla/MiniEditor.py" line="1091" />
       <location filename="../QScintilla/MiniEditor.py" line="1090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1089" />
       <source>Scroll view down one line</source>
       <translation>Descend la vue d'une ligne</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
+      <location filename="../QScintilla/MiniEditor.py" line="1103" />
       <location filename="../QScintilla/MiniEditor.py" line="1102" />
-      <location filename="../QScintilla/MiniEditor.py" line="1101" />
       <source>Scroll view up one line</source>
       <translation>Monte la vue d'une ligne</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
+      <location filename="../QScintilla/MiniEditor.py" line="1115" />
       <location filename="../QScintilla/MiniEditor.py" line="1114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1113" />
       <source>Move up one paragraph</source>
       <translation>Déplacement d'un paragraphe vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
+      <location filename="../QScintilla/MiniEditor.py" line="1116" />
       <source>Alt+Up</source>
       <translation>Alt+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
+      <location filename="../QScintilla/MiniEditor.py" line="1127" />
       <location filename="../QScintilla/MiniEditor.py" line="1126" />
-      <location filename="../QScintilla/MiniEditor.py" line="1125" />
       <source>Move down one paragraph</source>
       <translation>Déplacement d'un paragraphe vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
+      <location filename="../QScintilla/MiniEditor.py" line="1128" />
       <source>Alt+Down</source>
       <translation>Alt+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
+      <location filename="../QScintilla/MiniEditor.py" line="1167" />
       <location filename="../QScintilla/MiniEditor.py" line="1166" />
-      <location filename="../QScintilla/MiniEditor.py" line="1165" />
       <source>Move to start of document</source>
       <translation>Déplacement au début du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1178" />
+      <location filename="../QScintilla/MiniEditor.py" line="1179" />
       <source>Ctrl+Home</source>
       <translation>Ctrl+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
+      <location filename="../QScintilla/MiniEditor.py" line="1187" />
       <location filename="../QScintilla/MiniEditor.py" line="1186" />
-      <location filename="../QScintilla/MiniEditor.py" line="1185" />
       <source>Move to end of document</source>
       <translation>Déplacement à la fin du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1198" />
+      <location filename="../QScintilla/MiniEditor.py" line="1199" />
       <source>Ctrl+End</source>
       <translation>Ctrl+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
+      <location filename="../QScintilla/MiniEditor.py" line="1219" />
       <location filename="../QScintilla/MiniEditor.py" line="1218" />
-      <location filename="../QScintilla/MiniEditor.py" line="1217" />
       <source>Unindent one level</source>
       <translation>Désindentation d'un niveau</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
+      <location filename="../QScintilla/MiniEditor.py" line="1220" />
       <source>Shift+Tab</source>
       <translation>Shift+Tab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
+      <location filename="../QScintilla/MiniEditor.py" line="1271" />
       <location filename="../QScintilla/MiniEditor.py" line="1270" />
-      <location filename="../QScintilla/MiniEditor.py" line="1269" />
       <source>Extend selection up one line</source>
       <translation>Extension de la sélection d'une ligne vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
+      <location filename="../QScintilla/MiniEditor.py" line="1272" />
       <source>Shift+Up</source>
       <translation>Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1278" />
+      <location filename="../QScintilla/MiniEditor.py" line="1279" />
       <source>Meta+Shift+P</source>
       <translation>Meta+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
+      <location filename="../QScintilla/MiniEditor.py" line="1287" />
       <location filename="../QScintilla/MiniEditor.py" line="1286" />
-      <location filename="../QScintilla/MiniEditor.py" line="1285" />
       <source>Extend selection down one line</source>
       <translation>Extension de la sélection d'une ligne vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
+      <location filename="../QScintilla/MiniEditor.py" line="1288" />
       <source>Shift+Down</source>
       <translation>Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1294" />
+      <location filename="../QScintilla/MiniEditor.py" line="1295" />
       <source>Meta+Shift+N</source>
       <translation>Meta+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1304" />
-      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1305" />
+      <location filename="../QScintilla/MiniEditor.py" line="1302" />
       <source>Extend selection left one word part</source>
       <translation>Extension de la sélection d'une part de mot vers la gauche</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1326" />
-      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1327" />
+      <location filename="../QScintilla/MiniEditor.py" line="1324" />
       <source>Extend selection right one word part</source>
       <translation>Extension de la sélection d'une part de mot vers la droite</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1446" />
-      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1447" />
+      <location filename="../QScintilla/MiniEditor.py" line="1444" />
       <source>Extend selection up one paragraph</source>
       <translation>Extension de la sélection d'un paragraphe vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1449" />
+      <location filename="../QScintilla/MiniEditor.py" line="1450" />
       <source>Alt+Shift+Up</source>
       <translation>Alt+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1462" />
-      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1463" />
+      <location filename="../QScintilla/MiniEditor.py" line="1460" />
       <source>Extend selection down one paragraph</source>
       <translation>Extension de la sélection d'un paragraphe vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1465" />
+      <location filename="../QScintilla/MiniEditor.py" line="1466" />
       <source>Alt+Shift+Down</source>
       <translation>Alt+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1477" />
       <location filename="../QScintilla/MiniEditor.py" line="1476" />
-      <location filename="../QScintilla/MiniEditor.py" line="1475" />
       <source>Extend selection up one page</source>
       <translation>Extension de la sélection d'une page vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
+      <location filename="../QScintilla/MiniEditor.py" line="1478" />
       <source>Shift+PgUp</source>
       <translation>Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="1489" />
       <location filename="../QScintilla/MiniEditor.py" line="1488" />
-      <location filename="../QScintilla/MiniEditor.py" line="1487" />
       <source>Extend selection down one page</source>
       <translation>Extension de la sélection d'une page vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
+      <location filename="../QScintilla/MiniEditor.py" line="1490" />
       <source>Shift+PgDown</source>
       <translation>Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1496" />
+      <location filename="../QScintilla/MiniEditor.py" line="1497" />
       <source>Meta+Shift+V</source>
       <translation>Meta+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1506" />
-      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1507" />
+      <location filename="../QScintilla/MiniEditor.py" line="1504" />
       <source>Extend selection to start of document</source>
       <translation>Extension de la sélection à la fin du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1516" />
+      <location filename="../QScintilla/MiniEditor.py" line="1517" />
       <source>Ctrl+Shift+Up</source>
       <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1521" />
+      <location filename="../QScintilla/MiniEditor.py" line="1522" />
       <source>Ctrl+Shift+Home</source>
       <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1533" />
+      <location filename="../QScintilla/MiniEditor.py" line="1530" />
       <source>Extend selection to end of document</source>
       <translation>Extension de la sélection à la fin du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1543" />
+      <location filename="../QScintilla/MiniEditor.py" line="1544" />
       <source>Ctrl+Shift+Down</source>
       <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1549" />
+      <location filename="../QScintilla/MiniEditor.py" line="1550" />
       <source>Ctrl+Shift+End</source>
       <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1583" />
+      <location filename="../QScintilla/MiniEditor.py" line="1580" />
       <source>Delete previous character if not at start of line</source>
       <translation>Suppression du caractère précédent sauf en début de ligne</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1697" />
       <location filename="../QScintilla/MiniEditor.py" line="1696" />
-      <location filename="../QScintilla/MiniEditor.py" line="1695" />
       <source>Duplicate current line</source>
       <translation>Duplication de la ligne courante</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
+      <location filename="../QScintilla/MiniEditor.py" line="1698" />
       <source>Ctrl+D</source>
       <translation>Ctrl+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1710" />
-      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1711" />
+      <location filename="../QScintilla/MiniEditor.py" line="1708" />
       <source>Swap current and previous lines</source>
       <translation>Permuter la ligne courante avec la précédente</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1713" />
+      <location filename="../QScintilla/MiniEditor.py" line="1714" />
       <source>Ctrl+T</source>
       <translation>Ctrl+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="1725" />
       <location filename="../QScintilla/MiniEditor.py" line="1724" />
-      <location filename="../QScintilla/MiniEditor.py" line="1723" />
       <source>Reverse selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
+      <location filename="../QScintilla/MiniEditor.py" line="1726" />
       <source>Meta+Alt+R</source>
       <translation>Meta+Alt+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
+      <location filename="../QScintilla/MiniEditor.py" line="1737" />
       <location filename="../QScintilla/MiniEditor.py" line="1736" />
-      <location filename="../QScintilla/MiniEditor.py" line="1735" />
       <source>Cut current line</source>
       <translation>Couper la ligne courante</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
+      <location filename="../QScintilla/MiniEditor.py" line="1738" />
       <source>Alt+Shift+L</source>
       <translation>Alt+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
+      <location filename="../QScintilla/MiniEditor.py" line="1749" />
       <location filename="../QScintilla/MiniEditor.py" line="1748" />
-      <location filename="../QScintilla/MiniEditor.py" line="1747" />
       <source>Copy current line</source>
       <translation>Copier la ligne courante</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="1750" />
       <source>Ctrl+Shift+T</source>
       <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
+      <location filename="../QScintilla/MiniEditor.py" line="1761" />
       <location filename="../QScintilla/MiniEditor.py" line="1760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1759" />
       <source>Toggle insert/overtype</source>
       <translation>Basculer de mode Insertion /Ecrasement</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
+      <location filename="../QScintilla/MiniEditor.py" line="1762" />
       <source>Ins</source>
       <translation>Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1775" />
+      <location filename="../QScintilla/MiniEditor.py" line="1772" />
       <source>Convert selection to lower case</source>
       <translation>Conversion de la sélection en minuscules</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1777" />
+      <location filename="../QScintilla/MiniEditor.py" line="1778" />
       <source>Alt+Shift+U</source>
       <translation>Alt+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1791" />
+      <location filename="../QScintilla/MiniEditor.py" line="1788" />
       <source>Convert selection to upper case</source>
       <translation>Conversion de la sélection en majuscules</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1793" />
+      <location filename="../QScintilla/MiniEditor.py" line="1794" />
       <source>Ctrl+Shift+U</source>
       <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
+      <location filename="../QScintilla/MiniEditor.py" line="1805" />
       <location filename="../QScintilla/MiniEditor.py" line="1804" />
-      <location filename="../QScintilla/MiniEditor.py" line="1803" />
       <source>Move to end of display line</source>
       <translation>Déplacement à la fin de la ligne affichée</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1816" />
+      <location filename="../QScintilla/MiniEditor.py" line="1817" />
       <source>Alt+End</source>
       <translation>Alt+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1827" />
+      <location filename="../QScintilla/MiniEditor.py" line="1824" />
       <source>Extend selection to end of display line</source>
       <translation>Extension de la sélection à la fin de la ligne affichée</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
+      <location filename="../QScintilla/MiniEditor.py" line="1847" />
       <location filename="../QScintilla/MiniEditor.py" line="1846" />
-      <location filename="../QScintilla/MiniEditor.py" line="1845" />
       <source>Formfeed</source>
       <translation>Chargement de page</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1872" />
-      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1873" />
+      <location filename="../QScintilla/MiniEditor.py" line="1870" />
       <source>Extend rectangular selection down one line</source>
       <translation>Extension de la sélection rectangulaire d'une ligne vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1875" />
+      <location filename="../QScintilla/MiniEditor.py" line="1876" />
       <source>Alt+Ctrl+Down</source>
       <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1883" />
+      <location filename="../QScintilla/MiniEditor.py" line="1884" />
       <source>Meta+Alt+Shift+N</source>
       <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1894" />
-      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1895" />
+      <location filename="../QScintilla/MiniEditor.py" line="1892" />
       <source>Extend rectangular selection up one line</source>
       <translation>Extension de la sélection rectangulaire d'une ligne vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1897" />
+      <location filename="../QScintilla/MiniEditor.py" line="1898" />
       <source>Alt+Ctrl+Up</source>
       <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1905" />
+      <location filename="../QScintilla/MiniEditor.py" line="1906" />
       <source>Meta+Alt+Shift+P</source>
       <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1916" />
-      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1917" />
+      <location filename="../QScintilla/MiniEditor.py" line="1914" />
       <source>Extend rectangular selection left one character</source>
       <translation>Extension de la sélection rectangulaire d'un caractère vers la gauche</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1919" />
+      <location filename="../QScintilla/MiniEditor.py" line="1920" />
       <source>Alt+Ctrl+Left</source>
       <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1927" />
+      <location filename="../QScintilla/MiniEditor.py" line="1928" />
       <source>Meta+Alt+Shift+B</source>
       <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1938" />
-      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1939" />
+      <location filename="../QScintilla/MiniEditor.py" line="1936" />
       <source>Extend rectangular selection right one character</source>
       <translation>Extension de la sélection rectangulaire d'un caractère vers la droite</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1941" />
+      <location filename="../QScintilla/MiniEditor.py" line="1942" />
       <source>Alt+Ctrl+Right</source>
       <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1949" />
+      <location filename="../QScintilla/MiniEditor.py" line="1950" />
       <source>Meta+Alt+Shift+F</source>
       <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1962" />
-      <location filename="../QScintilla/MiniEditor.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1963" />
+      <location filename="../QScintilla/MiniEditor.py" line="1958" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation>Extension de la sélection rectangulaire au premier caractère visible du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1975" />
+      <location filename="../QScintilla/MiniEditor.py" line="1976" />
       <source>Alt+Shift+Home</source>
       <translation>Alt+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1986" />
-      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1987" />
+      <location filename="../QScintilla/MiniEditor.py" line="1984" />
       <source>Extend rectangular selection to end of document line</source>
       <translation>Extension de la sélection rectangulaire à la fin de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1997" />
+      <location filename="../QScintilla/MiniEditor.py" line="1998" />
       <source>Meta+Alt+Shift+E</source>
       <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2002" />
+      <location filename="../QScintilla/MiniEditor.py" line="2003" />
       <source>Alt+Shift+End</source>
       <translation>Alt+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2012" />
-      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2013" />
+      <location filename="../QScintilla/MiniEditor.py" line="2010" />
       <source>Extend rectangular selection up one page</source>
       <translation>Extension de la sélection rectangulaire d'une page vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2015" />
+      <location filename="../QScintilla/MiniEditor.py" line="2016" />
       <source>Alt+Shift+PgUp</source>
       <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2028" />
-      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2029" />
+      <location filename="../QScintilla/MiniEditor.py" line="2026" />
       <source>Extend rectangular selection down one page</source>
       <translation>Extension de la sélection rectangulaire d'une page vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2031" />
+      <location filename="../QScintilla/MiniEditor.py" line="2032" />
       <source>Alt+Shift+PgDown</source>
       <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2039" />
+      <location filename="../QScintilla/MiniEditor.py" line="2040" />
       <source>Meta+Alt+Shift+V</source>
       <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2515" />
       <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2513" />
+      <location filename="../QScintilla/MiniEditor.py" line="2049" />
       <location filename="../QScintilla/MiniEditor.py" line="2048" />
-      <location filename="../QScintilla/MiniEditor.py" line="2047" />
       <source>Duplicate current selection</source>
       <translation>Duplication de la sélection courante</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2516" />
+      <location filename="../QScintilla/MiniEditor.py" line="2050" />
       <source>Ctrl+Shift+D</source>
       <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2063" />
-      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2061" />
       <source>Scroll to start of document</source>
       <translation>Défilement au début du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
+      <location filename="../QScintilla/MiniEditor.py" line="2083" />
       <location filename="../QScintilla/MiniEditor.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="2081" />
       <source>Scroll to end of document</source>
       <translation>Défilement à la fin du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2101" />
-      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2102" />
+      <location filename="../QScintilla/MiniEditor.py" line="2099" />
       <source>Scroll vertically to center current line</source>
       <translation>Défilement vertical de façon à centrer la ligne courante</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2111" />
+      <location filename="../QScintilla/MiniEditor.py" line="2112" />
       <source>Meta+L</source>
       <translation>Meta+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
+      <location filename="../QScintilla/MiniEditor.py" line="2121" />
       <location filename="../QScintilla/MiniEditor.py" line="2120" />
-      <location filename="../QScintilla/MiniEditor.py" line="2119" />
       <source>Move to end of next word</source>
       <translation>Déplacement à la fin du mot suivant</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2139" />
-      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2140" />
+      <location filename="../QScintilla/MiniEditor.py" line="2137" />
       <source>Extend selection to end of next word</source>
       <translation>Extension de la séleciton à la fin du mot suivant</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2162" />
-      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2163" />
+      <location filename="../QScintilla/MiniEditor.py" line="2160" />
       <source>Move to end of previous word</source>
       <translation>Déplacement à la fin du mot précédent</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2179" />
-      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2180" />
+      <location filename="../QScintilla/MiniEditor.py" line="2177" />
       <source>Extend selection to end of previous word</source>
       <translation>Extension de la séleciton à la fin du mot précédent</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2196" />
-      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2197" />
+      <location filename="../QScintilla/MiniEditor.py" line="2194" />
       <source>Move to start of document line</source>
       <translation>Déplacement au début de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2206" />
+      <location filename="../QScintilla/MiniEditor.py" line="2207" />
       <source>Meta+A</source>
       <translation>Meta+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2218" />
+      <location filename="../QScintilla/MiniEditor.py" line="2215" />
       <source>Extend selection to start of document line</source>
       <translation>Extension de la sélection au début de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2228" />
+      <location filename="../QScintilla/MiniEditor.py" line="2229" />
       <source>Meta+Shift+A</source>
       <translation>Meta+Shift+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2241" />
-      <location filename="../QScintilla/MiniEditor.py" line="2237" />
+      <location filename="../QScintilla/MiniEditor.py" line="2242" />
+      <location filename="../QScintilla/MiniEditor.py" line="2238" />
       <source>Extend rectangular selection to start of document line</source>
       <translation>Extension de la sélection rectangulaire au début de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2253" />
+      <location filename="../QScintilla/MiniEditor.py" line="2254" />
       <source>Meta+Alt+Shift+A</source>
       <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2265" />
-      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2266" />
+      <location filename="../QScintilla/MiniEditor.py" line="2263" />
       <source>Extend selection to start of display line</source>
       <translation>Extension de la sélection au début de la ligne affichée</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2288" />
-      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2289" />
+      <location filename="../QScintilla/MiniEditor.py" line="2286" />
       <source>Move to start of display or document line</source>
       <translation>Déplacement au début de la ligne affichée ou de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2306" />
-      <location filename="../QScintilla/MiniEditor.py" line="2302" />
+      <location filename="../QScintilla/MiniEditor.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="2303" />
       <source>Extend selection to start of display or document line</source>
       <translation>Extension de la sélection au début de la ligne affichée ou de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2325" />
-      <location filename="../QScintilla/MiniEditor.py" line="2321" />
+      <location filename="../QScintilla/MiniEditor.py" line="2326" />
+      <location filename="../QScintilla/MiniEditor.py" line="2322" />
       <source>Move to first visible character in display or document line</source>
       <translation>Déplacement vers le premier caractère visible de la ligne affichée ou de la ligne do document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2345" />
-      <location filename="../QScintilla/MiniEditor.py" line="2340" />
+      <location filename="../QScintilla/MiniEditor.py" line="2346" />
+      <location filename="../QScintilla/MiniEditor.py" line="2341" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation>Extension de la sélection au premier caractère visible du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2364" />
-      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2365" />
+      <location filename="../QScintilla/MiniEditor.py" line="2362" />
       <source>Move to end of display or document line</source>
       <translation>Déplacement à la de la ligne affichée ou de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2381" />
-      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2382" />
+      <location filename="../QScintilla/MiniEditor.py" line="2379" />
       <source>Extend selection to end of display or document line</source>
       <translation>Extension de la sélection à la fint de la ligne affichée ou de la ligne du document</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="2397" />
       <location filename="../QScintilla/MiniEditor.py" line="2396" />
-      <location filename="../QScintilla/MiniEditor.py" line="2395" />
       <source>Stuttered move up one page</source>
       <translation>Déplacement étagé d'une page vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2411" />
-      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2412" />
+      <location filename="../QScintilla/MiniEditor.py" line="2409" />
       <source>Stuttered extend selection up one page</source>
       <translation>Extension de la sélection étagée d'une page vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2428" />
-      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2429" />
+      <location filename="../QScintilla/MiniEditor.py" line="2426" />
       <source>Stuttered move down one page</source>
       <translation>Déplacement étagé d'une page vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2446" />
+      <location filename="../QScintilla/MiniEditor.py" line="2443" />
       <source>Stuttered extend selection down one page</source>
       <translation>Extension de la sélection étagée d'une page vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2462" />
-      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2463" />
+      <location filename="../QScintilla/MiniEditor.py" line="2460" />
       <source>Delete right to end of next word</source>
       <translation>Supprimer jusqu'à la fin du mot à doite</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2472" />
+      <location filename="../QScintilla/MiniEditor.py" line="2473" />
       <source>Alt+Del</source>
       <translation>Alt+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2484" />
+      <location filename="../QScintilla/MiniEditor.py" line="2481" />
       <source>Move selected lines up one line</source>
       <translation>Déplacement des lignes sélectionnées d'une ligne vers le haut</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2500" />
-      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2501" />
+      <location filename="../QScintilla/MiniEditor.py" line="2498" />
       <source>Move selected lines down one line</source>
       <translation>Déplacement des lignes sélectionnées d'une ligne vers le bas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2546" />
+      <location filename="../QScintilla/MiniEditor.py" line="2547" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Rechercher&lt;/b&gt;&lt;p&gt;Recherche du texte dans l'éditeur courant. Un fenêtre est affichée pour saisir le texte recherché et le options de recherche.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2572" />
+      <location filename="../QScintilla/MiniEditor.py" line="2573" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Chercher suivant&lt;/b&gt;&lt;p&gt;Recherche en avant le texte saisi dans l'éditeur courant. Les options de recherche précédentes sont réutilisées.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2602" />
+      <location filename="../QScintilla/MiniEditor.py" line="2603" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Chercher précédent&lt;/b&gt;&lt;p&gt;Recherche en arrière le texte saisi dans l'éditeur courant. Les options de recherche précédentes sont réutilisées.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2616" />
-      <location filename="../QScintilla/MiniEditor.py" line="2614" />
+      <location filename="../QScintilla/MiniEditor.py" line="2617" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Clear search markers</source>
       <translation>Effacer les marqueurs de recherche</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2618" />
+      <location filename="../QScintilla/MiniEditor.py" line="2619" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation>Ctrl+3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2627" />
+      <location filename="../QScintilla/MiniEditor.py" line="2628" />
       <source>Clear all displayed search markers</source>
       <translation>Efface tous les marqueurs de recherche affichés</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2632" />
+      <location filename="../QScintilla/MiniEditor.py" line="2633" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Effacer tous les marqueurs de recherche&lt;/b&gt;&lt;p&gt;Efface tous les marqueurs de recherche affichés.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2642" />
+      <location filename="../QScintilla/MiniEditor.py" line="2643" />
       <source>Replace</source>
       <translation>Remplacer</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2644" />
       <source>&amp;Replace...</source>
       <translation>&amp;Remplacer...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2645" />
+      <location filename="../QScintilla/MiniEditor.py" line="2646" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation>Ctrl+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2652" />
+      <location filename="../QScintilla/MiniEditor.py" line="2653" />
       <source>Replace some text</source>
       <translation>Remplacer un texte</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2655" />
+      <location filename="../QScintilla/MiniEditor.py" line="2656" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Remplacer&lt;/b&gt;&lt;p&gt;Recherche du texte dans l'éditeur courant et le remplace par un autre. Un fenêtre est affichée pour saisir le texte initial, le texte de remplacement et les options de remplacement.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2669" />
-      <location filename="../QScintilla/MiniEditor.py" line="2667" />
+      <location filename="../QScintilla/MiniEditor.py" line="2670" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Replace and Search</source>
       <translation>Remplacer et chercher</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2671" />
+      <location filename="../QScintilla/MiniEditor.py" line="2672" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation>Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2680" />
+      <location filename="../QScintilla/MiniEditor.py" line="2681" />
       <source>Replace the found text and search the next occurrence</source>
       <translation>Remplacer le texte trouvé et chercher l'occurrence suivante</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2685" />
+      <location filename="../QScintilla/MiniEditor.py" line="2686" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2701" />
-      <location filename="../QScintilla/MiniEditor.py" line="2699" />
+      <location filename="../QScintilla/MiniEditor.py" line="2702" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Replace Occurrence</source>
       <translation>Remplacer occurrence</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2703" />
+      <location filename="../QScintilla/MiniEditor.py" line="2704" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation>Ctrl+Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2712" />
+      <location filename="../QScintilla/MiniEditor.py" line="2713" />
       <source>Replace the found text</source>
       <translation>Remplacer le texte trouvé</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2715" />
+      <location filename="../QScintilla/MiniEditor.py" line="2716" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2728" />
-      <location filename="../QScintilla/MiniEditor.py" line="2726" />
+      <location filename="../QScintilla/MiniEditor.py" line="2729" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Replace All</source>
       <translation>Tout remplacer</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2730" />
+      <location filename="../QScintilla/MiniEditor.py" line="2731" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation>Shift+Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2739" />
+      <location filename="../QScintilla/MiniEditor.py" line="2740" />
       <source>Replace search text occurrences</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2742" />
+      <location filename="../QScintilla/MiniEditor.py" line="2743" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_it.ts	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/i18n/eric7_it.ts	Sat Apr 15 18:22:09 2023 +0200
@@ -1794,77 +1794,77 @@
   <context>
     <name>BaseDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="190" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="196" />
       <source>Device Data Not Available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="191" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="197" />
       <source>&lt;p&gt;The device data is not available. Try to connect to the device again. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="244" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="250" />
       <source>Unsupported Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="254" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="260" />
       <source>REPL is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="273" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="279" />
       <source>Plotter is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="292" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="298" />
       <source>Running scripts is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="311" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="317" />
       <source>File Manager is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="366" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="372" />
       <source>Select Device Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="367" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="373" />
       <source>Select the directory for the connected device:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="513" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="519" />
       <source>Detected an error without indications.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1400" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1464" />
       <source>Operation not supported.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>Yes</source>
       <translation type="unfinished">Si</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>No</source>
       <translation type="unfinished">No</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>yes</source>
       <translation type="unfinished">si</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>no</source>
       <translation type="unfinished">no</translation>
     </message>
@@ -4045,17 +4045,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="141" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
       <source>WIZnet 5x00 Ethernet</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="143" />
       <source>&lt;p&gt;Support for &lt;b&gt;WIZnet 5x00&lt;/b&gt; Ethernet boards could not be detected. Is the module &lt;b&gt;adafruit_wiznet5k&lt;/b&gt; installed?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="176" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="177" />
       <source>CircuitPython</source>
       <translation type="unfinished" />
     </message>
@@ -4223,114 +4223,114 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1127" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="864" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1128" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="865" />
       <source>unknown ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1576" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1499" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1039" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="960" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1577" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1500" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1040" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="961" />
       <source>The device volume is not available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1003" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="975" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
       <source>Write WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1539" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1005" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="977" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1546" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="984" />
+      <source>Aborted</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1195" />
+      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1266" />
+      <source>CircuitPython does not support reporting of connected clients.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
+      <source>Active</source>
+      <translation type="unfinished">Attivo</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
+      <source>Connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
+      <source>IPv4 Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
+      <source>Netmask</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
+      <source>Gateway</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
+      <source>DNS</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1677" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
+      <source>Chip Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1358" />
+      <source>max. Sockets</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1538" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1545" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1011" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="983" />
-      <source>Aborted</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1194" />
-      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1265" />
-      <source>CircuitPython does not support reporting of connected clients.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1674" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1349" />
-      <source>Active</source>
-      <translation type="unfinished">Attivo</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1680" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
-      <source>Connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
-      <source>IPv4 Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
-      <source>Netmask</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
-      <source>Gateway</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
-      <source>DNS</source>
+      <source>Write Connect Script</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1676" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
-      <source>Chip Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
-      <source>max. Sockets</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1537" />
-      <source>Write Connect Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
       <source>Name</source>
       <translation type="unfinished">Nome</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1678" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1679" />
       <source>Address Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1682" />
       <source>Advertising</source>
       <translation type="unfinished" />
     </message>
@@ -10392,12 +10392,12 @@
       <translation type="unfinished">&lt;p&gt;Il debugger non può essere avviato.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1378" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1380" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1379" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1381" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -12248,7 +12248,7 @@
       <translation>Annulla commenta</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9146" />
+      <location filename="../QScintilla/Editor.py" line="9154" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12521,7 +12521,7 @@
       <translation type="unfinished">Spelling</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8264" />
+      <location filename="../QScintilla/Editor.py" line="8272" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation>Controllo sillabazione...</translation>
@@ -12582,7 +12582,7 @@
       <translation>Modifica Breakpoint...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5923" />
+      <location filename="../QScintilla/Editor.py" line="5932" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation>Abilita breakpoint</translation>
@@ -12816,356 +12816,356 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5097" />
+      <location filename="../QScintilla/Editor.py" line="5106" />
       <source>Autocompletion</source>
       <translation>Autocompletamento</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5098" />
+      <location filename="../QScintilla/Editor.py" line="5107" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>L'autocomplentamento non è disponibile perchè non ci sono fonti impostate.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5226" />
+      <location filename="../QScintilla/Editor.py" line="5235" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5227" />
+      <location filename="../QScintilla/Editor.py" line="5236" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5519" />
+      <location filename="../QScintilla/Editor.py" line="5528" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5520" />
+      <location filename="../QScintilla/Editor.py" line="5529" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5927" />
+      <location filename="../QScintilla/Editor.py" line="5936" />
       <source>Disable breakpoint</source>
       <translation>Disabilita breakpoint</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6307" />
+      <location filename="../QScintilla/Editor.py" line="6315" />
       <source>Code Coverage</source>
       <translation>Analisi codice</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6308" />
+      <location filename="../QScintilla/Editor.py" line="6316" />
       <source>Please select a coverage file</source>
       <translation>Per favore seleziona un file per l'analisi</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="6391" />
       <location filename="../QScintilla/Editor.py" line="6383" />
-      <location filename="../QScintilla/Editor.py" line="6375" />
       <source>Show Code Coverage Annotations</source>
       <translation>Mostra le annotazioni dell'analisi del codice</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6376" />
-      <source>All lines have been covered.</source>
-      <translation>Tutte le linee sono state analizzate.</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="6384" />
+      <source>All lines have been covered.</source>
+      <translation>Tutte le linee sono state analizzate.</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="6392" />
       <source>There is no coverage file available.</source>
       <translation>Non ci sono file di analisi disponibili.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6488" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <source>Profile Data</source>
       <translation>Profilazione dati</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6489" />
+      <location filename="../QScintilla/Editor.py" line="6497" />
       <source>Please select a profile file</source>
       <translation>Per favore seleziona un file per la profilazione</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6650" />
-      <location filename="../QScintilla/Editor.py" line="6644" />
+      <location filename="../QScintilla/Editor.py" line="6658" />
+      <location filename="../QScintilla/Editor.py" line="6652" />
       <source>Syntax Error</source>
       <translation>Errore di sintassi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6651" />
+      <location filename="../QScintilla/Editor.py" line="6659" />
       <source>No syntax error message available.</source>
       <translation>Nessun messaggio degli errori di sintassi disponibile.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
-      <location filename="../QScintilla/Editor.py" line="6856" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6864" />
       <source>Warning</source>
       <translation>Attenzione</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
       <source>No warning messages available.</source>
       <translation>Nessun messaggio di attenzione disponibile.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6926" />
+      <location filename="../QScintilla/Editor.py" line="6934" />
       <source>Style: {0}</source>
       <translation>Stile: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6929" />
+      <location filename="../QScintilla/Editor.py" line="6937" />
       <source>Warning: {0}</source>
       <translation>Attenzione: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6936" />
+      <location filename="../QScintilla/Editor.py" line="6944" />
       <source>Error: {0}</source>
       <translation>Errore: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Macro Name</source>
       <translation>Nome Macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Select a macro name:</source>
       <translation>Seleziona un nome per la macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7069" />
+      <location filename="../QScintilla/Editor.py" line="7077" />
       <source>Load macro file</source>
       <translation>Carica un file di macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7115" />
-      <location filename="../QScintilla/Editor.py" line="7071" />
+      <location filename="../QScintilla/Editor.py" line="7123" />
+      <location filename="../QScintilla/Editor.py" line="7079" />
       <source>Macro files (*.macro)</source>
       <translation>File Macro (*.macro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7093" />
-      <location filename="../QScintilla/Editor.py" line="7083" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
+      <location filename="../QScintilla/Editor.py" line="7091" />
       <source>Error loading macro</source>
       <translation>Errore nel caricamento della macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7084" />
+      <location filename="../QScintilla/Editor.py" line="7092" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file macro &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7094" />
+      <location filename="../QScintilla/Editor.py" line="7102" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file macro &lt;b&gt;{0}&lt;/b&gt; è danneggiato.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7113" />
+      <location filename="../QScintilla/Editor.py" line="7121" />
       <source>Save macro file</source>
       <translation>Salva un file di macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7131" />
+      <location filename="../QScintilla/Editor.py" line="7139" />
       <source>Save macro</source>
       <translation>Salva macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7132" />
+      <location filename="../QScintilla/Editor.py" line="7140" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file  delle macro &lt;b&gt;{0}&lt;/b&gt; esiste già.Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7147" />
+      <location filename="../QScintilla/Editor.py" line="7155" />
       <source>Error saving macro</source>
       <translation>Errore nel salvataggio della macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7148" />
+      <location filename="../QScintilla/Editor.py" line="7156" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file macro &lt;b&gt;{0}&lt;/b&gt; non può essere scritto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7161" />
+      <location filename="../QScintilla/Editor.py" line="7169" />
       <source>Start Macro Recording</source>
       <translation>Avvia registrazione della macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7162" />
+      <location filename="../QScintilla/Editor.py" line="7170" />
       <source>Macro recording is already active. Start new?</source>
       <translation>Registrazione macro già attiva. Avvia nuovamente ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7188" />
+      <location filename="../QScintilla/Editor.py" line="7196" />
       <source>Macro Recording</source>
       <translation>Registrazione Macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7189" />
+      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation>Inserisci un nome per la macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7340" />
+      <location filename="../QScintilla/Editor.py" line="7348" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7346" />
+      <location filename="../QScintilla/Editor.py" line="7354" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation>&lt;br&gt;&lt;b&gt;Attenzione:&lt;/b&gt; con la riapertura le modifiche andranno perse.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7353" />
+      <location filename="../QScintilla/Editor.py" line="7361" />
       <source>File changed</source>
       <translation>File modificato</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7403" />
+      <location filename="../QScintilla/Editor.py" line="7411" />
       <source>{0} (ro)</source>
       <translation>{0} (ro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7708" />
+      <location filename="../QScintilla/Editor.py" line="7716" />
       <source>Drop Error</source>
       <translation>Errore Drop</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7709" />
+      <location filename="../QScintilla/Editor.py" line="7717" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; non è un file.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7729" />
+      <location filename="../QScintilla/Editor.py" line="7737" />
       <source>Resources</source>
       <translation>Risorse</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7739" />
       <source>Add file...</source>
       <translation>Aggiungi file...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7732" />
+      <location filename="../QScintilla/Editor.py" line="7740" />
       <source>Add files...</source>
       <translation>Aggiungi files...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7733" />
+      <location filename="../QScintilla/Editor.py" line="7741" />
       <source>Add aliased file...</source>
       <translation>Aggiungi file sinonimo...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7735" />
+      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation>Aggiungi una risorsa localizzata...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7738" />
+      <location filename="../QScintilla/Editor.py" line="7746" />
       <source>Add resource frame</source>
       <translation>Aggiungi riquadro delle risorse</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7765" />
       <source>Add file resource</source>
       <translation>Aggiungi un file risorse</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7771" />
+      <location filename="../QScintilla/Editor.py" line="7779" />
       <source>Add file resources</source>
       <translation>Aggiundi dei file risorse</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7795" />
-      <location filename="../QScintilla/Editor.py" line="7789" />
+      <location filename="../QScintilla/Editor.py" line="7803" />
+      <location filename="../QScintilla/Editor.py" line="7797" />
       <source>Add aliased file resource</source>
       <translation>Aggiungi file sinonimo delle risorse</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7796" />
+      <location filename="../QScintilla/Editor.py" line="7804" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation>Alias per il file &lt;b&gt;{0}&lt;/b&gt;:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7871" />
+      <location filename="../QScintilla/Editor.py" line="7879" />
       <source>Package Diagram</source>
       <translation>Diagrammi del package</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7872" />
+      <location filename="../QScintilla/Editor.py" line="7880" />
       <source>Include class attributes?</source>
       <translation>Includi gli attributi della classe ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7892" />
+      <location filename="../QScintilla/Editor.py" line="7900" />
       <source>Imports Diagram</source>
       <translation>Importa diagrammi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7893" />
+      <location filename="../QScintilla/Editor.py" line="7901" />
       <source>Include imports from external modules?</source>
       <translation>Includi gli import dai moduli esterni ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7912" />
+      <location filename="../QScintilla/Editor.py" line="7920" />
       <source>Application Diagram</source>
       <translation>Diagrammi dell'applicazione</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7913" />
+      <location filename="../QScintilla/Editor.py" line="7921" />
       <source>Include module names?</source>
       <translation>Includi i nomi dei moduli ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8268" />
+      <location filename="../QScintilla/Editor.py" line="8276" />
       <source>Add to dictionary</source>
       <translation>Aggiungi al dizionario</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8270" />
+      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation>Ignora tutto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8688" />
+      <location filename="../QScintilla/Editor.py" line="8696" />
       <source>Sort Lines</source>
       <translation>Righe ordinate</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8689" />
+      <location filename="../QScintilla/Editor.py" line="8697" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation>La selezione contiene dati non validi per un ordinamento numerico.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8782" />
+      <location filename="../QScintilla/Editor.py" line="8790" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8783" />
+      <location filename="../QScintilla/Editor.py" line="8791" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8879" />
+      <location filename="../QScintilla/Editor.py" line="8887" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8885" />
+      <location filename="../QScintilla/Editor.py" line="8893" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8953" />
+      <location filename="../QScintilla/Editor.py" line="8961" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8954" />
+      <location filename="../QScintilla/Editor.py" line="8962" />
       <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" />
     </message>
@@ -18230,12 +18230,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="222" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation type="unfinished">Caricamento Style Sheet</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="225" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Il file Qt Style Sheet &lt;b&gt;{0}&lt;/b&gt; non può essere letto. &lt;br&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
@@ -23171,7 +23171,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2719" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished" />
@@ -23234,370 +23234,370 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2277" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2319" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2340" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2341" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2405" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2387" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2388" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2434" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2423" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <source>List Bundle Heads</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
-      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2452" />
-      <source>List Bundle Heads</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2518" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished">Sottocomando Bisect ({0}) non valido.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2821" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
       <source>Git Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
       <source>Process Generation Error</source>
       <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2747" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2729" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
       <source>Create Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2748" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2765" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2784" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
-      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2810" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3154" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3040" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3041" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3176" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3233" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3264" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3311" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
       <source>Copy Changesets (Cancel)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3429" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3552" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3503" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
       <source>Select a stash (empty for latest stash):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3462" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
       <source>Restore Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3516" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3566" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3602" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3603" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3634" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished">Visualizzazione combinata della impostazioni di configurazione</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3743" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
       <source>Performing Repository Housekeeping</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3784" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
       <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3797" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3820" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
       <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3825" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3898" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4005" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4018" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
       <source>All</source>
       <translation type="unfinished">Tutti</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4022" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
       <source>Submodule Path</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4023" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4072" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4105" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4175" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4136" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4259" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -25927,83 +25927,83 @@
   <context>
     <name>GitProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="473" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="589" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="429" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="324" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="184" />
       <source>Version Control</source>
       <translation type="unfinished">Controllo di Versione</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="602" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="492" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="340" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="200" />
       <source>Commit changes to repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="609" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="496" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="499" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="347" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="207" />
       <source>Add/Stage to repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="614" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="504" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="352" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="212" />
       <source>Unstage changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="621" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="508" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="511" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="359" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="219" />
       <source>Remove from repository (and disk)</source>
       <translation type="unfinished">Rimuovi dal repository (e dal disco)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="365" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="225" />
       <source>Remove from repository only</source>
       <translation type="unfinished">Rimuovi solo dal repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="513" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="230" />
       <source>Copy</source>
       <translation type="unfinished">Copia</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="518" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="232" />
       <source>Move</source>
       <translation type="unfinished">Sposta</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="523" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="237" />
       <source>Show log browser</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="372" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="244" />
       <source>Show status</source>
       <translation type="unfinished">Mostra stato</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="635" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="534" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="537" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="251" />
       <source>Show differences</source>
@@ -26015,8 +26015,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="543" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="385" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="263" />
       <source>Show differences (extended)</source>
@@ -26043,71 +26043,71 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="648" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="547" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="550" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="392" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="289" />
       <source>Revert changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="656" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="441" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
-      <source>Select all local file entries</source>
-      <translation type="unfinished">Seleziona tutt i file locali</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="558" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="444" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
-      <source>Select all versioned file entries</source>
-      <translation type="unfinished">Seleziona tutti i file controllati</translation>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
+      <source>Select all local file entries</source>
+      <translation type="unfinished">Seleziona tutt i file locali</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="662" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="561" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="447" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
+      <source>Select all versioned file entries</source>
+      <translation type="unfinished">Seleziona tutti i file controllati</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="564" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="450" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="406" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="301" />
       <source>Select all local directory entries</source>
       <translation type="unfinished">Seleziona tutte le directory locali</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="666" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="454" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="305" />
       <source>Select all versioned directory entries</source>
       <translation type="unfinished">Seleziona tutte le directory controllate</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="414" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="309" />
       <source>Configure...</source>
       <translation type="unfinished">Configura...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="709" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="712" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="699" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation type="unfinished">Vuoi veramente rimuovere questi file dal repository ?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="842" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="843" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
@@ -30416,27 +30416,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="198" />
+      <location filename="../Globals/__init__.py" line="199" />
       <source>{0:4.2f} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="201" />
+      <location filename="../Globals/__init__.py" line="202" />
       <source>{0:4.2f} KiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="204" />
+      <location filename="../Globals/__init__.py" line="205" />
       <source>{0:4.2f} MiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="207" />
+      <location filename="../Globals/__init__.py" line="208" />
       <source>{0:4.2f} GiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="210" />
+      <location filename="../Globals/__init__.py" line="211" />
       <source>{0:4.2f} TiB</source>
       <translation type="unfinished" />
     </message>
@@ -36646,75 +36646,75 @@
       <translation>Estensioni</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="692" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="579" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="535" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="431" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="289" />
       <source>Version Control</source>
       <translation>Controllo di Versione</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="595" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="598" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="305" />
       <source>Commit changes to repository...</source>
       <translation>Committa le modifica nel repository...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="606" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="455" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="313" />
       <source>Add to repository</source>
       <translation>Aggiungi al repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="722" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="725" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="461" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="319" />
       <source>Remove from repository (and disk)</source>
       <translation>Rimuovi dal repository (e dal disco)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="986" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="973" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="989" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="976" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="467" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="325" />
       <source>Remove from repository only</source>
       <translation>Rimuovi solo dal repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="614" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="617" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="330" />
       <source>Copy</source>
       <translation>Copia</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="619" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="332" />
       <source>Move</source>
       <translation>Sposta</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="621" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="624" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="337" />
       <source>Show log browser</source>
       <translation>Mostra il browser dei log</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="729" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="732" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="474" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="344" />
       <source>Show status</source>
       <translation>Mostra stato</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="736" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="739" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="481" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="351" />
       <source>Show differences</source>
@@ -36726,8 +36726,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="644" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="487" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="363" />
       <source>Show differences (extended)</source>
@@ -36754,95 +36754,95 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="749" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="752" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="494" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="389" />
       <source>Revert changes</source>
       <translation>Annulla modifiche</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="753" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="756" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="655" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="498" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="393" />
       <source>Conflicts resolved</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="755" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="654" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="657" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="500" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="395" />
       <source>Conflicts unresolved</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="757" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="656" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="760" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="502" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="397" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="660" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="547" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
-      <source>Select all local file entries</source>
-      <translation>Seleziona tutt i file locali</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="764" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="663" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="550" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
-      <source>Select all versioned file entries</source>
-      <translation>Seleziona tutti i file controllati</translation>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
+      <source>Select all local file entries</source>
+      <translation>Seleziona tutt i file locali</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="767" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="553" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
+      <source>Select all versioned file entries</source>
+      <translation>Seleziona tutti i file controllati</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="556" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="407" />
       <source>Select all local directory entries</source>
       <translation>Seleziona tutte le directory locali</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="560" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="411" />
       <source>Select all versioned directory entries</source>
       <translation>Seleziona tutte le directory controllate</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="775" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="674" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="561" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="778" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="677" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="564" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="520" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="415" />
       <source>Configure...</source>
       <translation type="unfinished">Configura...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="890" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="893" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="891" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="894" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="987" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="990" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="977" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation>Vuoi veramente rimuovere questi file dal repository ?</translation>
     </message>
@@ -51075,43 +51075,43 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="594" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="592" />
       <source>Clear</source>
       <translation type="unfinished">Pulisci</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="599" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="597" />
       <source>Copy</source>
       <translation type="unfinished">Copia</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="603" />
       <source>Paste</source>
       <translation type="unfinished">Incolla</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="612" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="610" />
       <source>Select All</source>
       <translation type="unfinished">Seleziona tutti</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="638" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="636" />
       <source>Press to disconnect the current device</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="643" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="641" />
       <source>Press to connect the selected device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="675" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="673" />
       <source>No device attached</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="674" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -51120,90 +51120,90 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="705" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="703" />
       <source>Start REPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="706" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="704" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1234" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1223" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1224" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1235" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1233" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1293" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1284" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1282" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
       <source>Run Script</source>
       <translation type="unfinished">Esegui Script</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1276" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
       <source>There is no editor open. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1285" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1283" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1292" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
       <source>Start Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1329" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1346" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1344" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1363" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1361" />
       <source>Unsaved Chart Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1364" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1362" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1412" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1410" />
       <source>Start File Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1413" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1411" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1433" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1431" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
@@ -51228,7 +51228,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1735" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1554" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
@@ -51254,207 +51254,213 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2138" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1578" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1570" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2150" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2183" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2180" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1574" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1955" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1580" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1959" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1979" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1970" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1983" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1974" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1588" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1609" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
-      <source>Show Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
-      <source>Convert To UF2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1616" />
-      <source>Flash UF2 Device</source>
+      <source>Show Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1619" />
+      <source>Convert To UF2</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1620" />
+      <source>Flash UF2 Device</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1623" />
       <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1622" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1626" />
       <source>Ignored Serial Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1625" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1629" />
       <source>Configure</source>
       <translation type="unfinished">Configura</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1634" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1638" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1649" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1645" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1641" />
       <source>Device Version Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1646" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1650" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1670" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1674" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1666" />
       <source>unknown</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1680" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1683" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1696" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1687" />
       <source>Device Implementation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1688" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1693" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1697" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1736" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1754" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1758" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1762" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1766" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1782" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1794" />
       <source>Local Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1795" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1832" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1815" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1836" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1819" />
       <source>Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1816" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1820" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1837" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1857" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1861" />
       <source>Error handling device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1858" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1862" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1900" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1904" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1926" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1930" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished">File Python (*.py);;Tutti i File (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1940" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1945" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1949" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1971" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1975" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2063" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2067" />
       <source>Add Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2068" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2113" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2117" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2151" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2169" />
+      <source>Package '{0}' was installed successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2184" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -51507,198 +51513,198 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="108" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="110" />
       <source>BBC micro:bit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="111" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="113" />
       <source>Calliope mini</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="208" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="210" />
       <source>BBC micro:bit/Calliope Functions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="421" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="409" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="392" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="211" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="411" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="213" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="215" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="217" />
       <source>Flash MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="218" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="220" />
       <source>Flash Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="496" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="222" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="498" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="224" />
       <source>Save Script as 'main.py'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="225" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="227" />
       <source>Save the current script as 'main.py' on the connected device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="229" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="231" />
       <source>Reset {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="375" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="366" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="352" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="335" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="322" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="302" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="377" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="354" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="337" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="324" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="304" />
       <source>Flash MicroPython/Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="303" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="305" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed and plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;See the &lt;a href="https://microbit.org/guide/firmware/"&gt;micro:bit web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="323" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="325" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MICROBIT is available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="336" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="338" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed an plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="353" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="355" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MINI is available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="370" />
       <source>MicroPython/Firmware Files (*.hex *.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="376" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="378" />
       <source>There are multiple devices ready for flashing. Please make sure, that only one device is prepared.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="395" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="410" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="412" />
       <source>&lt;p&gt;The BBC micro:bit generation cannot be determined. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="424" />
       <source>&lt;p&gt;The firmware URL for the device type &lt;b&gt;{0}&lt;/b&gt; is not known. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="452" />
       <source>unknown</source>
       <translation type="unfinished">sconosciuto</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="466" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="468" />
       <source>Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="469" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="471" />
       <source>&lt;h4&gt;{0} Version Information&lt;br/&gt;(BBC micro:bit v{1})&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="478" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="480" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="484" />
       <source>{0} Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="502" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="504" />
       <source>The current editor does not contain a Python script. Write it anyway?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="513" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="515" />
       <source>The script is empty. Aborting.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="567" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="569" />
       <source>MicroPython Firmware for BBC micro:bit V1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="599" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="586" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="571" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="601" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="588" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="573" />
       <source>DAPLink Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="578" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="580" />
       <source>MicroPython Firmware for BBC micro:bit V2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="582" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="584" />
       <source>CircuitPython Firmware for BBC micro:bit V2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="595" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="597" />
       <source>MicroPython Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="818" />
-      <source>Active</source>
-      <translation type="unfinished">Attivo</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="819" />
-      <source>Name</source>
-      <translation type="unfinished">Nome</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="820" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
+      <source>Active</source>
+      <translation type="unfinished">Attivo</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="821" />
+      <source>Name</source>
+      <translation type="unfinished">Nome</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="822" />
-      <source>Address Type</source>
+      <source>MAC-Address</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="824" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="826" />
       <source>Connected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="825" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="827" />
       <source>Advertising</source>
       <translation type="unfinished" />
     </message>
@@ -51796,720 +51802,740 @@
   <context>
     <name>MiniEditor</name>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="459" />
+      <location filename="../QScintilla/MiniEditor.py" line="460" />
       <source>About eric Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="461" />
       <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don't need the power of a full blown editor.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="529" />
+      <location filename="../QScintilla/MiniEditor.py" line="530" />
       <source>Line: {0:5}</source>
       <translation>Linea: {0:5}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="533" />
+      <location filename="../QScintilla/MiniEditor.py" line="534" />
       <source>Pos: {0:5}</source>
       <translation>Pos: {0:5}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="547" />
+      <location filename="../QScintilla/MiniEditor.py" line="548" />
       <source>Language: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="610" />
       <source>New</source>
       <translation>Nuovo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="611" />
-      <source>&amp;New</source>
-      <translation>&amp;Nuova</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="612" />
+      <source>&amp;New</source>
+      <translation>&amp;Nuova</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="613" />
       <source>Ctrl+N</source>
       <comment>File|New</comment>
       <translation>Ctrl+N</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="617" />
+      <location filename="../QScintilla/MiniEditor.py" line="618" />
       <source>Open an empty editor window</source>
       <translation>Apri una finestra vuota</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="619" />
+      <location filename="../QScintilla/MiniEditor.py" line="620" />
       <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="625" />
+      <location filename="../QScintilla/MiniEditor.py" line="626" />
       <source>Open</source>
       <translation>Apri</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="627" />
-      <source>&amp;Open...</source>
-      <translation>&amp;Apri...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="628" />
+      <source>&amp;Open...</source>
+      <translation>&amp;Apri...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="629" />
       <source>Ctrl+O</source>
       <comment>File|Open</comment>
       <translation>Ctrl+O</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="633" />
+      <location filename="../QScintilla/MiniEditor.py" line="634" />
       <source>Open a file</source>
       <translation>Apri un file</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="635" />
+      <location filename="../QScintilla/MiniEditor.py" line="636" />
       <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="644" />
+      <location filename="../QScintilla/MiniEditor.py" line="645" />
       <source>Save</source>
       <translation>Salva</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="646" />
-      <source>&amp;Save</source>
-      <translation>&amp;Salva</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="647" />
+      <source>&amp;Save</source>
+      <translation>&amp;Salva</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="648" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation>Ctrl+S</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="652" />
+      <location filename="../QScintilla/MiniEditor.py" line="653" />
       <source>Save the current file</source>
       <translation>Salva il file corrente</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="654" />
+      <location filename="../QScintilla/MiniEditor.py" line="655" />
       <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="663" />
+      <location filename="../QScintilla/MiniEditor.py" line="664" />
       <source>Save as</source>
       <translation>Salva come</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="665" />
-      <source>Save &amp;as...</source>
-      <translation>S&amp;alva come...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="666" />
+      <source>Save &amp;as...</source>
+      <translation>S&amp;alva come...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="667" />
       <source>Shift+Ctrl+S</source>
       <comment>File|Save As</comment>
       <translation>Ctrl+Shift+S</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="671" />
+      <location filename="../QScintilla/MiniEditor.py" line="672" />
       <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="673" />
+      <location filename="../QScintilla/MiniEditor.py" line="674" />
       <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="683" />
+      <location filename="../QScintilla/MiniEditor.py" line="684" />
       <source>Save Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="686" />
       <source>Save &amp;Copy...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="691" />
+      <location filename="../QScintilla/MiniEditor.py" line="692" />
       <source>Save a copy of the current file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="693" />
+      <location filename="../QScintilla/MiniEditor.py" line="694" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="703" />
+      <location filename="../QScintilla/MiniEditor.py" line="704" />
       <source>Close</source>
       <translation>Chiudi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="705" />
-      <source>&amp;Close</source>
-      <translation>&amp;Chiudi</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="706" />
+      <source>&amp;Close</source>
+      <translation>&amp;Chiudi</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="707" />
       <source>Ctrl+W</source>
       <comment>File|Close</comment>
       <translation>Ctrl+W</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="711" />
+      <location filename="../QScintilla/MiniEditor.py" line="712" />
       <source>Close the editor window</source>
       <translation>Chiudi la finestra dell'editor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="713" />
+      <location filename="../QScintilla/MiniEditor.py" line="714" />
       <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="719" />
+      <location filename="../QScintilla/MiniEditor.py" line="720" />
       <source>Print</source>
       <translation>Stampa</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="721" />
-      <source>&amp;Print</source>
-      <translation>Stam&amp;pa</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="722" />
+      <source>&amp;Print</source>
+      <translation>Stam&amp;pa</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="723" />
       <source>Ctrl+P</source>
       <comment>File|Print</comment>
       <translation>Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="727" />
+      <location filename="../QScintilla/MiniEditor.py" line="728" />
       <source>Print the current file</source>
       <translation>Stampa il file corrente</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="729" />
+      <location filename="../QScintilla/MiniEditor.py" line="730" />
       <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="738" />
+      <location filename="../QScintilla/MiniEditor.py" line="739" />
       <source>Print Preview</source>
       <translation>Anteprima Stampa</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="747" />
       <source>Print preview of the current file</source>
       <translation>Antreprima del file corrente</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="748" />
+      <location filename="../QScintilla/MiniEditor.py" line="749" />
       <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="761" />
+      <location filename="../QScintilla/MiniEditor.py" line="762" />
       <source>Undo</source>
       <translation>Undo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="763" />
-      <source>&amp;Undo</source>
-      <translation>&amp;Undo</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="764" />
+      <source>&amp;Undo</source>
+      <translation>&amp;Undo</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="765" />
       <source>Ctrl+Z</source>
       <comment>Edit|Undo</comment>
       <translation>Ctrl+Z</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="765" />
+      <location filename="../QScintilla/MiniEditor.py" line="766" />
       <source>Alt+Backspace</source>
       <comment>Edit|Undo</comment>
       <translation>Alt+Backspace</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="769" />
+      <location filename="../QScintilla/MiniEditor.py" line="770" />
       <source>Undo the last change</source>
       <translation>Annulla l'ultima modifica</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="771" />
+      <location filename="../QScintilla/MiniEditor.py" line="772" />
       <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'ultima modifica nell'editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="780" />
+      <location filename="../QScintilla/MiniEditor.py" line="781" />
       <source>Redo</source>
       <translation>Rifai</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="782" />
-      <source>&amp;Redo</source>
-      <translation>&amp;Rifai</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="783" />
+      <source>&amp;Redo</source>
+      <translation>&amp;Rifai</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="784" />
       <source>Ctrl+Shift+Z</source>
       <comment>Edit|Redo</comment>
       <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="788" />
+      <location filename="../QScintilla/MiniEditor.py" line="789" />
       <source>Redo the last change</source>
       <translation>Rifai ultima modifica</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="790" />
+      <location filename="../QScintilla/MiniEditor.py" line="791" />
       <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'ultima modifica nell'editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="799" />
+      <location filename="../QScintilla/MiniEditor.py" line="800" />
       <source>Cut</source>
       <translation>Taglia</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="801" />
-      <source>Cu&amp;t</source>
-      <translation>&amp;Taglia</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="802" />
+      <source>Cu&amp;t</source>
+      <translation>&amp;Taglia</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="803" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation>Ctrl+X</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="803" />
+      <location filename="../QScintilla/MiniEditor.py" line="804" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation>Shift+Del</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="807" />
+      <location filename="../QScintilla/MiniEditor.py" line="808" />
       <source>Cut the selection</source>
       <translation>Taglia la selezione</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="809" />
+      <location filename="../QScintilla/MiniEditor.py" line="810" />
       <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'editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="819" />
+      <location filename="../QScintilla/MiniEditor.py" line="820" />
       <source>Copy</source>
       <translation>Copia</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="821" />
-      <source>&amp;Copy</source>
-      <translation>&amp;Copia</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="822" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
-      <translation>Ctrl+C</translation>
+      <source>&amp;Copy</source>
+      <translation>&amp;Copia</translation>
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="823" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation>Ctrl+C</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="824" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+Ins</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="827" />
+      <location filename="../QScintilla/MiniEditor.py" line="828" />
       <source>Copy the selection</source>
       <translation>Copia la selezione</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="829" />
+      <location filename="../QScintilla/MiniEditor.py" line="830" />
       <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'editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="839" />
+      <location filename="../QScintilla/MiniEditor.py" line="840" />
       <source>Paste</source>
       <translation>Incolla</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="841" />
-      <source>&amp;Paste</source>
-      <translation>&amp;Incolla</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="842" />
+      <source>&amp;Paste</source>
+      <translation>&amp;Incolla</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="843" />
       <source>Ctrl+V</source>
       <comment>Edit|Paste</comment>
       <translation>Ctrl+V</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="843" />
+      <location filename="../QScintilla/MiniEditor.py" line="844" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation>Shift+Ins</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="847" />
+      <location filename="../QScintilla/MiniEditor.py" line="848" />
       <source>Paste the last cut/copied text</source>
       <translation>Incolla l'ultimo testo tagliato/copiato</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="849" />
+      <location filename="../QScintilla/MiniEditor.py" line="850" />
       <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'ultimo testo tagliato/copiato nell'editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="859" />
+      <location filename="../QScintilla/MiniEditor.py" line="860" />
       <source>Clear</source>
       <translation>Pulisci</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="861" />
-      <source>Cl&amp;ear</source>
-      <translation>Pu&amp;lisci</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="862" />
+      <source>Cl&amp;ear</source>
+      <translation>Pu&amp;lisci</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="863" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation>Alt+Shift+C</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="867" />
+      <location filename="../QScintilla/MiniEditor.py" line="868" />
       <source>Clear all text</source>
       <translation>Pulisci tutto il testo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="869" />
+      <location filename="../QScintilla/MiniEditor.py" line="870" />
       <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'editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>About</source>
       <translation>About</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>&amp;About</source>
       <translation>&amp;About</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2863" />
+      <location filename="../QScintilla/MiniEditor.py" line="2864" />
       <source>Display information about this software</source>
       <translation>Mostra informazioni su questo software</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2865" />
+      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <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="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About Qt</source>
       <translation>About Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About &amp;Qt</source>
       <translation>About &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2877" />
+      <location filename="../QScintilla/MiniEditor.py" line="2878" />
       <source>Display information about the Qt toolkit</source>
       <translation>Mostra le informazioni sulle librerie Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2880" />
+      <location filename="../QScintilla/MiniEditor.py" line="2881" />
       <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="2889" />
+      <location filename="../QScintilla/MiniEditor.py" line="2890" />
       <source>What's This?</source>
       <translation>Cos'è questo ?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2891" />
-      <source>&amp;What's This?</source>
-      <translation>C&amp;os'è Questo ?</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <source>&amp;What's This?</source>
+      <translation>C&amp;os'è Questo ?</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2893" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2897" />
+      <location filename="../QScintilla/MiniEditor.py" line="2898" />
       <source>Context sensitive help</source>
       <translation>Help sensibile al contesto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2899" />
+      <location filename="../QScintilla/MiniEditor.py" line="2900" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What'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'è qusto, il cursore del mouse mostra una finesta con un punto interrogativo, e puoi clickare sugli elementi dell'interfaccia per avere una breve descrizione di cosa fanno e come usarli. Nei dialoghi questa funzionalità può essere utilizzata usando il pulsante per l'help sensibile al contesto della barra del titolo.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2918" />
       <source>Preferences</source>
       <translation type="unfinished">Preferenze</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2920" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished">&amp;Preferenze...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2925" />
+      <location filename="../QScintilla/MiniEditor.py" line="2926" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished">Imposta la configurazione preferita</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2927" />
+      <location filename="../QScintilla/MiniEditor.py" line="2928" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Preferenze&lt;/b&gt;&lt;p&gt;Imposta i valori di configurazione dell'applicazione ai valori preferiti&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2941" />
+      <location filename="../QScintilla/MiniEditor.py" line="2942" />
       <source>&amp;File</source>
       <translation>&amp;File</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2953" />
+      <location filename="../QScintilla/MiniEditor.py" line="2954" />
       <source>&amp;Edit</source>
       <translation>&amp;Edita</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2963" />
+      <location filename="../QScintilla/MiniEditor.py" line="2964" />
       <source>&amp;Search</source>
       <translation type="unfinished">&amp;Ricerca</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2974" />
       <source>&amp;View</source>
       <translation type="unfinished">&amp;Visualizza</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2979" />
+      <location filename="../QScintilla/MiniEditor.py" line="2980" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished">Impos&amp;tazioni</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2985" />
       <source>&amp;Help</source>
       <translation>&amp;Help</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2996" />
+      <location filename="../QScintilla/MiniEditor.py" line="2997" />
       <source>File</source>
       <translation>File</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3008" />
+      <location filename="../QScintilla/MiniEditor.py" line="3009" />
       <source>Edit</source>
       <translation>Modifica</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3017" />
+      <location filename="../QScintilla/MiniEditor.py" line="3018" />
       <source>Search</source>
       <translation type="unfinished">Ricerca</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3023" />
+      <location filename="../QScintilla/MiniEditor.py" line="3024" />
       <source>View</source>
       <translation type="unfinished">Visualizza</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3029" />
+      <location filename="../QScintilla/MiniEditor.py" line="3030" />
       <source>Settings</source>
       <translation type="unfinished">Impostazioni</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3032" />
+      <location filename="../QScintilla/MiniEditor.py" line="3033" />
       <source>Help</source>
       <translation>Aiuto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3045" />
+      <location filename="../QScintilla/MiniEditor.py" line="3046" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3055" />
+      <location filename="../QScintilla/MiniEditor.py" line="3056" />
       <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="3064" />
+      <location filename="../QScintilla/MiniEditor.py" line="3065" />
       <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="3073" />
+      <location filename="../QScintilla/MiniEditor.py" line="3074" />
       <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="3087" />
+      <location filename="../QScintilla/MiniEditor.py" line="3088" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3094" />
+      <location filename="../QScintilla/MiniEditor.py" line="3095" />
       <source>Ready</source>
       <translation>Pronto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3169" />
-      <source>eric Mini Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <source>eric Mini Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3171" />
       <source>The document has unsaved changes.</source>
       <translation>Il documento ha delle modifiche non salvate.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3197" />
-      <source>Open File</source>
-      <translation>Apri File</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <source>Open File</source>
+      <translation>Apri File</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3199" />
       <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="3226" />
+      <location filename="../QScintilla/MiniEditor.py" line="3227" />
       <source>File loaded</source>
       <translation>File caricato</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3307" />
-      <source>Save File</source>
-      <translation>Salva file</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <source>Save File</source>
+      <translation>Salva file</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3309" />
       <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="3314" />
+      <location filename="../QScintilla/MiniEditor.py" line="3315" />
       <source>File saved</source>
       <translation>File salvato</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>[*] - {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>Mini Editor</source>
       <translation>Mini Editor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3683" />
-      <location filename="../QScintilla/MiniEditor.py" line="3654" />
-      <location filename="../QScintilla/MiniEditor.py" line="3338" />
+      <location filename="../QScintilla/MiniEditor.py" line="3684" />
+      <location filename="../QScintilla/MiniEditor.py" line="3655" />
+      <location filename="../QScintilla/MiniEditor.py" line="3339" />
       <source>Untitled</source>
       <translation>Senza titolo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
       <source>{0}[*] - {1}</source>
       <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3649" />
+      <location filename="../QScintilla/MiniEditor.py" line="3650" />
       <source>Printing...</source>
       <translation>In stampa...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3665" />
+      <location filename="../QScintilla/MiniEditor.py" line="3666" />
       <source>Printing completed</source>
       <translation>Stampa completata</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3667" />
+      <location filename="../QScintilla/MiniEditor.py" line="3668" />
       <source>Error while printing</source>
       <translation>Errore durante la stampa</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3670" />
+      <location filename="../QScintilla/MiniEditor.py" line="3671" />
       <source>Printing aborted</source>
       <translation>Stampa interrota</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3724" />
-      <source>Select all</source>
-      <translation>Seleziona tutti</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <source>Select all</source>
+      <translation>Seleziona tutti</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3726" />
       <source>Deselect all</source>
       <translation>Deseleziona tutti</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3738" />
+      <location filename="../QScintilla/MiniEditor.py" line="3739" />
       <source>Languages</source>
       <translation>Linguaggi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3741" />
+      <location filename="../QScintilla/MiniEditor.py" line="3742" />
       <source>No Language</source>
       <translation>Nessun linguaggio</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3763" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Guessed</source>
       <translation>Indovinato</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3785" />
-      <location filename="../QScintilla/MiniEditor.py" line="3767" />
+      <location filename="../QScintilla/MiniEditor.py" line="3786" />
+      <location filename="../QScintilla/MiniEditor.py" line="3768" />
       <source>Alternatives</source>
       <translation>Alternativo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3783" />
       <source>Alternatives ({0})</source>
       <translation>Alternative ({0})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3813" />
-      <source>Pygments Lexer</source>
-      <translation>Analizzatore lessicale Pygments</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <source>Pygments Lexer</source>
+      <translation>Analizzatore lessicale Pygments</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3815" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>Selezione l'analizzatore lessicale di Pygments da applicare.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4326" />
+      <location filename="../QScintilla/MiniEditor.py" line="4336" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4327" />
+      <location filename="../QScintilla/MiniEditor.py" line="4337" />
       <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" />
     </message>
   </context>
   <context>
+    <name>MipLocalInstaller</name>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="185" />
+      <source>Unable to find 'lib' in sys.path. Please enter a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="229" />
+      <source>
+
+Package may be partially installed.</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>MipPackageDialog</name>
     <message>
+      <location filename="../MicroPython/MipPackageDialog.py" line="34" />
+      <source>Enter the URL of the package index. Leave empty to use the default index ({0}).</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
       <source>Install Package</source>
       <translation type="unfinished" />
@@ -52544,6 +52570,21 @@
       <source>Install .mpy File</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Target Directory:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Enter the directory to install to (must be contained in sys.path). Leave empty to detect automatically.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Package Index:</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>MiscellaneousChecker</name>
@@ -53203,194 +53244,194 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="603" />
-      <location filename="../MultiProject/MultiProject.py" line="593" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="591" />
       <source>Multi Project Files (*.emj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="599" />
       <source>Save Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="617" />
+      <location filename="../MultiProject/MultiProject.py" line="615" />
       <source>Save File</source>
       <translation>Salva file</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="618" />
+      <location filename="../MultiProject/MultiProject.py" line="616" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="644" />
+      <location filename="../MultiProject/MultiProject.py" line="642" />
       <source>Close Multiproject</source>
       <translation>Chiudi Multiprogetto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="645" />
+      <location filename="../MultiProject/MultiProject.py" line="643" />
       <source>The current multiproject has unsaved changes.</source>
       <translation>Il multiprogetto corrente ha delle modifiche non salvata.</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="696" />
+      <source>New multiproject</source>
+      <translation>Nuovo multiprogetto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="698" />
-      <source>New multiproject</source>
-      <translation>Nuovo multiprogetto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>&amp;New...</source>
       <translation>&amp;Nuovo...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="704" />
+      <source>Generate a new multiproject</source>
+      <translation>Genera un nuovo multiprogetto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="706" />
-      <source>Generate a new multiproject</source>
-      <translation>Genera un nuovo multiprogetto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Nuovo...&lt;/b&gt;&lt;p&gt;Apre un dialogo per l'inserimento delle informazioni per un nuovo multiprogetto.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="716" />
+      <source>Open multiproject</source>
+      <translation>Apri multiprogetto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="718" />
-      <source>Open multiproject</source>
-      <translation>Apri multiprogetto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="720" />
       <source>&amp;Open...</source>
       <translation>&amp;Apri...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="724" />
+      <source>Open an existing multiproject</source>
+      <translation>Apri un multiprogetto esistente</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="726" />
-      <source>Open an existing multiproject</source>
-      <translation>Apri un multiprogetto esistente</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="728" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Apri...&lt;/b&gt;&lt;p&gt;Apre un multiprogetto esistente.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="732" />
+      <source>Close multiproject</source>
+      <translation>Chiudi multiprogetto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="734" />
-      <source>Close multiproject</source>
-      <translation>Chiudi multiprogetto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&amp;Close</source>
       <translation>&amp;Chiudi</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="740" />
+      <source>Close the current multiproject</source>
+      <translation>Chiudi il multiprogetto corrente</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="742" />
-      <source>Close the current multiproject</source>
-      <translation>Chiudi il multiprogetto corrente</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Chiudi&lt;/b&gt;&lt;p&gt;Chiude l'attuale multiprogetto.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="748" />
+      <source>Save multiproject</source>
+      <translation>Salva multiprogetto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="750" />
-      <source>Save multiproject</source>
-      <translation>Salva multiprogetto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="752" />
       <source>&amp;Save</source>
       <translation>&amp;Salva</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="756" />
+      <source>Save the current multiproject</source>
+      <translation>Salva il multiprogetto corrente</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="758" />
-      <source>Save the current multiproject</source>
-      <translation>Salva il multiprogetto corrente</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="760" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Salva&lt;/b&gt;&lt;p&gt;Salva l'attuale multiprogetto.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <source>Save multiproject as</source>
+      <translation>Salva multiprogetto come</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="766" />
-      <source>Save multiproject as</source>
-      <translation>Salva multiprogetto come</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="768" />
       <source>Save &amp;as...</source>
       <translation>S&amp;alva come...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="775" />
+      <location filename="../MultiProject/MultiProject.py" line="773" />
       <source>Save the current multiproject to a new file</source>
       <translation>Salva il multiprogetto attuale come un nuovo file</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="778" />
+      <location filename="../MultiProject/MultiProject.py" line="776" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Salva as &lt;/b&gt;&lt;p&gt;Salva l'attuale multiprogetto come nuovo.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="785" />
+      <source>Add project to multiproject</source>
+      <translation>Aggiungi un progetto al multiprogetto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="787" />
-      <source>Add project to multiproject</source>
-      <translation>Aggiungi un progetto al multiprogetto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="789" />
       <source>Add &amp;project...</source>
       <translation>Aggiungi &amp;progetto...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="796" />
+      <location filename="../MultiProject/MultiProject.py" line="794" />
       <source>Add a project to the current multiproject</source>
       <translation>Aggiunti un progetto al multiprogetto corrente</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="799" />
+      <location filename="../MultiProject/MultiProject.py" line="797" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aggiungi progetto...&lt;/b&gt;&lt;p&gt;Apre un dialogo per aggiungere un progetto al corrente multiprogetto.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="807" />
+      <source>Multiproject properties</source>
+      <translation>Proprietà multiprogetto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="809" />
-      <source>Multiproject properties</source>
-      <translation>Proprietà multiprogetto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="811" />
       <source>&amp;Properties...</source>
       <translation>&amp;Proprietà...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="815" />
+      <source>Show the multiproject properties</source>
+      <translation>Mostra le proprietà del multiprogetto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="817" />
-      <source>Show the multiproject properties</source>
-      <translation>Mostra le proprietà del multiprogetto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Proprietà...&lt;/b&gt;&lt;p&gt;Mosta un dialogo per modificare le proprietà di un multiprogetto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="840" />
+      <location filename="../MultiProject/MultiProject.py" line="838" />
       <source>&amp;Multiproject</source>
       <translation>&amp;Multiprogetto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="841" />
+      <location filename="../MultiProject/MultiProject.py" line="839" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation>Apri un multiprogetto &amp;recente</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="880" />
       <location filename="../MultiProject/MultiProject.py" line="878" />
+      <location filename="../MultiProject/MultiProject.py" line="876" />
       <source>Multiproject</source>
       <translation>Multiprogetto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="935" />
+      <location filename="../MultiProject/MultiProject.py" line="933" />
       <source>&amp;Clear</source>
       <translation>Pulis&amp;ci</translation>
     </message>
@@ -69673,7 +69714,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="417" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="415" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -69684,7 +69725,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="381" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="379" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="367" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="349" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="239" />
@@ -69722,42 +69763,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="380" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="378" />
       <source>'st-flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="400" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="398" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="401" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="399" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="416" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="444" />
       <source>unknown</source>
       <translation type="unfinished">sconosciuto</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="460" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="462" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -70211,49 +70252,49 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="155" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="154" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="151" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="150" />
       <source>Find Next</source>
       <translation>Trova successivo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="168" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="167" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="164" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="163" />
       <source>Find Prev</source>
       <translation>Trova prec</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="181" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="180" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="177" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="176" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="197" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="196" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="191" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="190" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="211" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="210" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="205" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="204" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1048" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1045" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="597" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="559" />
       <source>'{0}' was not found.</source>
       <translation>'{0}' non è stato trovato.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1201" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1198" />
       <source>Replaced {0} occurrences.</source>
       <translation>Sostituite {0} ricorrenze.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1207" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1204" />
       <source>Nothing replaced because '{0}' was not found.</source>
       <translation>Nessuna sostituzione perché '{0}' non è stato trovato.</translation>
     </message>
@@ -78023,50 +78064,50 @@
   <context>
     <name>SvnProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="734" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="591" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="594" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="547" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="394" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="593" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="546" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="596" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="549" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="399" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="210" />
       <source>Version Control</source>
       <translation>Controllo di Versione</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="750" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="607" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="753" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="610" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="224" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="758" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="761" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="415" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="226" />
       <source>Update from repository</source>
       <translation>Aggiorna da repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="756" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="616" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="416" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="230" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="764" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="615" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="767" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="618" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="421" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="232" />
       <source>Commit changes to repository...</source>
       <translation>Consolida le modifica nel repository...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="763" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="620" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="623" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="423" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="237" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="622" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="625" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="428" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="239" />
       <source>Add to repository</source>
@@ -78081,90 +78122,90 @@
       <translation>Aggiungi albero al repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="769" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="626" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="772" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="629" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="436" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="250" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="441" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="252" />
       <source>Remove from repository (and disk)</source>
       <translation>Rimuovi dal repository (e dal disco)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="634" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="255" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="257" />
       <source>Copy</source>
       <translation type="unfinished">Copia</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="257" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="259" />
       <source>Move</source>
       <translation type="unfinished">Sposta</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="776" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="779" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="641" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="443" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="262" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="784" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="787" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="643" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="448" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="264" />
       <source>Add to Changelist</source>
       <translation>Aggiungi alla Changelist</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="780" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="783" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="645" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="266" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="788" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="647" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="452" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="268" />
       <source>Remove from Changelist</source>
       <translation>Rimuovi dalla Changelist</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="272" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="650" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="653" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="274" />
       <source>Show log browser</source>
       <translation>Mostra il browser dei log</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="786" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="655" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="658" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="453" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="279" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="794" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="660" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="281" />
       <source>Show status</source>
       <translation>Mostra stato</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="663" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="287" />
       <source>Show repository info</source>
       <translation>Mostra informazioni del repository</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="793" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="662" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="665" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="801" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="670" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="673" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="465" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="294" />
       <source>Show differences</source>
@@ -78177,12 +78218,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="799" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="802" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="671" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="466" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="298" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="807" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="810" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="679" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="471" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="306" />
       <source>Show differences (extended)</source>
@@ -78195,12 +78236,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="805" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="472" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="310" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="813" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="685" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="477" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="318" />
       <source>Show differences (URLs)</source>
@@ -78213,34 +78254,34 @@
       <translation>Mostra file appuntati</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="812" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="681" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="815" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="684" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="479" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="319" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="820" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="689" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="823" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="692" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="484" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="327" />
       <source>Revert changes</source>
       <translation>Annulla modifiche</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="818" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="690" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="826" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="829" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="333" />
       <source>Merge changes</source>
       <translation>Fondi modifiche</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="822" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="691" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="483" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="329" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="830" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="699" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="488" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="337" />
       <source>Conflicts resolved</source>
@@ -78279,106 +78320,106 @@
       <translation>Ruba lock</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="828" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="697" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="510" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="356" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="836" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="361" />
       <source>Set Property</source>
       <translation>Imposta proprietà</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="827" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="830" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="699" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="358" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="835" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="838" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="707" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="363" />
       <source>List Properties</source>
       <translation>Elenca proprietà</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="829" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="698" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="832" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="701" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="360" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="837" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="709" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="365" />
       <source>Delete Property</source>
       <translation>Cancella proprietà</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="559" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="841" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="710" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="561" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
-      <source>Select all local file entries</source>
-      <translation>Seleziona tutt i file locali</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="836" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="562" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="844" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="713" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
-      <source>Select all versioned file entries</source>
-      <translation>Seleziona tutti i file controllati</translation>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
+      <source>Select all local file entries</source>
+      <translation>Seleziona tutt i file locali</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="839" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="708" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="847" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="716" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="567" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
+      <source>Select all versioned file entries</source>
+      <translation>Seleziona tutti i file controllati</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="842" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="570" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="526" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="375" />
       <source>Select all local directory entries</source>
       <translation>Seleziona tutte le directory locali</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="843" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="712" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="846" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="715" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="572" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="528" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="374" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="851" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="720" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="571" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="854" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="723" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="574" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="379" />
       <source>Select all versioned directory entries</source>
       <translation>Seleziona tutte le directory controllate</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="847" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="576" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="532" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="378" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="855" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="724" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="575" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="858" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="727" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="578" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="534" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="383" />
       <source>Configure...</source>
@@ -90950,8 +90991,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
+      <location filename="../QScintilla/MiniEditor.py" line="1685" />
       <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/MiniEditor.py" line="1683" />
       <location filename="../QScintilla/ShellWindow.py" line="435" />
       <location filename="../QScintilla/ShellWindow.py" line="434" />
       <source>Delete current line</source>
@@ -90959,7 +91000,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
+      <location filename="../QScintilla/MiniEditor.py" line="1686" />
       <location filename="../QScintilla/ShellWindow.py" line="436" />
       <source>Ctrl+Shift+L</source>
       <translation>Ctrl+Shift+L</translation>
@@ -90967,8 +91008,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="1207" />
       <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/MiniEditor.py" line="1205" />
       <location filename="../QScintilla/ShellWindow.py" line="447" />
       <location filename="../QScintilla/ShellWindow.py" line="446" />
       <source>Indent one level</source>
@@ -90976,7 +91017,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
+      <location filename="../QScintilla/MiniEditor.py" line="1208" />
       <location filename="../QScintilla/ShellWindow.py" line="448" />
       <source>Tab</source>
       <translation>Tab</translation>
@@ -90984,8 +91025,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
+      <location filename="../QScintilla/MiniEditor.py" line="1673" />
       <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1671" />
       <location filename="../QScintilla/ShellWindow.py" line="459" />
       <location filename="../QScintilla/ShellWindow.py" line="458" />
       <source>Insert new line</source>
@@ -90993,14 +91034,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
+      <location filename="../QScintilla/MiniEditor.py" line="1674" />
       <location filename="../QScintilla/ShellWindow.py" line="460" />
       <source>Return</source>
       <translation>Return</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
+      <location filename="../QScintilla/MiniEditor.py" line="1675" />
       <location filename="../QScintilla/ShellWindow.py" line="461" />
       <source>Enter</source>
       <translation>Enter</translation>
@@ -91008,8 +91049,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
+      <location filename="../QScintilla/MiniEditor.py" line="1559" />
       <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1557" />
       <location filename="../QScintilla/ShellWindow.py" line="471" />
       <location filename="../QScintilla/ShellWindow.py" line="470" />
       <source>Delete previous character</source>
@@ -91017,21 +91058,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
+      <location filename="../QScintilla/MiniEditor.py" line="1560" />
       <location filename="../QScintilla/ShellWindow.py" line="472" />
       <source>Backspace</source>
       <translation>Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1566" />
+      <location filename="../QScintilla/MiniEditor.py" line="1567" />
       <location filename="../QScintilla/ShellWindow.py" line="479" />
       <source>Meta+H</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1571" />
+      <location filename="../QScintilla/MiniEditor.py" line="1572" />
       <location filename="../QScintilla/ShellWindow.py" line="484" />
       <source>Shift+Backspace</source>
       <translation>Shift+Backspace</translation>
@@ -91039,8 +91080,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
+      <location filename="../QScintilla/MiniEditor.py" line="1597" />
       <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1595" />
       <location filename="../QScintilla/ShellWindow.py" line="493" />
       <location filename="../QScintilla/ShellWindow.py" line="492" />
       <source>Delete current character</source>
@@ -91048,14 +91089,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
+      <location filename="../QScintilla/MiniEditor.py" line="1598" />
       <location filename="../QScintilla/ShellWindow.py" line="494" />
       <source>Del</source>
       <translation>Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1604" />
+      <location filename="../QScintilla/MiniEditor.py" line="1605" />
       <location filename="../QScintilla/ShellWindow.py" line="501" />
       <source>Meta+D</source>
       <translation type="unfinished" />
@@ -91063,8 +91104,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
+      <location filename="../QScintilla/MiniEditor.py" line="1613" />
       <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/MiniEditor.py" line="1611" />
       <location filename="../QScintilla/ShellWindow.py" line="509" />
       <location filename="../QScintilla/ShellWindow.py" line="508" />
       <source>Delete word to left</source>
@@ -91072,7 +91113,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1614" />
       <location filename="../QScintilla/ShellWindow.py" line="510" />
       <source>Ctrl+Backspace</source>
       <translation>Ctrl+Backspace</translation>
@@ -91080,8 +91121,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1625" />
       <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/MiniEditor.py" line="1623" />
       <location filename="../QScintilla/ShellWindow.py" line="521" />
       <location filename="../QScintilla/ShellWindow.py" line="520" />
       <source>Delete word to right</source>
@@ -91089,7 +91130,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
+      <location filename="../QScintilla/MiniEditor.py" line="1626" />
       <location filename="../QScintilla/ShellWindow.py" line="522" />
       <source>Ctrl+Del</source>
       <translation>Ctrl+Del</translation>
@@ -91097,8 +91138,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
+      <location filename="../QScintilla/MiniEditor.py" line="1637" />
       <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/MiniEditor.py" line="1635" />
       <location filename="../QScintilla/ShellWindow.py" line="533" />
       <location filename="../QScintilla/ShellWindow.py" line="532" />
       <source>Delete line to left</source>
@@ -91106,7 +91147,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1638" />
+      <location filename="../QScintilla/MiniEditor.py" line="1639" />
       <location filename="../QScintilla/ShellWindow.py" line="535" />
       <source>Ctrl+Shift+Backspace</source>
       <translation>Ctrl+Shift+Backspace</translation>
@@ -91114,8 +91155,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
+      <location filename="../QScintilla/MiniEditor.py" line="1651" />
       <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/MiniEditor.py" line="1649" />
       <location filename="../QScintilla/ShellWindow.py" line="547" />
       <location filename="../QScintilla/ShellWindow.py" line="546" />
       <source>Delete line to right</source>
@@ -91123,14 +91164,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1658" />
+      <location filename="../QScintilla/MiniEditor.py" line="1659" />
       <location filename="../QScintilla/ShellWindow.py" line="555" />
       <source>Meta+K</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1663" />
+      <location filename="../QScintilla/MiniEditor.py" line="1664" />
       <location filename="../QScintilla/ShellWindow.py" line="560" />
       <source>Ctrl+Shift+Del</source>
       <translation>Ctrl+Shift+Del</translation>
@@ -91138,8 +91179,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
+      <location filename="../QScintilla/MiniEditor.py" line="895" />
       <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/MiniEditor.py" line="893" />
       <location filename="../QScintilla/ShellWindow.py" line="569" />
       <location filename="../QScintilla/ShellWindow.py" line="568" />
       <source>Move left one character</source>
@@ -91147,14 +91188,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
+      <location filename="../QScintilla/MiniEditor.py" line="896" />
       <location filename="../QScintilla/ShellWindow.py" line="570" />
       <source>Left</source>
       <translation>Sinistra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="904" />
       <location filename="../QScintilla/ShellWindow.py" line="578" />
       <source>Meta+B</source>
       <translation type="unfinished" />
@@ -91162,8 +91203,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="911" />
       <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/MiniEditor.py" line="909" />
       <location filename="../QScintilla/ShellWindow.py" line="585" />
       <location filename="../QScintilla/ShellWindow.py" line="584" />
       <source>Move right one character</source>
@@ -91171,14 +91212,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
+      <location filename="../QScintilla/MiniEditor.py" line="912" />
       <location filename="../QScintilla/ShellWindow.py" line="586" />
       <source>Right</source>
       <translation>Destra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="918" />
+      <location filename="../QScintilla/MiniEditor.py" line="919" />
       <location filename="../QScintilla/ShellWindow.py" line="593" />
       <source>Meta+F</source>
       <translation type="unfinished" />
@@ -91186,8 +91227,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="991" />
       <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/MiniEditor.py" line="989" />
       <location filename="../QScintilla/ShellWindow.py" line="601" />
       <location filename="../QScintilla/ShellWindow.py" line="600" />
       <source>Move left one word</source>
@@ -91196,8 +91237,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="998" />
-      <location filename="../QScintilla/MiniEditor.py" line="966" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/MiniEditor.py" line="967" />
       <location filename="../QScintilla/ShellWindow.py" line="609" />
       <source>Alt+Left</source>
       <translation>Alt+Sinistra</translation>
@@ -91205,8 +91246,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1058" />
-      <location filename="../QScintilla/MiniEditor.py" line="1002" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
+      <location filename="../QScintilla/MiniEditor.py" line="1003" />
       <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Ctrl+Left</source>
       <translation>Ctrl+Left</translation>
@@ -91214,8 +91255,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
+      <location filename="../QScintilla/MiniEditor.py" line="1011" />
       <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/MiniEditor.py" line="1009" />
       <location filename="../QScintilla/ShellWindow.py" line="621" />
       <location filename="../QScintilla/ShellWindow.py" line="620" />
       <source>Move right one word</source>
@@ -91224,8 +91265,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1812" />
-      <location filename="../QScintilla/MiniEditor.py" line="1022" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="1023" />
       <location filename="../QScintilla/ShellWindow.py" line="629" />
       <source>Ctrl+Right</source>
       <translation>Ctrl+Right</translation>
@@ -91233,8 +91274,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1032" />
-      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1033" />
+      <location filename="../QScintilla/MiniEditor.py" line="1030" />
       <location filename="../QScintilla/ShellWindow.py" line="639" />
       <location filename="../QScintilla/ShellWindow.py" line="636" />
       <source>Move to first visible character in document line</source>
@@ -91243,8 +91284,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2073" />
-      <location filename="../QScintilla/MiniEditor.py" line="1042" />
+      <location filename="../QScintilla/MiniEditor.py" line="2074" />
+      <location filename="../QScintilla/MiniEditor.py" line="1043" />
       <location filename="../QScintilla/ShellWindow.py" line="649" />
       <source>Home</source>
       <translation>Home</translation>
@@ -91252,8 +91293,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
+      <location filename="../QScintilla/MiniEditor.py" line="1071" />
       <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/MiniEditor.py" line="1069" />
       <location filename="../QScintilla/ShellWindow.py" line="657" />
       <location filename="../QScintilla/ShellWindow.py" line="656" />
       <source>Move to end of document line</source>
@@ -91261,7 +91302,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1078" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
       <location filename="../QScintilla/ShellWindow.py" line="665" />
       <source>Meta+E</source>
       <translation type="unfinished" />
@@ -91269,8 +91310,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1083" />
       <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>End</source>
       <translation>Fine</translation>
@@ -91278,8 +91319,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="927" />
       <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/MiniEditor.py" line="925" />
       <location filename="../QScintilla/ShellWindow.py" line="677" />
       <location filename="../QScintilla/ShellWindow.py" line="676" />
       <source>Move up one line</source>
@@ -91287,14 +91328,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
+      <location filename="../QScintilla/MiniEditor.py" line="928" />
       <location filename="../QScintilla/ShellWindow.py" line="678" />
       <source>Up</source>
       <translation>Su</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="934" />
+      <location filename="../QScintilla/MiniEditor.py" line="935" />
       <location filename="../QScintilla/ShellWindow.py" line="685" />
       <source>Meta+P</source>
       <translation type="unfinished" />
@@ -91302,8 +91343,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
+      <location filename="../QScintilla/MiniEditor.py" line="943" />
       <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/MiniEditor.py" line="941" />
       <location filename="../QScintilla/ShellWindow.py" line="693" />
       <location filename="../QScintilla/ShellWindow.py" line="692" />
       <source>Move down one line</source>
@@ -91311,14 +91352,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="944" />
       <location filename="../QScintilla/ShellWindow.py" line="694" />
       <source>Down</source>
       <translation>Giù</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="950" />
+      <location filename="../QScintilla/MiniEditor.py" line="951" />
       <location filename="../QScintilla/ShellWindow.py" line="701" />
       <source>Meta+N</source>
       <translation type="unfinished" />
@@ -91326,8 +91367,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1194" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
+      <location filename="../QScintilla/MiniEditor.py" line="1092" />
       <location filename="../QScintilla/ShellWindow.py" line="710" />
       <source>Ctrl+Down</source>
       <translation>Ctrl+Down</translation>
@@ -91335,8 +91376,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1174" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
+      <location filename="../QScintilla/MiniEditor.py" line="1104" />
       <location filename="../QScintilla/ShellWindow.py" line="722" />
       <source>Ctrl+Up</source>
       <translation>Ctrl+Up</translation>
@@ -91344,8 +91385,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1139" />
       <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/MiniEditor.py" line="1137" />
       <location filename="../QScintilla/ShellWindow.py" line="733" />
       <location filename="../QScintilla/ShellWindow.py" line="732" />
       <source>Move up one page</source>
@@ -91353,7 +91394,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
+      <location filename="../QScintilla/MiniEditor.py" line="1140" />
       <location filename="../QScintilla/ShellWindow.py" line="734" />
       <source>PgUp</source>
       <translation>PgUp</translation>
@@ -91361,8 +91402,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
+      <location filename="../QScintilla/MiniEditor.py" line="1151" />
       <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1149" />
       <location filename="../QScintilla/ShellWindow.py" line="745" />
       <location filename="../QScintilla/ShellWindow.py" line="744" />
       <source>Move down one page</source>
@@ -91370,14 +91411,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1152" />
       <location filename="../QScintilla/ShellWindow.py" line="746" />
       <source>PgDown</source>
       <translation>PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1158" />
+      <location filename="../QScintilla/MiniEditor.py" line="1159" />
       <location filename="../QScintilla/ShellWindow.py" line="753" />
       <source>Meta+V</source>
       <translation type="unfinished" />
@@ -91385,8 +91426,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
+      <location filename="../QScintilla/MiniEditor.py" line="1859" />
       <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/MiniEditor.py" line="1857" />
       <location filename="../QScintilla/ShellWindow.py" line="761" />
       <location filename="../QScintilla/ShellWindow.py" line="760" />
       <source>Escape</source>
@@ -91394,7 +91435,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
+      <location filename="../QScintilla/MiniEditor.py" line="1860" />
       <location filename="../QScintilla/ShellWindow.py" line="762" />
       <source>Esc</source>
       <translation>Esc</translation>
@@ -91402,8 +91443,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1233" />
+      <location filename="../QScintilla/MiniEditor.py" line="1230" />
       <location filename="../QScintilla/ShellWindow.py" line="775" />
       <location filename="../QScintilla/ShellWindow.py" line="772" />
       <source>Extend selection left one character</source>
@@ -91411,14 +91452,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1235" />
+      <location filename="../QScintilla/MiniEditor.py" line="1236" />
       <location filename="../QScintilla/ShellWindow.py" line="778" />
       <source>Shift+Left</source>
       <translation>Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1242" />
+      <location filename="../QScintilla/MiniEditor.py" line="1243" />
       <location filename="../QScintilla/ShellWindow.py" line="785" />
       <source>Meta+Shift+B</source>
       <translation type="unfinished" />
@@ -91426,8 +91467,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1253" />
+      <location filename="../QScintilla/MiniEditor.py" line="1250" />
       <location filename="../QScintilla/ShellWindow.py" line="795" />
       <location filename="../QScintilla/ShellWindow.py" line="792" />
       <source>Extend selection right one character</source>
@@ -91435,14 +91476,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1255" />
+      <location filename="../QScintilla/MiniEditor.py" line="1256" />
       <location filename="../QScintilla/ShellWindow.py" line="798" />
       <source>Shift+Right</source>
       <translation>Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1262" />
+      <location filename="../QScintilla/MiniEditor.py" line="1263" />
       <location filename="../QScintilla/ShellWindow.py" line="805" />
       <source>Meta+Shift+F</source>
       <translation type="unfinished" />
@@ -91450,8 +91491,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
+      <location filename="../QScintilla/MiniEditor.py" line="1347" />
       <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/MiniEditor.py" line="1345" />
       <location filename="../QScintilla/ShellWindow.py" line="813" />
       <location filename="../QScintilla/ShellWindow.py" line="812" />
       <source>Extend selection left one word</source>
@@ -91460,8 +91501,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1355" />
-      <location filename="../QScintilla/MiniEditor.py" line="1315" />
+      <location filename="../QScintilla/MiniEditor.py" line="1356" />
+      <location filename="../QScintilla/MiniEditor.py" line="1316" />
       <location filename="../QScintilla/ShellWindow.py" line="822" />
       <source>Alt+Shift+Left</source>
       <translation>Alt+Shift+Left</translation>
@@ -91469,8 +91510,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2276" />
-      <location filename="../QScintilla/MiniEditor.py" line="1361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2277" />
+      <location filename="../QScintilla/MiniEditor.py" line="1362" />
       <location filename="../QScintilla/ShellWindow.py" line="828" />
       <source>Ctrl+Shift+Left</source>
       <translation>Ctrl+Shift+Left</translation>
@@ -91478,8 +91519,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1372" />
-      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1373" />
+      <location filename="../QScintilla/MiniEditor.py" line="1370" />
       <location filename="../QScintilla/ShellWindow.py" line="839" />
       <location filename="../QScintilla/ShellWindow.py" line="836" />
       <source>Extend selection right one word</source>
@@ -91489,9 +91530,9 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1383" />
-      <location filename="../QScintilla/MiniEditor.py" line="1337" />
+      <location filename="../QScintilla/MiniEditor.py" line="2151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1384" />
+      <location filename="../QScintilla/MiniEditor.py" line="1338" />
       <location filename="../QScintilla/ShellWindow.py" line="850" />
       <source>Alt+Shift+Right</source>
       <translation>Alt+Shift+Right</translation>
@@ -91499,8 +91540,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1837" />
-      <location filename="../QScintilla/MiniEditor.py" line="1389" />
+      <location filename="../QScintilla/MiniEditor.py" line="1838" />
+      <location filename="../QScintilla/MiniEditor.py" line="1390" />
       <location filename="../QScintilla/ShellWindow.py" line="856" />
       <source>Ctrl+Shift+Right</source>
       <translation>Ctrl+Shift+Right</translation>
@@ -91508,8 +91549,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1401" />
-      <location filename="../QScintilla/MiniEditor.py" line="1397" />
+      <location filename="../QScintilla/MiniEditor.py" line="1402" />
+      <location filename="../QScintilla/MiniEditor.py" line="1398" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
       <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
@@ -91517,7 +91558,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1412" />
+      <location filename="../QScintilla/MiniEditor.py" line="1413" />
       <location filename="../QScintilla/ShellWindow.py" line="879" />
       <source>Shift+Home</source>
       <translation>Shift+Home</translation>
@@ -91525,8 +91566,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1422" />
-      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1423" />
+      <location filename="../QScintilla/MiniEditor.py" line="1420" />
       <location filename="../QScintilla/ShellWindow.py" line="889" />
       <location filename="../QScintilla/ShellWindow.py" line="886" />
       <source>Extend selection to end of document line</source>
@@ -91534,14 +91575,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1432" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
       <location filename="../QScintilla/ShellWindow.py" line="899" />
       <source>Meta+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1437" />
       <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Shift+End</source>
       <translation>Shift+End</translation>
@@ -91550,21 +91591,21 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2532" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
       <location filename="../QScintilla/ShellWindow.py" line="917" />
       <source>Search</source>
       <translation>Ricerca</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2534" />
+      <location filename="../QScintilla/MiniEditor.py" line="2535" />
       <location filename="../QScintilla/ShellWindow.py" line="919" />
       <source>&amp;Search...</source>
       <translation>&amp;Ricerca...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2536" />
+      <location filename="../QScintilla/MiniEditor.py" line="2537" />
       <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
@@ -91572,7 +91613,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2543" />
+      <location filename="../QScintilla/MiniEditor.py" line="2544" />
       <location filename="../QScintilla/ShellWindow.py" line="928" />
       <source>Search for a text</source>
       <translation>Cerca per un testo</translation>
@@ -91584,21 +91625,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
       <location filename="../QScintilla/ShellWindow.py" line="943" />
       <source>Search next</source>
       <translation>Cerca seguente</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2560" />
+      <location filename="../QScintilla/MiniEditor.py" line="2561" />
       <location filename="../QScintilla/ShellWindow.py" line="945" />
       <source>Search &amp;next</source>
       <translation>Cerca segue&amp;nte</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2562" />
+      <location filename="../QScintilla/MiniEditor.py" line="2563" />
       <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>F3</source>
       <comment>Search|Search next</comment>
@@ -91606,7 +91647,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2569" />
+      <location filename="../QScintilla/MiniEditor.py" line="2570" />
       <location filename="../QScintilla/ShellWindow.py" line="954" />
       <source>Search next occurrence of text</source>
       <translation>Cerca prossima ricorrenza del testo</translation>
@@ -91618,21 +91659,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2584" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
       <location filename="../QScintilla/ShellWindow.py" line="971" />
       <source>Search previous</source>
       <translation>Cerca precedente</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2586" />
+      <location filename="../QScintilla/MiniEditor.py" line="2587" />
       <location filename="../QScintilla/ShellWindow.py" line="973" />
       <source>Search &amp;previous</source>
       <translation>Cerca &amp;precedente</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2588" />
+      <location filename="../QScintilla/MiniEditor.py" line="2589" />
       <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
@@ -91640,7 +91681,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2597" />
+      <location filename="../QScintilla/MiniEditor.py" line="2598" />
       <location filename="../QScintilla/ShellWindow.py" line="984" />
       <source>Search previous occurrence of text</source>
       <translation>Cerca la precedente  ricorrenza del testo</translation>
@@ -91652,21 +91693,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2757" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
       <location filename="../QScintilla/ShellWindow.py" line="1010" />
       <source>Zoom in</source>
       <translation>Ingrandisci</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2759" />
+      <location filename="../QScintilla/MiniEditor.py" line="2760" />
       <location filename="../QScintilla/ShellWindow.py" line="1012" />
       <source>Zoom &amp;in</source>
       <translation>Ingrand&amp;isci</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/MiniEditor.py" line="2762" />
       <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
@@ -91674,7 +91715,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2764" />
+      <location filename="../QScintilla/MiniEditor.py" line="2765" />
       <location filename="../QScintilla/ShellWindow.py" line="1017" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
@@ -91682,35 +91723,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/MiniEditor.py" line="2771" />
       <location filename="../QScintilla/ShellWindow.py" line="1023" />
       <source>Zoom in on the text</source>
       <translation>Ingrandisci nel testo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2773" />
+      <location filename="../QScintilla/MiniEditor.py" line="2774" />
       <location filename="../QScintilla/ShellWindow.py" line="1026" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Ingrandisci&lt;/b&gt;&lt;p&gt;Ingrandisci nel testo. Questo aumenta le dimensioni del testo.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2783" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
       <location filename="../QScintilla/ShellWindow.py" line="1036" />
       <source>Zoom out</source>
       <translation>Riduci</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2785" />
+      <location filename="../QScintilla/MiniEditor.py" line="2786" />
       <location filename="../QScintilla/ShellWindow.py" line="1038" />
       <source>Zoom &amp;out</source>
       <translation>Rid&amp;uci</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/MiniEditor.py" line="2788" />
       <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
@@ -91718,7 +91759,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2790" />
+      <location filename="../QScintilla/MiniEditor.py" line="2791" />
       <location filename="../QScintilla/ShellWindow.py" line="1043" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
@@ -91726,35 +91767,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/MiniEditor.py" line="2797" />
       <location filename="../QScintilla/ShellWindow.py" line="1049" />
       <source>Zoom out on the text</source>
       <translation>Riduci il testo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2799" />
+      <location filename="../QScintilla/MiniEditor.py" line="2800" />
       <location filename="../QScintilla/ShellWindow.py" line="1052" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Riduci&lt;/b&gt;&lt;p&gt;Riduci nel testo. Questo diminuisce le dimensioni del testo.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2809" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
       <location filename="../QScintilla/ShellWindow.py" line="1062" />
       <source>Zoom reset</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2811" />
+      <location filename="../QScintilla/MiniEditor.py" line="2812" />
       <location filename="../QScintilla/ShellWindow.py" line="1064" />
       <source>Zoom &amp;reset</source>
       <translation type="unfinished">&amp;Reset zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2813" />
+      <location filename="../QScintilla/MiniEditor.py" line="2814" />
       <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
@@ -91762,42 +91803,42 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/MiniEditor.py" line="2821" />
       <location filename="../QScintilla/ShellWindow.py" line="1073" />
       <source>Reset the zoom of the text</source>
       <translation type="unfinished">Resetta lo zoom del testo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2823" />
+      <location filename="../QScintilla/MiniEditor.py" line="2824" />
       <location filename="../QScintilla/ShellWindow.py" line="1076" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Reset zoom&lt;/b&gt;&lt;p&gt;Reset dello zoom del testo. Imposta il fattore di zoom al 100%.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2834" />
+      <location filename="../QScintilla/MiniEditor.py" line="2835" />
       <location filename="../QScintilla/ShellWindow.py" line="1087" />
       <source>Zoom</source>
       <translation>Zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2836" />
+      <location filename="../QScintilla/MiniEditor.py" line="2837" />
       <location filename="../QScintilla/ShellWindow.py" line="1089" />
       <source>&amp;Zoom</source>
       <translation>&amp;Zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/MiniEditor.py" line="2844" />
       <location filename="../QScintilla/ShellWindow.py" line="1096" />
       <source>Zoom the text</source>
       <translation>Ingrandisci il testo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2846" />
+      <location filename="../QScintilla/MiniEditor.py" line="2847" />
       <location filename="../QScintilla/ShellWindow.py" line="1099" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Zoom&lt;/b&gt;&lt;o&gt;Zoom del testo. Apre un dialogo dove inserire la dimensione voluta.&lt;/p&gt;</translation>
@@ -91805,984 +91846,984 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="804" />
       <location filename="../ViewManager/ViewManager.py" line="802" />
-      <location filename="../QScintilla/MiniEditor.py" line="740" />
+      <location filename="../QScintilla/MiniEditor.py" line="741" />
       <source>Print Preview</source>
       <translation>Anteprima Stampa</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
+      <location filename="../QScintilla/MiniEditor.py" line="959" />
       <location filename="../QScintilla/MiniEditor.py" line="958" />
-      <location filename="../QScintilla/MiniEditor.py" line="957" />
       <source>Move left one word part</source>
       <translation>Muovi a sinistra di una parte di parola</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
+      <location filename="../QScintilla/MiniEditor.py" line="975" />
       <location filename="../QScintilla/MiniEditor.py" line="974" />
-      <location filename="../QScintilla/MiniEditor.py" line="973" />
       <source>Move right one word part</source>
       <translation>Muovi a destra di una parte di parola</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2128" />
-      <location filename="../QScintilla/MiniEditor.py" line="1018" />
-      <location filename="../QScintilla/MiniEditor.py" line="982" />
+      <location filename="../QScintilla/MiniEditor.py" line="2129" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/MiniEditor.py" line="983" />
       <source>Alt+Right</source>
       <translation>Alt+Destra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1051" />
       <location filename="../QScintilla/MiniEditor.py" line="1050" />
-      <location filename="../QScintilla/MiniEditor.py" line="1049" />
       <source>Move to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="1063" />
       <source>Alt+Home</source>
       <translation>Alt+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
+      <location filename="../QScintilla/MiniEditor.py" line="1091" />
       <location filename="../QScintilla/MiniEditor.py" line="1090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1089" />
       <source>Scroll view down one line</source>
       <translation>Scrolla la vista in basso di una riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
+      <location filename="../QScintilla/MiniEditor.py" line="1103" />
       <location filename="../QScintilla/MiniEditor.py" line="1102" />
-      <location filename="../QScintilla/MiniEditor.py" line="1101" />
       <source>Scroll view up one line</source>
       <translation>Scrolla la vista in alto di una riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
+      <location filename="../QScintilla/MiniEditor.py" line="1115" />
       <location filename="../QScintilla/MiniEditor.py" line="1114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1113" />
       <source>Move up one paragraph</source>
       <translation>Muovi in alto di un paragrafo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
+      <location filename="../QScintilla/MiniEditor.py" line="1116" />
       <source>Alt+Up</source>
       <translation>Alt+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
+      <location filename="../QScintilla/MiniEditor.py" line="1127" />
       <location filename="../QScintilla/MiniEditor.py" line="1126" />
-      <location filename="../QScintilla/MiniEditor.py" line="1125" />
       <source>Move down one paragraph</source>
       <translation>Muovi in basso di un paragrafo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
+      <location filename="../QScintilla/MiniEditor.py" line="1128" />
       <source>Alt+Down</source>
       <translation>Alt+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
+      <location filename="../QScintilla/MiniEditor.py" line="1167" />
       <location filename="../QScintilla/MiniEditor.py" line="1166" />
-      <location filename="../QScintilla/MiniEditor.py" line="1165" />
       <source>Move to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1178" />
+      <location filename="../QScintilla/MiniEditor.py" line="1179" />
       <source>Ctrl+Home</source>
       <translation>Ctrl+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
+      <location filename="../QScintilla/MiniEditor.py" line="1187" />
       <location filename="../QScintilla/MiniEditor.py" line="1186" />
-      <location filename="../QScintilla/MiniEditor.py" line="1185" />
       <source>Move to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1198" />
+      <location filename="../QScintilla/MiniEditor.py" line="1199" />
       <source>Ctrl+End</source>
       <translation>Ctrl+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
+      <location filename="../QScintilla/MiniEditor.py" line="1219" />
       <location filename="../QScintilla/MiniEditor.py" line="1218" />
-      <location filename="../QScintilla/MiniEditor.py" line="1217" />
       <source>Unindent one level</source>
       <translation>Deindenta di un livello</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
+      <location filename="../QScintilla/MiniEditor.py" line="1220" />
       <source>Shift+Tab</source>
       <translation>Shift+Tab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
+      <location filename="../QScintilla/MiniEditor.py" line="1271" />
       <location filename="../QScintilla/MiniEditor.py" line="1270" />
-      <location filename="../QScintilla/MiniEditor.py" line="1269" />
       <source>Extend selection up one line</source>
       <translation>Estendi selezione in alto di una riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
+      <location filename="../QScintilla/MiniEditor.py" line="1272" />
       <source>Shift+Up</source>
       <translation>Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1278" />
+      <location filename="../QScintilla/MiniEditor.py" line="1279" />
       <source>Meta+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
+      <location filename="../QScintilla/MiniEditor.py" line="1287" />
       <location filename="../QScintilla/MiniEditor.py" line="1286" />
-      <location filename="../QScintilla/MiniEditor.py" line="1285" />
       <source>Extend selection down one line</source>
       <translation>Estendi selezione in basso di una riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
+      <location filename="../QScintilla/MiniEditor.py" line="1288" />
       <source>Shift+Down</source>
       <translation>Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1294" />
+      <location filename="../QScintilla/MiniEditor.py" line="1295" />
       <source>Meta+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1304" />
-      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1305" />
+      <location filename="../QScintilla/MiniEditor.py" line="1302" />
       <source>Extend selection left one word part</source>
       <translation>Estendi la selezione a sinistra di una parte di parola</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1326" />
-      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1327" />
+      <location filename="../QScintilla/MiniEditor.py" line="1324" />
       <source>Extend selection right one word part</source>
       <translation>Estendi la selezione a destra di una parte di parola</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1446" />
-      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1447" />
+      <location filename="../QScintilla/MiniEditor.py" line="1444" />
       <source>Extend selection up one paragraph</source>
       <translation>Estendi selezione in alto di un paragrafo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1449" />
+      <location filename="../QScintilla/MiniEditor.py" line="1450" />
       <source>Alt+Shift+Up</source>
       <translation>Alt+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1462" />
-      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1463" />
+      <location filename="../QScintilla/MiniEditor.py" line="1460" />
       <source>Extend selection down one paragraph</source>
       <translation>Estendi selezione in basso di un paragrafo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1465" />
+      <location filename="../QScintilla/MiniEditor.py" line="1466" />
       <source>Alt+Shift+Down</source>
       <translation>Alt+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1477" />
       <location filename="../QScintilla/MiniEditor.py" line="1476" />
-      <location filename="../QScintilla/MiniEditor.py" line="1475" />
       <source>Extend selection up one page</source>
       <translation>Estendi selezione in alto di una pagina</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
+      <location filename="../QScintilla/MiniEditor.py" line="1478" />
       <source>Shift+PgUp</source>
       <translation>Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="1489" />
       <location filename="../QScintilla/MiniEditor.py" line="1488" />
-      <location filename="../QScintilla/MiniEditor.py" line="1487" />
       <source>Extend selection down one page</source>
       <translation>Estendi selezione in basso di una pagina</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
+      <location filename="../QScintilla/MiniEditor.py" line="1490" />
       <source>Shift+PgDown</source>
       <translation>Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1496" />
+      <location filename="../QScintilla/MiniEditor.py" line="1497" />
       <source>Meta+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1506" />
-      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1507" />
+      <location filename="../QScintilla/MiniEditor.py" line="1504" />
       <source>Extend selection to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1516" />
+      <location filename="../QScintilla/MiniEditor.py" line="1517" />
       <source>Ctrl+Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1521" />
+      <location filename="../QScintilla/MiniEditor.py" line="1522" />
       <source>Ctrl+Shift+Home</source>
       <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1533" />
+      <location filename="../QScintilla/MiniEditor.py" line="1530" />
       <source>Extend selection to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1543" />
+      <location filename="../QScintilla/MiniEditor.py" line="1544" />
       <source>Ctrl+Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1549" />
+      <location filename="../QScintilla/MiniEditor.py" line="1550" />
       <source>Ctrl+Shift+End</source>
       <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1583" />
+      <location filename="../QScintilla/MiniEditor.py" line="1580" />
       <source>Delete previous character if not at start of line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1697" />
       <location filename="../QScintilla/MiniEditor.py" line="1696" />
-      <location filename="../QScintilla/MiniEditor.py" line="1695" />
       <source>Duplicate current line</source>
       <translation>Duplica riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
+      <location filename="../QScintilla/MiniEditor.py" line="1698" />
       <source>Ctrl+D</source>
       <translation>Ctrl+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1710" />
-      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1711" />
+      <location filename="../QScintilla/MiniEditor.py" line="1708" />
       <source>Swap current and previous lines</source>
       <translation>Scambia la riga con quella precedente</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1713" />
+      <location filename="../QScintilla/MiniEditor.py" line="1714" />
       <source>Ctrl+T</source>
       <translation>Ctrl+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="1725" />
       <location filename="../QScintilla/MiniEditor.py" line="1724" />
-      <location filename="../QScintilla/MiniEditor.py" line="1723" />
       <source>Reverse selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
+      <location filename="../QScintilla/MiniEditor.py" line="1726" />
       <source>Meta+Alt+R</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
+      <location filename="../QScintilla/MiniEditor.py" line="1737" />
       <location filename="../QScintilla/MiniEditor.py" line="1736" />
-      <location filename="../QScintilla/MiniEditor.py" line="1735" />
       <source>Cut current line</source>
       <translation>Taglia riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
+      <location filename="../QScintilla/MiniEditor.py" line="1738" />
       <source>Alt+Shift+L</source>
       <translation>Alt+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
+      <location filename="../QScintilla/MiniEditor.py" line="1749" />
       <location filename="../QScintilla/MiniEditor.py" line="1748" />
-      <location filename="../QScintilla/MiniEditor.py" line="1747" />
       <source>Copy current line</source>
       <translation>Copia riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="1750" />
       <source>Ctrl+Shift+T</source>
       <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
+      <location filename="../QScintilla/MiniEditor.py" line="1761" />
       <location filename="../QScintilla/MiniEditor.py" line="1760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1759" />
       <source>Toggle insert/overtype</source>
       <translation>Scambia inserisci/sovrascrivi</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
+      <location filename="../QScintilla/MiniEditor.py" line="1762" />
       <source>Ins</source>
       <translation>Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1775" />
+      <location filename="../QScintilla/MiniEditor.py" line="1772" />
       <source>Convert selection to lower case</source>
       <translation>Converti selezione in minuscolo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1777" />
+      <location filename="../QScintilla/MiniEditor.py" line="1778" />
       <source>Alt+Shift+U</source>
       <translation>Alt+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1791" />
+      <location filename="../QScintilla/MiniEditor.py" line="1788" />
       <source>Convert selection to upper case</source>
       <translation>Converti selezione in maiuscolo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1793" />
+      <location filename="../QScintilla/MiniEditor.py" line="1794" />
       <source>Ctrl+Shift+U</source>
       <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
+      <location filename="../QScintilla/MiniEditor.py" line="1805" />
       <location filename="../QScintilla/MiniEditor.py" line="1804" />
-      <location filename="../QScintilla/MiniEditor.py" line="1803" />
       <source>Move to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1816" />
+      <location filename="../QScintilla/MiniEditor.py" line="1817" />
       <source>Alt+End</source>
       <translation>Alt+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1827" />
+      <location filename="../QScintilla/MiniEditor.py" line="1824" />
       <source>Extend selection to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
+      <location filename="../QScintilla/MiniEditor.py" line="1847" />
       <location filename="../QScintilla/MiniEditor.py" line="1846" />
-      <location filename="../QScintilla/MiniEditor.py" line="1845" />
       <source>Formfeed</source>
       <translation>Formfeed</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1872" />
-      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1873" />
+      <location filename="../QScintilla/MiniEditor.py" line="1870" />
       <source>Extend rectangular selection down one line</source>
       <translation>Estendi selezione rettagolare in basso di una riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1875" />
+      <location filename="../QScintilla/MiniEditor.py" line="1876" />
       <source>Alt+Ctrl+Down</source>
       <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1883" />
+      <location filename="../QScintilla/MiniEditor.py" line="1884" />
       <source>Meta+Alt+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1894" />
-      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1895" />
+      <location filename="../QScintilla/MiniEditor.py" line="1892" />
       <source>Extend rectangular selection up one line</source>
       <translation>Estendi selezione rettagolare in alto di una riga</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1897" />
+      <location filename="../QScintilla/MiniEditor.py" line="1898" />
       <source>Alt+Ctrl+Up</source>
       <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1905" />
+      <location filename="../QScintilla/MiniEditor.py" line="1906" />
       <source>Meta+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1916" />
-      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1917" />
+      <location filename="../QScintilla/MiniEditor.py" line="1914" />
       <source>Extend rectangular selection left one character</source>
       <translation>Estendi selezione rettagolare a sinistra di un carattere</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1919" />
+      <location filename="../QScintilla/MiniEditor.py" line="1920" />
       <source>Alt+Ctrl+Left</source>
       <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1927" />
+      <location filename="../QScintilla/MiniEditor.py" line="1928" />
       <source>Meta+Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1938" />
-      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1939" />
+      <location filename="../QScintilla/MiniEditor.py" line="1936" />
       <source>Extend rectangular selection right one character</source>
       <translation>Estendi selezione rettagolare a destra di un carattere</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1941" />
+      <location filename="../QScintilla/MiniEditor.py" line="1942" />
       <source>Alt+Ctrl+Right</source>
       <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1949" />
+      <location filename="../QScintilla/MiniEditor.py" line="1950" />
       <source>Meta+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1962" />
-      <location filename="../QScintilla/MiniEditor.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1963" />
+      <location filename="../QScintilla/MiniEditor.py" line="1958" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1975" />
+      <location filename="../QScintilla/MiniEditor.py" line="1976" />
       <source>Alt+Shift+Home</source>
       <translation>Alt+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1986" />
-      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1987" />
+      <location filename="../QScintilla/MiniEditor.py" line="1984" />
       <source>Extend rectangular selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1997" />
+      <location filename="../QScintilla/MiniEditor.py" line="1998" />
       <source>Meta+Alt+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2002" />
+      <location filename="../QScintilla/MiniEditor.py" line="2003" />
       <source>Alt+Shift+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2012" />
-      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2013" />
+      <location filename="../QScintilla/MiniEditor.py" line="2010" />
       <source>Extend rectangular selection up one page</source>
       <translation>Estendi selezione rettagolare in alto di una pagina</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2015" />
+      <location filename="../QScintilla/MiniEditor.py" line="2016" />
       <source>Alt+Shift+PgUp</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2028" />
-      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2029" />
+      <location filename="../QScintilla/MiniEditor.py" line="2026" />
       <source>Extend rectangular selection down one page</source>
       <translation>Estendi selezione rettagolare in basso di una pagina</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2031" />
+      <location filename="../QScintilla/MiniEditor.py" line="2032" />
       <source>Alt+Shift+PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2039" />
+      <location filename="../QScintilla/MiniEditor.py" line="2040" />
       <source>Meta+Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2515" />
       <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2513" />
+      <location filename="../QScintilla/MiniEditor.py" line="2049" />
       <location filename="../QScintilla/MiniEditor.py" line="2048" />
-      <location filename="../QScintilla/MiniEditor.py" line="2047" />
       <source>Duplicate current selection</source>
       <translation>Duplica la selezione corrente</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2516" />
+      <location filename="../QScintilla/MiniEditor.py" line="2050" />
       <source>Ctrl+Shift+D</source>
       <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2063" />
-      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2061" />
       <source>Scroll to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
+      <location filename="../QScintilla/MiniEditor.py" line="2083" />
       <location filename="../QScintilla/MiniEditor.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="2081" />
       <source>Scroll to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2101" />
-      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2102" />
+      <location filename="../QScintilla/MiniEditor.py" line="2099" />
       <source>Scroll vertically to center current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2111" />
+      <location filename="../QScintilla/MiniEditor.py" line="2112" />
       <source>Meta+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
+      <location filename="../QScintilla/MiniEditor.py" line="2121" />
       <location filename="../QScintilla/MiniEditor.py" line="2120" />
-      <location filename="../QScintilla/MiniEditor.py" line="2119" />
       <source>Move to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2139" />
-      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2140" />
+      <location filename="../QScintilla/MiniEditor.py" line="2137" />
       <source>Extend selection to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2162" />
-      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2163" />
+      <location filename="../QScintilla/MiniEditor.py" line="2160" />
       <source>Move to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2179" />
-      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2180" />
+      <location filename="../QScintilla/MiniEditor.py" line="2177" />
       <source>Extend selection to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2196" />
-      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2197" />
+      <location filename="../QScintilla/MiniEditor.py" line="2194" />
       <source>Move to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2206" />
+      <location filename="../QScintilla/MiniEditor.py" line="2207" />
       <source>Meta+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2218" />
+      <location filename="../QScintilla/MiniEditor.py" line="2215" />
       <source>Extend selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2228" />
+      <location filename="../QScintilla/MiniEditor.py" line="2229" />
       <source>Meta+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2241" />
-      <location filename="../QScintilla/MiniEditor.py" line="2237" />
+      <location filename="../QScintilla/MiniEditor.py" line="2242" />
+      <location filename="../QScintilla/MiniEditor.py" line="2238" />
       <source>Extend rectangular selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2253" />
+      <location filename="../QScintilla/MiniEditor.py" line="2254" />
       <source>Meta+Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2265" />
-      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2266" />
+      <location filename="../QScintilla/MiniEditor.py" line="2263" />
       <source>Extend selection to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2288" />
-      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2289" />
+      <location filename="../QScintilla/MiniEditor.py" line="2286" />
       <source>Move to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2306" />
-      <location filename="../QScintilla/MiniEditor.py" line="2302" />
+      <location filename="../QScintilla/MiniEditor.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="2303" />
       <source>Extend selection to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2325" />
-      <location filename="../QScintilla/MiniEditor.py" line="2321" />
+      <location filename="../QScintilla/MiniEditor.py" line="2326" />
+      <location filename="../QScintilla/MiniEditor.py" line="2322" />
       <source>Move to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2345" />
-      <location filename="../QScintilla/MiniEditor.py" line="2340" />
+      <location filename="../QScintilla/MiniEditor.py" line="2346" />
+      <location filename="../QScintilla/MiniEditor.py" line="2341" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2364" />
-      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2365" />
+      <location filename="../QScintilla/MiniEditor.py" line="2362" />
       <source>Move to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2381" />
-      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2382" />
+      <location filename="../QScintilla/MiniEditor.py" line="2379" />
       <source>Extend selection to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="2397" />
       <location filename="../QScintilla/MiniEditor.py" line="2396" />
-      <location filename="../QScintilla/MiniEditor.py" line="2395" />
       <source>Stuttered move up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2411" />
-      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2412" />
+      <location filename="../QScintilla/MiniEditor.py" line="2409" />
       <source>Stuttered extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2428" />
-      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2429" />
+      <location filename="../QScintilla/MiniEditor.py" line="2426" />
       <source>Stuttered move down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2446" />
+      <location filename="../QScintilla/MiniEditor.py" line="2443" />
       <source>Stuttered extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2462" />
-      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2463" />
+      <location filename="../QScintilla/MiniEditor.py" line="2460" />
       <source>Delete right to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2472" />
+      <location filename="../QScintilla/MiniEditor.py" line="2473" />
       <source>Alt+Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2484" />
+      <location filename="../QScintilla/MiniEditor.py" line="2481" />
       <source>Move selected lines up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2500" />
-      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2501" />
+      <location filename="../QScintilla/MiniEditor.py" line="2498" />
       <source>Move selected lines down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2546" />
+      <location filename="../QScintilla/MiniEditor.py" line="2547" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cerca&lt;/b&gt;&lt;p&gt;Cerca per del testo nell'editor corrente. Viene mostrato in dialogo per inserire il testo cercato e le opzioni per la ricerca.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2572" />
+      <location filename="../QScintilla/MiniEditor.py" line="2573" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Trova successivo&lt;/b&gt;&lt;p&gt;Trova la prossima occorrenza di testo nell'editor corrente. Il testo inserito precedentemente e opzioni verranno riutilizzate.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2602" />
+      <location filename="../QScintilla/MiniEditor.py" line="2603" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Trova precedente&lt;/b&gt;&lt;p&gt;Trova la precedente occorrenza di testo nell'editor corrente. Il testo inserito precedentemente e opzioni verranno riutilizzate.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2616" />
-      <location filename="../QScintilla/MiniEditor.py" line="2614" />
+      <location filename="../QScintilla/MiniEditor.py" line="2617" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Clear search markers</source>
       <translation>Pulisci marcatori di ricerca</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2618" />
+      <location filename="../QScintilla/MiniEditor.py" line="2619" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation>Ctrl+3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2627" />
+      <location filename="../QScintilla/MiniEditor.py" line="2628" />
       <source>Clear all displayed search markers</source>
       <translation>Pulisci tutti i marcatori di ricerca mostrati</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2632" />
+      <location filename="../QScintilla/MiniEditor.py" line="2633" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Pulisci marcatori di ricerca&lt;/b&gt;&lt;p&gt;Pulisci tutti i marcatori di ricerca mostrati.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2642" />
+      <location filename="../QScintilla/MiniEditor.py" line="2643" />
       <source>Replace</source>
       <translation>Rimpiazza</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2644" />
       <source>&amp;Replace...</source>
       <translation>&amp;Rimpiazza...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2645" />
+      <location filename="../QScintilla/MiniEditor.py" line="2646" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation>Ctrl+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2652" />
+      <location filename="../QScintilla/MiniEditor.py" line="2653" />
       <source>Replace some text</source>
       <translation>Sostituisci del testo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2655" />
+      <location filename="../QScintilla/MiniEditor.py" line="2656" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Sostituisci&lt;/b&gt;&lt;p&gt;Cerca per del testo nell'editor corrente e lo sostituisce. Viene mostrato in dialogo per inserire il testo cercato, il testo sostituto e le opzioni per la ricerca e la sostituzione.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2669" />
-      <location filename="../QScintilla/MiniEditor.py" line="2667" />
+      <location filename="../QScintilla/MiniEditor.py" line="2670" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2671" />
+      <location filename="../QScintilla/MiniEditor.py" line="2672" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2680" />
+      <location filename="../QScintilla/MiniEditor.py" line="2681" />
       <source>Replace the found text and search the next occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2685" />
+      <location filename="../QScintilla/MiniEditor.py" line="2686" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2701" />
-      <location filename="../QScintilla/MiniEditor.py" line="2699" />
+      <location filename="../QScintilla/MiniEditor.py" line="2702" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2703" />
+      <location filename="../QScintilla/MiniEditor.py" line="2704" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2712" />
+      <location filename="../QScintilla/MiniEditor.py" line="2713" />
       <source>Replace the found text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2715" />
+      <location filename="../QScintilla/MiniEditor.py" line="2716" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2728" />
-      <location filename="../QScintilla/MiniEditor.py" line="2726" />
+      <location filename="../QScintilla/MiniEditor.py" line="2729" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2730" />
+      <location filename="../QScintilla/MiniEditor.py" line="2731" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2739" />
+      <location filename="../QScintilla/MiniEditor.py" line="2740" />
       <source>Replace search text occurrences</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2742" />
+      <location filename="../QScintilla/MiniEditor.py" line="2743" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_pt.ts	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/i18n/eric7_pt.ts	Sat Apr 15 18:22:09 2023 +0200
@@ -1804,77 +1804,77 @@
   <context>
     <name>BaseDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="190" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="196" />
       <source>Device Data Not Available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="191" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="197" />
       <source>&lt;p&gt;The device data is not available. Try to connect to the device again. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="244" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="250" />
       <source>Unsupported Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="254" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="260" />
       <source>REPL is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="273" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="279" />
       <source>Plotter is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="292" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="298" />
       <source>Running scripts is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="311" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="317" />
       <source>File Manager is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="366" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="372" />
       <source>Select Device Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="367" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="373" />
       <source>Select the directory for the connected device:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="513" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="519" />
       <source>Detected an error without indications.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1400" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1464" />
       <source>Operation not supported.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>Yes</source>
       <translation type="unfinished">Sim</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>No</source>
       <translation type="unfinished">Não</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>yes</source>
       <translation type="unfinished">sim</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>no</source>
       <translation type="unfinished">não</translation>
     </message>
@@ -4051,17 +4051,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="141" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
       <source>WIZnet 5x00 Ethernet</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="143" />
       <source>&lt;p&gt;Support for &lt;b&gt;WIZnet 5x00&lt;/b&gt; Ethernet boards could not be detected. Is the module &lt;b&gt;adafruit_wiznet5k&lt;/b&gt; installed?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="176" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="177" />
       <source>CircuitPython</source>
       <translation type="unfinished" />
     </message>
@@ -4229,114 +4229,114 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1127" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="864" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1128" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="865" />
       <source>unknown ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1576" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1499" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1039" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="960" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1577" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1500" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1040" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="961" />
       <source>The device volume is not available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1003" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="975" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
       <source>Write WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1539" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1005" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="977" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1546" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="984" />
+      <source>Aborted</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1195" />
+      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1266" />
+      <source>CircuitPython does not support reporting of connected clients.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
+      <source>Active</source>
+      <translation type="unfinished">Ativo</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
+      <source>Connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
+      <source>IPv4 Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
+      <source>Netmask</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
+      <source>Gateway</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
+      <source>DNS</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1677" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
+      <source>Chip Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1358" />
+      <source>max. Sockets</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1538" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1545" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1011" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="983" />
-      <source>Aborted</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1194" />
-      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1265" />
-      <source>CircuitPython does not support reporting of connected clients.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1674" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1349" />
-      <source>Active</source>
-      <translation type="unfinished">Ativo</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1680" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
-      <source>Connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
-      <source>IPv4 Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
-      <source>Netmask</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
-      <source>Gateway</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
-      <source>DNS</source>
+      <source>Write Connect Script</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1676" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
-      <source>Chip Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
-      <source>max. Sockets</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1537" />
-      <source>Write Connect Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
       <source>Name</source>
       <translation type="unfinished">Nome</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1678" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1679" />
       <source>Address Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1682" />
       <source>Advertising</source>
       <translation type="unfinished" />
     </message>
@@ -10411,12 +10411,12 @@
       <translation type="unfinished">&lt;p&gt;A instalação de retaguarda do depurador não pode iniciar.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1378" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1380" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1379" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1381" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -12268,7 +12268,7 @@
       <translation>Descomentar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9146" />
+      <location filename="../QScintilla/Editor.py" line="9154" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12541,7 +12541,7 @@
       <translation type="unfinished">Verificação ortográfica</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8264" />
+      <location filename="../QScintilla/Editor.py" line="8272" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation>Verificação ortográfica...</translation>
@@ -12602,7 +12602,7 @@
       <translation>Editar ponto de interrupção...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5923" />
+      <location filename="../QScintilla/Editor.py" line="5932" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation>Habilitar pontos de interrupção</translation>
@@ -12836,356 +12836,356 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5097" />
+      <location filename="../QScintilla/Editor.py" line="5106" />
       <source>Autocompletion</source>
       <translation>Autocompletar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5098" />
+      <location filename="../QScintilla/Editor.py" line="5107" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>Autocompletar não está disponivel porque a fonte de autocompletar não está definida.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5226" />
+      <location filename="../QScintilla/Editor.py" line="5235" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5227" />
+      <location filename="../QScintilla/Editor.py" line="5236" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5519" />
+      <location filename="../QScintilla/Editor.py" line="5528" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5520" />
+      <location filename="../QScintilla/Editor.py" line="5529" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5927" />
+      <location filename="../QScintilla/Editor.py" line="5936" />
       <source>Disable breakpoint</source>
       <translation>Inabilitar ponto de interrupção</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6307" />
+      <location filename="../QScintilla/Editor.py" line="6315" />
       <source>Code Coverage</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6308" />
+      <location filename="../QScintilla/Editor.py" line="6316" />
       <source>Please select a coverage file</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="6391" />
       <location filename="../QScintilla/Editor.py" line="6383" />
-      <location filename="../QScintilla/Editor.py" line="6375" />
       <source>Show Code Coverage Annotations</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6376" />
-      <source>All lines have been covered.</source>
-      <translation>Foram cobertas as linhas todas.</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="6384" />
+      <source>All lines have been covered.</source>
+      <translation>Foram cobertas as linhas todas.</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="6392" />
       <source>There is no coverage file available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6488" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <source>Profile Data</source>
       <translation>Dados de Perfil</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6489" />
+      <location filename="../QScintilla/Editor.py" line="6497" />
       <source>Please select a profile file</source>
       <translation>Escolha um ficheiro de perfil por favor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6650" />
-      <location filename="../QScintilla/Editor.py" line="6644" />
+      <location filename="../QScintilla/Editor.py" line="6658" />
+      <location filename="../QScintilla/Editor.py" line="6652" />
       <source>Syntax Error</source>
       <translation>Erro de Sintaxe</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6651" />
+      <location filename="../QScintilla/Editor.py" line="6659" />
       <source>No syntax error message available.</source>
       <translation>Não está disponível a mensagem de erro de sintaxe.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
-      <location filename="../QScintilla/Editor.py" line="6856" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6864" />
       <source>Warning</source>
       <translation>Aviso</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
       <source>No warning messages available.</source>
       <translation>Não estão disponíveis mensagens de aviso.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6926" />
+      <location filename="../QScintilla/Editor.py" line="6934" />
       <source>Style: {0}</source>
       <translation>Estilo: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6929" />
+      <location filename="../QScintilla/Editor.py" line="6937" />
       <source>Warning: {0}</source>
       <translation>Aviso: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6936" />
+      <location filename="../QScintilla/Editor.py" line="6944" />
       <source>Error: {0}</source>
       <translation>Erro: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Macro Name</source>
       <translation>Nome de Macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Select a macro name:</source>
       <translation>Selecionar um nome de macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7069" />
+      <location filename="../QScintilla/Editor.py" line="7077" />
       <source>Load macro file</source>
       <translation>Carregar ficheiro macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7115" />
-      <location filename="../QScintilla/Editor.py" line="7071" />
+      <location filename="../QScintilla/Editor.py" line="7123" />
+      <location filename="../QScintilla/Editor.py" line="7079" />
       <source>Macro files (*.macro)</source>
       <translation>Ficheiros Macro (*.macro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7093" />
-      <location filename="../QScintilla/Editor.py" line="7083" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
+      <location filename="../QScintilla/Editor.py" line="7091" />
       <source>Error loading macro</source>
       <translation>Erro ao carregar macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7084" />
+      <location filename="../QScintilla/Editor.py" line="7092" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro macro &lt;b&gt;{0}&lt;/b&gt; não se pode ler.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7094" />
+      <location filename="../QScintilla/Editor.py" line="7102" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro macro &lt;b&gt;{0}&lt;/b&gt; está corrompido.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7113" />
+      <location filename="../QScintilla/Editor.py" line="7121" />
       <source>Save macro file</source>
       <translation>Gravar ficheiro macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7131" />
+      <location filename="../QScintilla/Editor.py" line="7139" />
       <source>Save macro</source>
       <translation>Gravar macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7132" />
+      <location filename="../QScintilla/Editor.py" line="7140" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro macro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever-lo?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7147" />
+      <location filename="../QScintilla/Editor.py" line="7155" />
       <source>Error saving macro</source>
       <translation>Erro ao gravar macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7148" />
+      <location filename="../QScintilla/Editor.py" line="7156" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro macro &lt;b&gt;{0}&lt;/b&gt; não pode ser escrito.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7161" />
+      <location filename="../QScintilla/Editor.py" line="7169" />
       <source>Start Macro Recording</source>
       <translation>Iniciar Registo de Macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7162" />
+      <location filename="../QScintilla/Editor.py" line="7170" />
       <source>Macro recording is already active. Start new?</source>
       <translation>A gravação de macro já está ativada. Começar nova?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7188" />
+      <location filename="../QScintilla/Editor.py" line="7196" />
       <source>Macro Recording</source>
       <translation>Gravação de Macro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7189" />
+      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation>Introduza o nome de macro:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7340" />
+      <location filename="../QScintilla/Editor.py" line="7348" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7346" />
+      <location filename="../QScintilla/Editor.py" line="7354" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation>&lt;br&gt;&lt;b&gt;Aviso:&lt;/b&gt; Perderá todas as alterações uma vez que o volte a abrir.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7353" />
+      <location filename="../QScintilla/Editor.py" line="7361" />
       <source>File changed</source>
       <translation>Ficheiro alterado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7403" />
+      <location filename="../QScintilla/Editor.py" line="7411" />
       <source>{0} (ro)</source>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7708" />
+      <location filename="../QScintilla/Editor.py" line="7716" />
       <source>Drop Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7709" />
+      <location filename="../QScintilla/Editor.py" line="7717" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; não é um ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7729" />
+      <location filename="../QScintilla/Editor.py" line="7737" />
       <source>Resources</source>
       <translation>Recursos</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7739" />
       <source>Add file...</source>
       <translation>Adicionar Ficheiro...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7732" />
+      <location filename="../QScintilla/Editor.py" line="7740" />
       <source>Add files...</source>
       <translation>Adicionar Ficheiros...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7733" />
+      <location filename="../QScintilla/Editor.py" line="7741" />
       <source>Add aliased file...</source>
       <translation>Adicionar ficheiro com pseudónimo...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7735" />
+      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation>Adicionar recursos localizado...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7738" />
+      <location filename="../QScintilla/Editor.py" line="7746" />
       <source>Add resource frame</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7765" />
       <source>Add file resource</source>
       <translation>Adicionar recurso de ficheiro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7771" />
+      <location filename="../QScintilla/Editor.py" line="7779" />
       <source>Add file resources</source>
       <translation>Adicionar recursos de ficheiro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7795" />
-      <location filename="../QScintilla/Editor.py" line="7789" />
+      <location filename="../QScintilla/Editor.py" line="7803" />
+      <location filename="../QScintilla/Editor.py" line="7797" />
       <source>Add aliased file resource</source>
       <translation>Adicionar recurso de ficheiro com pseudónimo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7796" />
+      <location filename="../QScintilla/Editor.py" line="7804" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation>Pseudónimo para o ficheiro &lt;b&gt;{0}&lt;/b&gt;:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7871" />
+      <location filename="../QScintilla/Editor.py" line="7879" />
       <source>Package Diagram</source>
       <translation>Diagrama do Pacote</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7872" />
+      <location filename="../QScintilla/Editor.py" line="7880" />
       <source>Include class attributes?</source>
       <translation>Incluir atributos de classes?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7892" />
+      <location filename="../QScintilla/Editor.py" line="7900" />
       <source>Imports Diagram</source>
       <translation>Diagrama de Imports</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7893" />
+      <location filename="../QScintilla/Editor.py" line="7901" />
       <source>Include imports from external modules?</source>
       <translation>Incluir imports de módulos externos?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7912" />
+      <location filename="../QScintilla/Editor.py" line="7920" />
       <source>Application Diagram</source>
       <translation>Diagrama da Aplicação</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7913" />
+      <location filename="../QScintilla/Editor.py" line="7921" />
       <source>Include module names?</source>
       <translation>Incluir nome dos módulos?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8268" />
+      <location filename="../QScintilla/Editor.py" line="8276" />
       <source>Add to dictionary</source>
       <translation>Adicionar dicionário</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8270" />
+      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation>Ignorar Tudo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8688" />
+      <location filename="../QScintilla/Editor.py" line="8696" />
       <source>Sort Lines</source>
       <translation>Ordenar Linhas</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8689" />
+      <location filename="../QScintilla/Editor.py" line="8697" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation>A seleção contém dados ilegais para uma ordenação numérica.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8782" />
+      <location filename="../QScintilla/Editor.py" line="8790" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8783" />
+      <location filename="../QScintilla/Editor.py" line="8791" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8879" />
+      <location filename="../QScintilla/Editor.py" line="8887" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8885" />
+      <location filename="../QScintilla/Editor.py" line="8893" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8953" />
+      <location filename="../QScintilla/Editor.py" line="8961" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8954" />
+      <location filename="../QScintilla/Editor.py" line="8962" />
       <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" />
     </message>
@@ -18249,12 +18249,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="222" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation type="unfinished">A carregar Folha de Estilos</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="225" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;O ficheiro de Folha de Estilos do Qt &lt;b&gt;{0}&lt;/b&gt; nao pode ser lido. &lt;br&gt;Razao: {1}&lt;/p&gt;</translation>
     </message>
@@ -23189,7 +23189,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2719" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
@@ -23252,370 +23252,370 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2277" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2319" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2340" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2341" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2405" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2387" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2388" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2434" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2423" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <source>List Bundle Heads</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
-      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2452" />
-      <source>List Bundle Heads</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2518" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2821" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
       <source>Git Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
       <source>Process Generation Error</source>
       <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2747" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2729" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
       <source>Create Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2748" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2765" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2784" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
-      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2810" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3154" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3040" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3041" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3176" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3233" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3264" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3311" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
       <source>Copy Changesets (Cancel)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3429" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3552" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3503" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
       <source>Select a stash (empty for latest stash):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3462" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
       <source>Restore Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3516" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
       <source>Create Branch</source>
       <translation type="unfinished">Criar Ramo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3566" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3602" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3603" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3634" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished">A mostrar as definições de configuração combinadas</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3743" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
       <source>Performing Repository Housekeeping</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3784" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
       <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3797" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3820" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
       <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3825" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3898" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4005" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4018" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
       <source>All</source>
       <translation type="unfinished">Tudo</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4022" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
       <source>Submodule Path</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4023" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4072" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4105" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4175" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4136" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4259" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -25946,83 +25946,83 @@
   <context>
     <name>GitProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="473" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="589" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="429" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="324" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="184" />
       <source>Version Control</source>
       <translation type="unfinished">Control de Versão</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="602" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="492" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="340" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="200" />
       <source>Commit changes to repository...</source>
       <translation type="unfinished">Cometer alterações no repositório...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="609" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="496" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="499" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="347" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="207" />
       <source>Add/Stage to repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="614" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="504" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="352" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="212" />
       <source>Unstage changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="621" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="508" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="511" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="359" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="219" />
       <source>Remove from repository (and disk)</source>
       <translation type="unfinished">Retirar do repositorio (e disco)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="365" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="225" />
       <source>Remove from repository only</source>
       <translation type="unfinished">Retirar apenas do repositorio</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="513" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="230" />
       <source>Copy</source>
       <translation type="unfinished">Copiar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="518" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="232" />
       <source>Move</source>
       <translation type="unfinished">Mover</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="523" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="237" />
       <source>Show log browser</source>
       <translation type="unfinished">Mostrar navegador de registos</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="372" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="244" />
       <source>Show status</source>
       <translation type="unfinished">Mostrar estado</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="635" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="534" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="537" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="251" />
       <source>Show differences</source>
@@ -26034,8 +26034,8 @@
       <translation type="unfinished">Mostrar diferenças lado-a-lado</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="543" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="385" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="263" />
       <source>Show differences (extended)</source>
@@ -26062,71 +26062,71 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="648" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="547" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="550" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="392" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="289" />
       <source>Revert changes</source>
       <translation type="unfinished">Desfazer alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="656" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="441" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
-      <source>Select all local file entries</source>
-      <translation type="unfinished">Selecionar todas as entradas de ficheiros locais</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="558" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="444" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
-      <source>Select all versioned file entries</source>
-      <translation type="unfinished">Selecionar todas as entradas de ficheiros versionados</translation>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
+      <source>Select all local file entries</source>
+      <translation type="unfinished">Selecionar todas as entradas de ficheiros locais</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="662" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="561" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="447" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
+      <source>Select all versioned file entries</source>
+      <translation type="unfinished">Selecionar todas as entradas de ficheiros versionados</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="564" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="450" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="406" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="301" />
       <source>Select all local directory entries</source>
       <translation type="unfinished">Selecionar todas as entradas de diretorios locais</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="666" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="454" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="305" />
       <source>Select all versioned directory entries</source>
       <translation type="unfinished">Selecionar todas as entradas de diretorios versionados</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="414" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="309" />
       <source>Configure...</source>
       <translation type="unfinished">Configurar...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="709" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="712" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="699" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation type="unfinished">Tem a certeza de que quer retirar estes ficheiros do repositorio?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="842" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="843" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
@@ -30436,27 +30436,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="198" />
+      <location filename="../Globals/__init__.py" line="199" />
       <source>{0:4.2f} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="201" />
+      <location filename="../Globals/__init__.py" line="202" />
       <source>{0:4.2f} KiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="204" />
+      <location filename="../Globals/__init__.py" line="205" />
       <source>{0:4.2f} MiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="207" />
+      <location filename="../Globals/__init__.py" line="208" />
       <source>{0:4.2f} GiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="210" />
+      <location filename="../Globals/__init__.py" line="211" />
       <source>{0:4.2f} TiB</source>
       <translation type="unfinished" />
     </message>
@@ -36658,75 +36658,75 @@
       <translation>Extensões</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="692" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="579" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="535" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="431" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="289" />
       <source>Version Control</source>
       <translation>Control de Versão</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="595" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="598" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="305" />
       <source>Commit changes to repository...</source>
       <translation>Cometer alterações no repositório...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="606" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="455" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="313" />
       <source>Add to repository</source>
       <translation>Adicionar ao repositorio</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="722" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="725" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="461" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="319" />
       <source>Remove from repository (and disk)</source>
       <translation>Retirar do repositorio (e disco)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="986" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="973" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="989" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="976" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="467" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="325" />
       <source>Remove from repository only</source>
       <translation>Retirar apenas do repositorio</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="614" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="617" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="330" />
       <source>Copy</source>
       <translation>Copiar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="619" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="332" />
       <source>Move</source>
       <translation>Mover</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="621" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="624" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="337" />
       <source>Show log browser</source>
       <translation>Mostrar navegador de registos</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="729" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="732" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="474" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="344" />
       <source>Show status</source>
       <translation>Mostrar estado</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="736" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="739" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="481" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="351" />
       <source>Show differences</source>
@@ -36738,8 +36738,8 @@
       <translation>Mostrar diferenças lado-a-lado</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="644" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="487" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="363" />
       <source>Show differences (extended)</source>
@@ -36766,95 +36766,95 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="749" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="752" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="494" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="389" />
       <source>Revert changes</source>
       <translation>Desfazer alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="753" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="756" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="655" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="498" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="393" />
       <source>Conflicts resolved</source>
       <translation>Conflitos resolvidos</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="755" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="654" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="657" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="500" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="395" />
       <source>Conflicts unresolved</source>
       <translation>Conflitos sem resolver</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="757" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="656" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="760" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="502" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="397" />
       <source>Re-Merge</source>
       <translation>Remesclar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="660" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="547" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
-      <source>Select all local file entries</source>
-      <translation>Selecionar todas as entradas de ficheiros locais</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="764" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="663" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="550" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
-      <source>Select all versioned file entries</source>
-      <translation>Selecionar todas as entradas de ficheiros versionados</translation>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
+      <source>Select all local file entries</source>
+      <translation>Selecionar todas as entradas de ficheiros locais</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="767" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="553" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
+      <source>Select all versioned file entries</source>
+      <translation>Selecionar todas as entradas de ficheiros versionados</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="556" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="407" />
       <source>Select all local directory entries</source>
       <translation>Selecionar todas as entradas de diretorios locais</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="560" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="411" />
       <source>Select all versioned directory entries</source>
       <translation>Selecionar todas as entradas de diretorios versionados</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="775" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="674" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="561" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="778" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="677" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="564" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="520" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="415" />
       <source>Configure...</source>
       <translation>Configurar...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="890" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="893" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="891" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="894" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="987" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="990" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="977" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation>Tem a certeza de que quer retirar estes ficheiros do repositorio?</translation>
     </message>
@@ -51069,43 +51069,43 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="594" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="592" />
       <source>Clear</source>
       <translation type="unfinished">Limpar</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="599" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="597" />
       <source>Copy</source>
       <translation type="unfinished">Copiar</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="603" />
       <source>Paste</source>
       <translation type="unfinished">Colar</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="612" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="610" />
       <source>Select All</source>
       <translation type="unfinished">Selecionar Tudo</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="638" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="636" />
       <source>Press to disconnect the current device</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="643" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="641" />
       <source>Press to connect the selected device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="675" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="673" />
       <source>No device attached</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="674" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -51114,90 +51114,90 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="705" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="703" />
       <source>Start REPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="706" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="704" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1234" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1223" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1224" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1235" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1233" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1293" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1284" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1282" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
       <source>Run Script</source>
       <translation type="unfinished">Executar Script</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1276" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
       <source>There is no editor open. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1285" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1283" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1292" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
       <source>Start Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1329" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1346" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1344" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1363" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1361" />
       <source>Unsaved Chart Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1364" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1362" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1412" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1410" />
       <source>Start File Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1413" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1411" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1433" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1431" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
@@ -51222,7 +51222,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1735" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1554" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
@@ -51248,207 +51248,213 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2138" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1578" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1570" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2150" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2183" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2180" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1574" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1955" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1580" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1959" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1979" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1970" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1983" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1974" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1588" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1609" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
-      <source>Show Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
-      <source>Convert To UF2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1616" />
-      <source>Flash UF2 Device</source>
+      <source>Show Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1619" />
+      <source>Convert To UF2</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1620" />
+      <source>Flash UF2 Device</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1623" />
       <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1622" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1626" />
       <source>Ignored Serial Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1625" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1629" />
       <source>Configure</source>
       <translation type="unfinished">Configurar</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1634" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1638" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1649" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1645" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1641" />
       <source>Device Version Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1646" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1650" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1670" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1674" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1666" />
       <source>unknown</source>
       <translation type="unfinished">desconhecido</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1680" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1683" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1696" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1687" />
       <source>Device Implementation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1688" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1693" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1697" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1736" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1754" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1758" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1762" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1766" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1782" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1794" />
       <source>Local Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1795" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1832" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1815" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1836" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1819" />
       <source>Date and Time</source>
       <translation type="unfinished">Data e Hora</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1816" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1820" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1837" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1857" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1861" />
       <source>Error handling device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1858" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1862" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1900" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1904" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1926" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1930" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished">Ficheiros Python (*.py);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1940" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1945" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1949" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1971" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1975" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2063" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2067" />
       <source>Add Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2068" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2113" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2117" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2151" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2169" />
+      <source>Package '{0}' was installed successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2184" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -51501,198 +51507,198 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="108" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="110" />
       <source>BBC micro:bit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="111" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="113" />
       <source>Calliope mini</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="208" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="210" />
       <source>BBC micro:bit/Calliope Functions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="421" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="409" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="392" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="211" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="411" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="213" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="215" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="217" />
       <source>Flash MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="218" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="220" />
       <source>Flash Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="496" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="222" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="498" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="224" />
       <source>Save Script as 'main.py'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="225" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="227" />
       <source>Save the current script as 'main.py' on the connected device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="229" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="231" />
       <source>Reset {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="375" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="366" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="352" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="335" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="322" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="302" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="377" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="354" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="337" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="324" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="304" />
       <source>Flash MicroPython/Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="303" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="305" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed and plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;See the &lt;a href="https://microbit.org/guide/firmware/"&gt;micro:bit web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="323" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="325" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MICROBIT is available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="336" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="338" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed an plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="353" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="355" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MINI is available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="370" />
       <source>MicroPython/Firmware Files (*.hex *.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="376" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="378" />
       <source>There are multiple devices ready for flashing. Please make sure, that only one device is prepared.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="395" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="410" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="412" />
       <source>&lt;p&gt;The BBC micro:bit generation cannot be determined. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="424" />
       <source>&lt;p&gt;The firmware URL for the device type &lt;b&gt;{0}&lt;/b&gt; is not known. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="452" />
       <source>unknown</source>
       <translation type="unfinished">desconhecido</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="466" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="468" />
       <source>Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="469" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="471" />
       <source>&lt;h4&gt;{0} Version Information&lt;br/&gt;(BBC micro:bit v{1})&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="478" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="480" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="484" />
       <source>{0} Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="502" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="504" />
       <source>The current editor does not contain a Python script. Write it anyway?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="513" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="515" />
       <source>The script is empty. Aborting.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="567" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="569" />
       <source>MicroPython Firmware for BBC micro:bit V1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="599" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="586" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="571" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="601" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="588" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="573" />
       <source>DAPLink Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="578" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="580" />
       <source>MicroPython Firmware for BBC micro:bit V2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="582" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="584" />
       <source>CircuitPython Firmware for BBC micro:bit V2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="595" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="597" />
       <source>MicroPython Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="818" />
-      <source>Active</source>
-      <translation type="unfinished">Ativo</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="819" />
-      <source>Name</source>
-      <translation type="unfinished">Nome</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="820" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
+      <source>Active</source>
+      <translation type="unfinished">Ativo</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="821" />
+      <source>Name</source>
+      <translation type="unfinished">Nome</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="822" />
-      <source>Address Type</source>
+      <source>MAC-Address</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="824" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="826" />
       <source>Connected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="825" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="827" />
       <source>Advertising</source>
       <translation type="unfinished" />
     </message>
@@ -51794,720 +51800,740 @@
   <context>
     <name>MiniEditor</name>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="459" />
+      <location filename="../QScintilla/MiniEditor.py" line="460" />
       <source>About eric Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="461" />
       <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don't need the power of a full blown editor.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="529" />
+      <location filename="../QScintilla/MiniEditor.py" line="530" />
       <source>Line: {0:5}</source>
       <translation>Linha: {0:5}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="533" />
+      <location filename="../QScintilla/MiniEditor.py" line="534" />
       <source>Pos: {0:5}</source>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="547" />
+      <location filename="../QScintilla/MiniEditor.py" line="548" />
       <source>Language: {0}</source>
       <translation type="unfinished">Linguagem: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="610" />
       <source>New</source>
       <translation>Novo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="611" />
-      <source>&amp;New</source>
-      <translation>&amp;Novo</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="612" />
+      <source>&amp;New</source>
+      <translation>&amp;Novo</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="613" />
       <source>Ctrl+N</source>
       <comment>File|New</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="617" />
+      <location filename="../QScintilla/MiniEditor.py" line="618" />
       <source>Open an empty editor window</source>
       <translation>Abrir uma janela do editor vazia</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="619" />
+      <location filename="../QScintilla/MiniEditor.py" line="620" />
       <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Novo&lt;/b&gt;&lt;p&gt;Será criada uma janela do editor vazia.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="625" />
+      <location filename="../QScintilla/MiniEditor.py" line="626" />
       <source>Open</source>
       <translation>Abrir</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="627" />
-      <source>&amp;Open...</source>
-      <translation>&amp;Abrir...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="628" />
+      <source>&amp;Open...</source>
+      <translation>&amp;Abrir...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="629" />
       <source>Ctrl+O</source>
       <comment>File|Open</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="633" />
+      <location filename="../QScintilla/MiniEditor.py" line="634" />
       <source>Open a file</source>
       <translation>Abrir um ficheiro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="635" />
+      <location filename="../QScintilla/MiniEditor.py" line="636" />
       <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Abrir um ficheiro&lt;/b&gt;&lt;p&gt;Será perguntado pelo nome de um ficheiro para abrir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="644" />
+      <location filename="../QScintilla/MiniEditor.py" line="645" />
       <source>Save</source>
       <translation>Gravar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="646" />
-      <source>&amp;Save</source>
-      <translation>&amp;Gravar</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="647" />
+      <source>&amp;Save</source>
+      <translation>&amp;Gravar</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="648" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="652" />
+      <location filename="../QScintilla/MiniEditor.py" line="653" />
       <source>Save the current file</source>
       <translation>Gravar o ficheiro atual</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="654" />
+      <location filename="../QScintilla/MiniEditor.py" line="655" />
       <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gravar Ficheiro&lt;/b&gt;&lt;p&gt;Grava o conteúdo da janela atual do editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="663" />
+      <location filename="../QScintilla/MiniEditor.py" line="664" />
       <source>Save as</source>
       <translation>Gravar como</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="665" />
-      <source>Save &amp;as...</source>
-      <translation>Gr&amp;avar como...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="666" />
+      <source>Save &amp;as...</source>
+      <translation>Gr&amp;avar como...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="667" />
       <source>Shift+Ctrl+S</source>
       <comment>File|Save As</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="671" />
+      <location filename="../QScintilla/MiniEditor.py" line="672" />
       <source>Save the current file to a new one</source>
       <translation>Gravar o ficheiro atual para um novo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="673" />
+      <location filename="../QScintilla/MiniEditor.py" line="674" />
       <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gravar Ficheiro como&lt;/b&gt;&lt;p&gt;Gravar o conteúdo da janela do editor atual num ficheiro novo. O ficheiro pode ser introduzido com uma caixa de diálogo de seleção de ficheiros.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="683" />
+      <location filename="../QScintilla/MiniEditor.py" line="684" />
       <source>Save Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="686" />
       <source>Save &amp;Copy...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="691" />
+      <location filename="../QScintilla/MiniEditor.py" line="692" />
       <source>Save a copy of the current file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="693" />
+      <location filename="../QScintilla/MiniEditor.py" line="694" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="703" />
+      <location filename="../QScintilla/MiniEditor.py" line="704" />
       <source>Close</source>
       <translation>Fechar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="705" />
-      <source>&amp;Close</source>
-      <translation>Fe&amp;char</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="706" />
+      <source>&amp;Close</source>
+      <translation>Fe&amp;char</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="707" />
       <source>Ctrl+W</source>
       <comment>File|Close</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="711" />
+      <location filename="../QScintilla/MiniEditor.py" line="712" />
       <source>Close the editor window</source>
       <translation>Fechar a janela do editor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="713" />
+      <location filename="../QScintilla/MiniEditor.py" line="714" />
       <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Fechar Janela&lt;/b&gt;&lt;p&gt;Fecha a janela atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="719" />
+      <location filename="../QScintilla/MiniEditor.py" line="720" />
       <source>Print</source>
       <translation>Imprimir</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="721" />
-      <source>&amp;Print</source>
-      <translation>Im&amp;primir</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="722" />
+      <source>&amp;Print</source>
+      <translation>Im&amp;primir</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="723" />
       <source>Ctrl+P</source>
       <comment>File|Print</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="727" />
+      <location filename="../QScintilla/MiniEditor.py" line="728" />
       <source>Print the current file</source>
       <translation>Imprimir o ficheiro atual</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="729" />
+      <location filename="../QScintilla/MiniEditor.py" line="730" />
       <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of the current file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Imprimir Ficheiro&lt;/b&gt;&lt;p&gt;Imprime o conteúdo do ficheiro atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="738" />
+      <location filename="../QScintilla/MiniEditor.py" line="739" />
       <source>Print Preview</source>
       <translation>Antevisão da Impressão</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="747" />
       <source>Print preview of the current file</source>
       <translation>Antevisão da impressão do ficheiro atual</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="748" />
+      <location filename="../QScintilla/MiniEditor.py" line="749" />
       <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Antevisão da Impressão&lt;/b&gt;&lt;p&gt;Antevisão da Impressão do ficheiro atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="761" />
+      <location filename="../QScintilla/MiniEditor.py" line="762" />
       <source>Undo</source>
       <translation>Desfazer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="763" />
-      <source>&amp;Undo</source>
-      <translation>Desfa&amp;zer</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="764" />
-      <source>Ctrl+Z</source>
-      <comment>Edit|Undo</comment>
-      <translation />
+      <source>&amp;Undo</source>
+      <translation>Desfa&amp;zer</translation>
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="765" />
+      <source>Ctrl+Z</source>
+      <comment>Edit|Undo</comment>
+      <translation />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="766" />
       <source>Alt+Backspace</source>
       <comment>Edit|Undo</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="769" />
+      <location filename="../QScintilla/MiniEditor.py" line="770" />
       <source>Undo the last change</source>
       <translation>Desfazer a última alteração</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="771" />
+      <location filename="../QScintilla/MiniEditor.py" line="772" />
       <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Desfazer&lt;/b&gt;&lt;p&gt;Desfazer a última alteração feita no editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="780" />
+      <location filename="../QScintilla/MiniEditor.py" line="781" />
       <source>Redo</source>
       <translation>Refazer</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="782" />
-      <source>&amp;Redo</source>
-      <translation>&amp;Refazer</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="783" />
+      <source>&amp;Redo</source>
+      <translation>&amp;Refazer</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="784" />
       <source>Ctrl+Shift+Z</source>
       <comment>Edit|Redo</comment>
       <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="788" />
+      <location filename="../QScintilla/MiniEditor.py" line="789" />
       <source>Redo the last change</source>
       <translation>Refazer a última alteração</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="790" />
+      <location filename="../QScintilla/MiniEditor.py" line="791" />
       <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Refazer&lt;/b&gt;&lt;p&gt;Refazer a últma alteração feita no editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="799" />
+      <location filename="../QScintilla/MiniEditor.py" line="800" />
       <source>Cut</source>
       <translation>Cortar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="801" />
-      <source>Cu&amp;t</source>
-      <translation>Cor&amp;tar</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="802" />
-      <source>Ctrl+X</source>
-      <comment>Edit|Cut</comment>
-      <translation />
+      <source>Cu&amp;t</source>
+      <translation>Cor&amp;tar</translation>
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="803" />
+      <source>Ctrl+X</source>
+      <comment>Edit|Cut</comment>
+      <translation />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="804" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="807" />
+      <location filename="../QScintilla/MiniEditor.py" line="808" />
       <source>Cut the selection</source>
       <translation>Cortar a seleção</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="809" />
+      <location filename="../QScintilla/MiniEditor.py" line="810" />
       <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Cortar&lt;/b&gt;&lt;p&gt;Recorta a seleção do texto do editor atual para a Área de Transferência.&lt;p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="819" />
+      <location filename="../QScintilla/MiniEditor.py" line="820" />
       <source>Copy</source>
       <translation>Copiar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="821" />
-      <source>&amp;Copy</source>
-      <translation>&amp;Copiar</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="822" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
-      <translation />
+      <source>&amp;Copy</source>
+      <translation>&amp;Copiar</translation>
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="823" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="824" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="827" />
+      <location filename="../QScintilla/MiniEditor.py" line="828" />
       <source>Copy the selection</source>
       <translation>Copiar a seleção</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="829" />
+      <location filename="../QScintilla/MiniEditor.py" line="830" />
       <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Copiar&lt;/b&gt;&lt;p&gt;Copia a seleção de texto do editor atual para a Área de Transferência.&lt;p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="839" />
+      <location filename="../QScintilla/MiniEditor.py" line="840" />
       <source>Paste</source>
       <translation>Colar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="841" />
-      <source>&amp;Paste</source>
-      <translation>Co&amp;lar</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="842" />
-      <source>Ctrl+V</source>
-      <comment>Edit|Paste</comment>
-      <translation />
+      <source>&amp;Paste</source>
+      <translation>Co&amp;lar</translation>
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="843" />
+      <source>Ctrl+V</source>
+      <comment>Edit|Paste</comment>
+      <translation />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="844" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="847" />
+      <location filename="../QScintilla/MiniEditor.py" line="848" />
       <source>Paste the last cut/copied text</source>
       <translation>Colar o último texto cortado/copiado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="849" />
+      <location filename="../QScintilla/MiniEditor.py" line="850" />
       <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Colar&lt;/b&gt;&lt;p&gt;Cola o último texto cortado/copiado da área de transferência ao editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="859" />
+      <location filename="../QScintilla/MiniEditor.py" line="860" />
       <source>Clear</source>
       <translation>Limpar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="861" />
-      <source>Cl&amp;ear</source>
-      <translation>Li&amp;mpar</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="862" />
+      <source>Cl&amp;ear</source>
+      <translation>Li&amp;mpar</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="863" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation>Alt+Shift+C</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="867" />
+      <location filename="../QScintilla/MiniEditor.py" line="868" />
       <source>Clear all text</source>
       <translation>Limpar todo o texto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="869" />
+      <location filename="../QScintilla/MiniEditor.py" line="870" />
       <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Limpar&lt;/b&gt;&lt;p&gt;Apaga o texto todo do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>About</source>
       <translation>Acerca</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>&amp;About</source>
       <translation>A&amp;cerca</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2863" />
+      <location filename="../QScintilla/MiniEditor.py" line="2864" />
       <source>Display information about this software</source>
       <translation>Mostra a informação acerca deste software</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2865" />
+      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Acerca&lt;/b&gt;&lt;p&gt;Mostra alguma informação acerca deste software.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About Qt</source>
       <translation>Acerca de Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About &amp;Qt</source>
       <translation>Acerca de &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2877" />
+      <location filename="../QScintilla/MiniEditor.py" line="2878" />
       <source>Display information about the Qt toolkit</source>
       <translation>Mostra informação acerca das Ferramentas de Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2880" />
+      <location filename="../QScintilla/MiniEditor.py" line="2881" />
       <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Acerca de Qt&lt;/b&gt;&lt;p&gt;Mostra alguma informação acerca das Ferramentas de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2889" />
+      <location filename="../QScintilla/MiniEditor.py" line="2890" />
       <source>What's This?</source>
       <translation>O que é Isto?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2891" />
-      <source>&amp;What's This?</source>
-      <translation>O &amp;que é Isto?</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <source>&amp;What's This?</source>
+      <translation>O &amp;que é Isto?</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2893" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2897" />
+      <location filename="../QScintilla/MiniEditor.py" line="2898" />
       <source>Context sensitive help</source>
       <translation>Ajuda sensível ao contexto</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2899" />
+      <location filename="../QScintilla/MiniEditor.py" line="2900" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Mostrar ajuda sensível a contexto&lt;/b&gt;&lt;p&gt;No modo 'Que é Isto?' o cursor do rato mostra uma flecha com um ponto de  interrogação, e pode clicar nos elementos da interface para ver uma breve descrição do que fazem e como se usam. Nas caixas de diálogo, pode-se aceder a esta característica através do botão de ajuda contextual da barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2918" />
       <source>Preferences</source>
       <translation type="unfinished">Preferências</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2920" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished">&amp;Preferências...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2925" />
+      <location filename="../QScintilla/MiniEditor.py" line="2926" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished">Definir a configuração desejada</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2927" />
+      <location filename="../QScintilla/MiniEditor.py" line="2928" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Preferências&lt;/b&gt;&lt;p&gt;Define os elementos de configuração da aplicação com os valores desejados.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2941" />
+      <location filename="../QScintilla/MiniEditor.py" line="2942" />
       <source>&amp;File</source>
       <translation>&amp;Ficheiro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2953" />
+      <location filename="../QScintilla/MiniEditor.py" line="2954" />
       <source>&amp;Edit</source>
       <translation>&amp;Editar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2963" />
+      <location filename="../QScintilla/MiniEditor.py" line="2964" />
       <source>&amp;Search</source>
       <translation type="unfinished">&amp;Procurar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2974" />
       <source>&amp;View</source>
       <translation type="unfinished">&amp;Vista</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2979" />
+      <location filename="../QScintilla/MiniEditor.py" line="2980" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished">Definiçõe&amp;s</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2985" />
       <source>&amp;Help</source>
       <translation>&amp;Ajuda</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2996" />
+      <location filename="../QScintilla/MiniEditor.py" line="2997" />
       <source>File</source>
       <translation>Ficheiro</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3008" />
+      <location filename="../QScintilla/MiniEditor.py" line="3009" />
       <source>Edit</source>
       <translation>Editar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3017" />
+      <location filename="../QScintilla/MiniEditor.py" line="3018" />
       <source>Search</source>
       <translation type="unfinished">Procurar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3023" />
+      <location filename="../QScintilla/MiniEditor.py" line="3024" />
       <source>View</source>
       <translation type="unfinished">Vista</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3029" />
+      <location filename="../QScintilla/MiniEditor.py" line="3030" />
       <source>Settings</source>
       <translation type="unfinished">Definições</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3032" />
+      <location filename="../QScintilla/MiniEditor.py" line="3033" />
       <source>Help</source>
       <translation>Ajuda</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3045" />
+      <location filename="../QScintilla/MiniEditor.py" line="3046" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3055" />
+      <location filename="../QScintilla/MiniEditor.py" line="3056" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta parte da barra de estado mostra as permissões dos ficheiro do editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3064" />
+      <location filename="../QScintilla/MiniEditor.py" line="3065" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta parte da barra de estado mostra a linha do cursor do editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3073" />
+      <location filename="../QScintilla/MiniEditor.py" line="3074" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Esta parte da barra de estado mostra a posição do cursor do editor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3087" />
+      <location filename="../QScintilla/MiniEditor.py" line="3088" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3094" />
+      <location filename="../QScintilla/MiniEditor.py" line="3095" />
       <source>Ready</source>
       <translation>Preparado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3169" />
-      <source>eric Mini Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <source>eric Mini Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3171" />
       <source>The document has unsaved changes.</source>
       <translation>O documento tem alterações por gravar.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3197" />
-      <source>Open File</source>
-      <translation>Abrir Ficheiro</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <source>Open File</source>
+      <translation>Abrir Ficheiro</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3199" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Não se pôde abrir o ficheiro &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt; Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3226" />
+      <location filename="../QScintilla/MiniEditor.py" line="3227" />
       <source>File loaded</source>
       <translation>Ficheiro carregado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3307" />
-      <source>Save File</source>
-      <translation>Gravar Ficheiro</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <source>Save File</source>
+      <translation>Gravar Ficheiro</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3309" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; não se pôde gravar. &lt;br/&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3314" />
+      <location filename="../QScintilla/MiniEditor.py" line="3315" />
       <source>File saved</source>
       <translation>Ficheiro gravado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>[*] - {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>Mini Editor</source>
       <translation>Mini Editor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3683" />
-      <location filename="../QScintilla/MiniEditor.py" line="3654" />
-      <location filename="../QScintilla/MiniEditor.py" line="3338" />
+      <location filename="../QScintilla/MiniEditor.py" line="3684" />
+      <location filename="../QScintilla/MiniEditor.py" line="3655" />
+      <location filename="../QScintilla/MiniEditor.py" line="3339" />
       <source>Untitled</source>
       <translation>Sem Título</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
       <source>{0}[*] - {1}</source>
       <translation />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3649" />
+      <location filename="../QScintilla/MiniEditor.py" line="3650" />
       <source>Printing...</source>
       <translation>A imprimir...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3665" />
+      <location filename="../QScintilla/MiniEditor.py" line="3666" />
       <source>Printing completed</source>
       <translation>Impressão completa</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3667" />
+      <location filename="../QScintilla/MiniEditor.py" line="3668" />
       <source>Error while printing</source>
       <translation>Erro durante a impressão</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3670" />
+      <location filename="../QScintilla/MiniEditor.py" line="3671" />
       <source>Printing aborted</source>
       <translation>Impressão cancelada</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3724" />
-      <source>Select all</source>
-      <translation>Selecionar tudo</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <source>Select all</source>
+      <translation>Selecionar tudo</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3726" />
       <source>Deselect all</source>
       <translation>Desselecionar tudo</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3738" />
+      <location filename="../QScintilla/MiniEditor.py" line="3739" />
       <source>Languages</source>
       <translation>Idiomas</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3741" />
+      <location filename="../QScintilla/MiniEditor.py" line="3742" />
       <source>No Language</source>
       <translation>Sem Idioma</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3763" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Guessed</source>
       <translation>Adivinhado</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3785" />
-      <location filename="../QScintilla/MiniEditor.py" line="3767" />
+      <location filename="../QScintilla/MiniEditor.py" line="3786" />
+      <location filename="../QScintilla/MiniEditor.py" line="3768" />
       <source>Alternatives</source>
       <translation>Alternativas</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3783" />
       <source>Alternatives ({0})</source>
       <translation>Alternativas ({0})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3813" />
-      <source>Pygments Lexer</source>
-      <translation>Analizador Léxico Pygments</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <source>Pygments Lexer</source>
+      <translation>Analizador Léxico Pygments</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3815" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>Selecionar o analizador léxico Pygments a aplicar.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4326" />
+      <location filename="../QScintilla/MiniEditor.py" line="4336" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4327" />
+      <location filename="../QScintilla/MiniEditor.py" line="4337" />
       <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" />
     </message>
   </context>
   <context>
+    <name>MipLocalInstaller</name>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="185" />
+      <source>Unable to find 'lib' in sys.path. Please enter a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="229" />
+      <source>
+
+Package may be partially installed.</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>MipPackageDialog</name>
     <message>
+      <location filename="../MicroPython/MipPackageDialog.py" line="34" />
+      <source>Enter the URL of the package index. Leave empty to use the default index ({0}).</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
       <source>Install Package</source>
       <translation type="unfinished" />
@@ -52542,6 +52568,21 @@
       <source>Install .mpy File</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Target Directory:</source>
+      <translation type="unfinished">Diretório de Destino:</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Enter the directory to install to (must be contained in sys.path). Leave empty to detect automatically.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Package Index:</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>MiscellaneousChecker</name>
@@ -53201,194 +53242,194 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="603" />
-      <location filename="../MultiProject/MultiProject.py" line="593" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="591" />
       <source>Multi Project Files (*.emj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="599" />
       <source>Save Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="617" />
+      <location filename="../MultiProject/MultiProject.py" line="615" />
       <source>Save File</source>
       <translation>Gravar Ficheiro</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="618" />
+      <location filename="../MultiProject/MultiProject.py" line="616" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="644" />
+      <location filename="../MultiProject/MultiProject.py" line="642" />
       <source>Close Multiproject</source>
       <translation>Fechar Multiprojeto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="645" />
+      <location filename="../MultiProject/MultiProject.py" line="643" />
       <source>The current multiproject has unsaved changes.</source>
       <translation>O multiprojeto atual tem alterações por gravar.</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="696" />
+      <source>New multiproject</source>
+      <translation>Multiprojeto novo</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="698" />
-      <source>New multiproject</source>
-      <translation>Multiprojeto novo</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>&amp;New...</source>
       <translation>&amp;Novo...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="704" />
+      <source>Generate a new multiproject</source>
+      <translation>Criar um multiprojeto novo</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="706" />
-      <source>Generate a new multiproject</source>
-      <translation>Criar um multiprojeto novo</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Novo...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para introduzir a informação para um multiprojeto novo.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="716" />
+      <source>Open multiproject</source>
+      <translation>Abrir multiprojeto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="718" />
-      <source>Open multiproject</source>
-      <translation>Abrir multiprojeto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="720" />
       <source>&amp;Open...</source>
       <translation>&amp;Abrir...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="724" />
+      <source>Open an existing multiproject</source>
+      <translation>Abrir um multiprojeto existente</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="726" />
-      <source>Open an existing multiproject</source>
-      <translation>Abrir um multiprojeto existente</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="728" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Abrir...&lt;/b&gt;&lt;p&gt;Isto abre um multiprojeto existente.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="732" />
+      <source>Close multiproject</source>
+      <translation>Fechar multiprojeto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="734" />
-      <source>Close multiproject</source>
-      <translation>Fechar multiprojeto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&amp;Close</source>
       <translation>Fe&amp;char</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="740" />
+      <source>Close the current multiproject</source>
+      <translation>Fechar o multiprojeto atual</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="742" />
-      <source>Close the current multiproject</source>
-      <translation>Fechar o multiprojeto atual</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Fechar&lt;/b&gt;&lt;p&gt;Fecha o multiprojeto atual&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="748" />
+      <source>Save multiproject</source>
+      <translation>Gravar multiprojeto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="750" />
-      <source>Save multiproject</source>
-      <translation>Gravar multiprojeto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="752" />
       <source>&amp;Save</source>
       <translation>&amp;Gravar</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="756" />
+      <source>Save the current multiproject</source>
+      <translation>Gravar o multiprojeto actual</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="758" />
-      <source>Save the current multiproject</source>
-      <translation>Gravar o multiprojeto actual</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="760" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gravar&lt;/b&gt;&lt;p&gt;Guarda o multiprojeto atual.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <source>Save multiproject as</source>
+      <translation>Gravar multiprojeto como</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="766" />
-      <source>Save multiproject as</source>
-      <translation>Gravar multiprojeto como</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="768" />
       <source>Save &amp;as...</source>
       <translation>Gr&amp;avar como...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="775" />
+      <location filename="../MultiProject/MultiProject.py" line="773" />
       <source>Save the current multiproject to a new file</source>
       <translation>Gravar o multiprojeto atual num ficheiro novo</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="778" />
+      <location filename="../MultiProject/MultiProject.py" line="776" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Gravar como&lt;/b&gt;&lt;p&gt;Guarda o multiprojeto atual para um ficheiro novo.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="785" />
+      <source>Add project to multiproject</source>
+      <translation>Adicionar projeto ao multiprojeto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="787" />
-      <source>Add project to multiproject</source>
-      <translation>Adicionar projeto ao multiprojeto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="789" />
       <source>Add &amp;project...</source>
       <translation>Adicionar &amp;projeto...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="796" />
+      <location filename="../MultiProject/MultiProject.py" line="794" />
       <source>Add a project to the current multiproject</source>
       <translation>Adicionar um projeto ao multiprojeto atual</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="799" />
+      <location filename="../MultiProject/MultiProject.py" line="797" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Adicionar projeto...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para adicionar um projeto ao multiprojeto atual.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="807" />
+      <source>Multiproject properties</source>
+      <translation>Propriedades do multiprojeto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="809" />
-      <source>Multiproject properties</source>
-      <translation>Propriedades do multiprojeto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="811" />
       <source>&amp;Properties...</source>
       <translation>&amp;Propriedades...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="815" />
+      <source>Show the multiproject properties</source>
+      <translation>Mostrar as propriedades do multiprojeto</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="817" />
-      <source>Show the multiproject properties</source>
-      <translation>Mostrar as propriedades do multiprojeto</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Propriedades...&lt;/b&gt;&lt;p&gt;Mostra uma caixa de diálogo para editar as propriedades do multiprojeto.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="840" />
+      <location filename="../MultiProject/MultiProject.py" line="838" />
       <source>&amp;Multiproject</source>
       <translation>&amp;Multiprojeto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="841" />
+      <location filename="../MultiProject/MultiProject.py" line="839" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation>Abrir Multiprojetos &amp;Recentes</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="880" />
       <location filename="../MultiProject/MultiProject.py" line="878" />
+      <location filename="../MultiProject/MultiProject.py" line="876" />
       <source>Multiproject</source>
       <translation>Multiprojeto</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="935" />
+      <location filename="../MultiProject/MultiProject.py" line="933" />
       <source>&amp;Clear</source>
       <translation>&amp;Limpar</translation>
     </message>
@@ -69531,7 +69572,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="417" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="415" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -69542,7 +69583,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="381" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="379" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="367" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="349" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="239" />
@@ -69580,42 +69621,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="380" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="378" />
       <source>'st-flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="400" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="398" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="401" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="399" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="416" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="444" />
       <source>unknown</source>
       <translation type="unfinished">desconhecido</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="460" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="462" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -70069,49 +70110,49 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="155" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="154" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="151" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="150" />
       <source>Find Next</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="168" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="167" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="164" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="163" />
       <source>Find Prev</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="181" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="180" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="177" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="176" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="197" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="196" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="191" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="190" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="211" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="210" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="205" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="204" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1048" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1045" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="597" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="559" />
       <source>'{0}' was not found.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1201" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1198" />
       <source>Replaced {0} occurrences.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1207" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1204" />
       <source>Nothing replaced because '{0}' was not found.</source>
       <translation type="unfinished" />
     </message>
@@ -77843,50 +77884,50 @@
   <context>
     <name>SvnProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="734" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="591" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="594" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="547" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="394" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="593" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="546" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="596" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="549" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="399" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="210" />
       <source>Version Control</source>
       <translation type="unfinished">Control de Versão</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="750" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="607" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="753" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="610" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="224" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="758" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="761" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="415" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="226" />
       <source>Update from repository</source>
       <translation type="unfinished">Atualizar desde o repositorio</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="756" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="616" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="416" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="230" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="764" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="615" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="767" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="618" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="421" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="232" />
       <source>Commit changes to repository...</source>
       <translation type="unfinished">Cometer alterações no repositório...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="763" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="620" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="623" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="423" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="237" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="622" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="625" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="428" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="239" />
       <source>Add to repository</source>
@@ -77901,90 +77942,90 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="769" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="626" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="772" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="629" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="436" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="250" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="441" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="252" />
       <source>Remove from repository (and disk)</source>
       <translation type="unfinished">Retirar do repositorio (e disco)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="634" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="255" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="257" />
       <source>Copy</source>
       <translation>Copiar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="257" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="259" />
       <source>Move</source>
       <translation type="unfinished">Mover</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="776" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="779" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="641" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="443" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="262" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="784" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="787" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="643" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="448" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="264" />
       <source>Add to Changelist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="780" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="783" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="645" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="266" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="788" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="647" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="452" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="268" />
       <source>Remove from Changelist</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="272" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="650" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="653" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="274" />
       <source>Show log browser</source>
       <translation type="unfinished">Mostrar navegador de registos</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="786" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="655" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="658" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="453" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="279" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="794" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="660" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="281" />
       <source>Show status</source>
       <translation type="unfinished">Mostrar estado</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="663" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="287" />
       <source>Show repository info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="793" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="662" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="665" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="801" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="670" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="673" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="465" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="294" />
       <source>Show differences</source>
@@ -77997,12 +78038,12 @@
       <translation type="unfinished">Mostrar diferenças lado-a-lado</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="799" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="802" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="671" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="466" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="298" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="807" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="810" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="679" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="471" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="306" />
       <source>Show differences (extended)</source>
@@ -78015,12 +78056,12 @@
       <translation type="unfinished">Selecionar para mostrar as diferenças lado-a-lado (extendido)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="805" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="472" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="310" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="813" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="685" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="477" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="318" />
       <source>Show differences (URLs)</source>
@@ -78033,34 +78074,34 @@
       <translation type="unfinished">Mostrar ficheiro anotado</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="812" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="681" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="815" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="684" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="479" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="319" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="820" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="689" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="823" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="692" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="484" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="327" />
       <source>Revert changes</source>
       <translation type="unfinished">Desfazer alterações</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="818" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="690" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="826" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="829" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="333" />
       <source>Merge changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="822" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="691" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="483" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="329" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="830" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="699" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="488" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="337" />
       <source>Conflicts resolved</source>
@@ -78099,106 +78140,106 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="828" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="697" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="510" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="356" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="836" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="361" />
       <source>Set Property</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="827" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="830" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="699" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="358" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="835" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="838" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="707" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="363" />
       <source>List Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="829" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="698" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="832" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="701" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="360" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="837" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="709" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="365" />
       <source>Delete Property</source>
       <translation type="unfinished">Apagar Propriedade</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="559" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="841" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="710" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="561" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
-      <source>Select all local file entries</source>
-      <translation type="unfinished">Selecionar todas as entradas de ficheiros locais</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="836" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="562" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="844" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="713" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
-      <source>Select all versioned file entries</source>
-      <translation type="unfinished">Selecionar todas as entradas de ficheiros versionados</translation>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
+      <source>Select all local file entries</source>
+      <translation type="unfinished">Selecionar todas as entradas de ficheiros locais</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="839" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="708" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="847" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="716" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="567" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
+      <source>Select all versioned file entries</source>
+      <translation type="unfinished">Selecionar todas as entradas de ficheiros versionados</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="842" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="570" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="526" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="375" />
       <source>Select all local directory entries</source>
       <translation type="unfinished">Selecionar todas as entradas de diretorios locais</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="843" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="712" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="846" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="715" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="572" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="528" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="374" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="851" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="720" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="571" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="854" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="723" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="574" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="379" />
       <source>Select all versioned directory entries</source>
       <translation type="unfinished">Selecionar todas as entradas de diretorios versionados</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="847" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="576" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="532" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="378" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="855" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="724" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="575" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="858" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="727" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="578" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="534" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="383" />
       <source>Configure...</source>
@@ -90740,8 +90781,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
+      <location filename="../QScintilla/MiniEditor.py" line="1685" />
       <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/MiniEditor.py" line="1683" />
       <location filename="../QScintilla/ShellWindow.py" line="435" />
       <location filename="../QScintilla/ShellWindow.py" line="434" />
       <source>Delete current line</source>
@@ -90749,7 +90790,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
+      <location filename="../QScintilla/MiniEditor.py" line="1686" />
       <location filename="../QScintilla/ShellWindow.py" line="436" />
       <source>Ctrl+Shift+L</source>
       <translation />
@@ -90757,8 +90798,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="1207" />
       <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/MiniEditor.py" line="1205" />
       <location filename="../QScintilla/ShellWindow.py" line="447" />
       <location filename="../QScintilla/ShellWindow.py" line="446" />
       <source>Indent one level</source>
@@ -90766,7 +90807,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
+      <location filename="../QScintilla/MiniEditor.py" line="1208" />
       <location filename="../QScintilla/ShellWindow.py" line="448" />
       <source>Tab</source>
       <translation />
@@ -90774,8 +90815,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
+      <location filename="../QScintilla/MiniEditor.py" line="1673" />
       <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1671" />
       <location filename="../QScintilla/ShellWindow.py" line="459" />
       <location filename="../QScintilla/ShellWindow.py" line="458" />
       <source>Insert new line</source>
@@ -90783,14 +90824,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
+      <location filename="../QScintilla/MiniEditor.py" line="1674" />
       <location filename="../QScintilla/ShellWindow.py" line="460" />
       <source>Return</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
+      <location filename="../QScintilla/MiniEditor.py" line="1675" />
       <location filename="../QScintilla/ShellWindow.py" line="461" />
       <source>Enter</source>
       <translation />
@@ -90798,8 +90839,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
+      <location filename="../QScintilla/MiniEditor.py" line="1559" />
       <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1557" />
       <location filename="../QScintilla/ShellWindow.py" line="471" />
       <location filename="../QScintilla/ShellWindow.py" line="470" />
       <source>Delete previous character</source>
@@ -90807,21 +90848,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
+      <location filename="../QScintilla/MiniEditor.py" line="1560" />
       <location filename="../QScintilla/ShellWindow.py" line="472" />
       <source>Backspace</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1566" />
+      <location filename="../QScintilla/MiniEditor.py" line="1567" />
       <location filename="../QScintilla/ShellWindow.py" line="479" />
       <source>Meta+H</source>
       <translation>Meta+H</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1571" />
+      <location filename="../QScintilla/MiniEditor.py" line="1572" />
       <location filename="../QScintilla/ShellWindow.py" line="484" />
       <source>Shift+Backspace</source>
       <translation />
@@ -90829,8 +90870,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
+      <location filename="../QScintilla/MiniEditor.py" line="1597" />
       <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1595" />
       <location filename="../QScintilla/ShellWindow.py" line="493" />
       <location filename="../QScintilla/ShellWindow.py" line="492" />
       <source>Delete current character</source>
@@ -90838,14 +90879,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
+      <location filename="../QScintilla/MiniEditor.py" line="1598" />
       <location filename="../QScintilla/ShellWindow.py" line="494" />
       <source>Del</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1604" />
+      <location filename="../QScintilla/MiniEditor.py" line="1605" />
       <location filename="../QScintilla/ShellWindow.py" line="501" />
       <source>Meta+D</source>
       <translation>Meta+D</translation>
@@ -90853,8 +90894,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
+      <location filename="../QScintilla/MiniEditor.py" line="1613" />
       <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/MiniEditor.py" line="1611" />
       <location filename="../QScintilla/ShellWindow.py" line="509" />
       <location filename="../QScintilla/ShellWindow.py" line="508" />
       <source>Delete word to left</source>
@@ -90862,7 +90903,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1614" />
       <location filename="../QScintilla/ShellWindow.py" line="510" />
       <source>Ctrl+Backspace</source>
       <translation />
@@ -90870,8 +90911,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1625" />
       <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/MiniEditor.py" line="1623" />
       <location filename="../QScintilla/ShellWindow.py" line="521" />
       <location filename="../QScintilla/ShellWindow.py" line="520" />
       <source>Delete word to right</source>
@@ -90879,7 +90920,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
+      <location filename="../QScintilla/MiniEditor.py" line="1626" />
       <location filename="../QScintilla/ShellWindow.py" line="522" />
       <source>Ctrl+Del</source>
       <translation />
@@ -90887,8 +90928,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
+      <location filename="../QScintilla/MiniEditor.py" line="1637" />
       <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/MiniEditor.py" line="1635" />
       <location filename="../QScintilla/ShellWindow.py" line="533" />
       <location filename="../QScintilla/ShellWindow.py" line="532" />
       <source>Delete line to left</source>
@@ -90896,7 +90937,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1638" />
+      <location filename="../QScintilla/MiniEditor.py" line="1639" />
       <location filename="../QScintilla/ShellWindow.py" line="535" />
       <source>Ctrl+Shift+Backspace</source>
       <translation />
@@ -90904,8 +90945,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
+      <location filename="../QScintilla/MiniEditor.py" line="1651" />
       <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/MiniEditor.py" line="1649" />
       <location filename="../QScintilla/ShellWindow.py" line="547" />
       <location filename="../QScintilla/ShellWindow.py" line="546" />
       <source>Delete line to right</source>
@@ -90913,14 +90954,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1658" />
+      <location filename="../QScintilla/MiniEditor.py" line="1659" />
       <location filename="../QScintilla/ShellWindow.py" line="555" />
       <source>Meta+K</source>
       <translation>Meta+K</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1663" />
+      <location filename="../QScintilla/MiniEditor.py" line="1664" />
       <location filename="../QScintilla/ShellWindow.py" line="560" />
       <source>Ctrl+Shift+Del</source>
       <translation />
@@ -90928,8 +90969,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
+      <location filename="../QScintilla/MiniEditor.py" line="895" />
       <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/MiniEditor.py" line="893" />
       <location filename="../QScintilla/ShellWindow.py" line="569" />
       <location filename="../QScintilla/ShellWindow.py" line="568" />
       <source>Move left one character</source>
@@ -90937,14 +90978,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
+      <location filename="../QScintilla/MiniEditor.py" line="896" />
       <location filename="../QScintilla/ShellWindow.py" line="570" />
       <source>Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="904" />
       <location filename="../QScintilla/ShellWindow.py" line="578" />
       <source>Meta+B</source>
       <translation>Meta+B</translation>
@@ -90952,8 +90993,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="911" />
       <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/MiniEditor.py" line="909" />
       <location filename="../QScintilla/ShellWindow.py" line="585" />
       <location filename="../QScintilla/ShellWindow.py" line="584" />
       <source>Move right one character</source>
@@ -90961,14 +91002,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
+      <location filename="../QScintilla/MiniEditor.py" line="912" />
       <location filename="../QScintilla/ShellWindow.py" line="586" />
       <source>Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="918" />
+      <location filename="../QScintilla/MiniEditor.py" line="919" />
       <location filename="../QScintilla/ShellWindow.py" line="593" />
       <source>Meta+F</source>
       <translation>Meta+F</translation>
@@ -90976,8 +91017,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="991" />
       <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/MiniEditor.py" line="989" />
       <location filename="../QScintilla/ShellWindow.py" line="601" />
       <location filename="../QScintilla/ShellWindow.py" line="600" />
       <source>Move left one word</source>
@@ -90986,8 +91027,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="998" />
-      <location filename="../QScintilla/MiniEditor.py" line="966" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/MiniEditor.py" line="967" />
       <location filename="../QScintilla/ShellWindow.py" line="609" />
       <source>Alt+Left</source>
       <translation />
@@ -90995,8 +91036,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1058" />
-      <location filename="../QScintilla/MiniEditor.py" line="1002" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
+      <location filename="../QScintilla/MiniEditor.py" line="1003" />
       <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Ctrl+Left</source>
       <translation />
@@ -91004,8 +91045,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
+      <location filename="../QScintilla/MiniEditor.py" line="1011" />
       <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/MiniEditor.py" line="1009" />
       <location filename="../QScintilla/ShellWindow.py" line="621" />
       <location filename="../QScintilla/ShellWindow.py" line="620" />
       <source>Move right one word</source>
@@ -91014,8 +91055,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1812" />
-      <location filename="../QScintilla/MiniEditor.py" line="1022" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="1023" />
       <location filename="../QScintilla/ShellWindow.py" line="629" />
       <source>Ctrl+Right</source>
       <translation />
@@ -91023,8 +91064,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1032" />
-      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1033" />
+      <location filename="../QScintilla/MiniEditor.py" line="1030" />
       <location filename="../QScintilla/ShellWindow.py" line="639" />
       <location filename="../QScintilla/ShellWindow.py" line="636" />
       <source>Move to first visible character in document line</source>
@@ -91033,8 +91074,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2073" />
-      <location filename="../QScintilla/MiniEditor.py" line="1042" />
+      <location filename="../QScintilla/MiniEditor.py" line="2074" />
+      <location filename="../QScintilla/MiniEditor.py" line="1043" />
       <location filename="../QScintilla/ShellWindow.py" line="649" />
       <source>Home</source>
       <translation type="unfinished">Página Inicial</translation>
@@ -91042,8 +91083,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
+      <location filename="../QScintilla/MiniEditor.py" line="1071" />
       <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/MiniEditor.py" line="1069" />
       <location filename="../QScintilla/ShellWindow.py" line="657" />
       <location filename="../QScintilla/ShellWindow.py" line="656" />
       <source>Move to end of document line</source>
@@ -91051,7 +91092,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1078" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
       <location filename="../QScintilla/ShellWindow.py" line="665" />
       <source>Meta+E</source>
       <translation type="unfinished">Meta+E</translation>
@@ -91059,8 +91100,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1083" />
       <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>End</source>
       <translation type="unfinished">Fim</translation>
@@ -91068,8 +91109,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="927" />
       <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/MiniEditor.py" line="925" />
       <location filename="../QScintilla/ShellWindow.py" line="677" />
       <location filename="../QScintilla/ShellWindow.py" line="676" />
       <source>Move up one line</source>
@@ -91077,14 +91118,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
+      <location filename="../QScintilla/MiniEditor.py" line="928" />
       <location filename="../QScintilla/ShellWindow.py" line="678" />
       <source>Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="934" />
+      <location filename="../QScintilla/MiniEditor.py" line="935" />
       <location filename="../QScintilla/ShellWindow.py" line="685" />
       <source>Meta+P</source>
       <translation type="unfinished">Meta+P</translation>
@@ -91092,8 +91133,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
+      <location filename="../QScintilla/MiniEditor.py" line="943" />
       <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/MiniEditor.py" line="941" />
       <location filename="../QScintilla/ShellWindow.py" line="693" />
       <location filename="../QScintilla/ShellWindow.py" line="692" />
       <source>Move down one line</source>
@@ -91101,14 +91142,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="944" />
       <location filename="../QScintilla/ShellWindow.py" line="694" />
       <source>Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="950" />
+      <location filename="../QScintilla/MiniEditor.py" line="951" />
       <location filename="../QScintilla/ShellWindow.py" line="701" />
       <source>Meta+N</source>
       <translation type="unfinished">Meta+N</translation>
@@ -91116,8 +91157,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1194" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
+      <location filename="../QScintilla/MiniEditor.py" line="1092" />
       <location filename="../QScintilla/ShellWindow.py" line="710" />
       <source>Ctrl+Down</source>
       <translation />
@@ -91125,8 +91166,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1174" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
+      <location filename="../QScintilla/MiniEditor.py" line="1104" />
       <location filename="../QScintilla/ShellWindow.py" line="722" />
       <source>Ctrl+Up</source>
       <translation />
@@ -91134,8 +91175,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1139" />
       <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/MiniEditor.py" line="1137" />
       <location filename="../QScintilla/ShellWindow.py" line="733" />
       <location filename="../QScintilla/ShellWindow.py" line="732" />
       <source>Move up one page</source>
@@ -91143,7 +91184,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
+      <location filename="../QScintilla/MiniEditor.py" line="1140" />
       <location filename="../QScintilla/ShellWindow.py" line="734" />
       <source>PgUp</source>
       <translation />
@@ -91151,8 +91192,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
+      <location filename="../QScintilla/MiniEditor.py" line="1151" />
       <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1149" />
       <location filename="../QScintilla/ShellWindow.py" line="745" />
       <location filename="../QScintilla/ShellWindow.py" line="744" />
       <source>Move down one page</source>
@@ -91160,14 +91201,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1152" />
       <location filename="../QScintilla/ShellWindow.py" line="746" />
       <source>PgDown</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1158" />
+      <location filename="../QScintilla/MiniEditor.py" line="1159" />
       <location filename="../QScintilla/ShellWindow.py" line="753" />
       <source>Meta+V</source>
       <translation type="unfinished">Meta+V</translation>
@@ -91175,8 +91216,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
+      <location filename="../QScintilla/MiniEditor.py" line="1859" />
       <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/MiniEditor.py" line="1857" />
       <location filename="../QScintilla/ShellWindow.py" line="761" />
       <location filename="../QScintilla/ShellWindow.py" line="760" />
       <source>Escape</source>
@@ -91184,7 +91225,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
+      <location filename="../QScintilla/MiniEditor.py" line="1860" />
       <location filename="../QScintilla/ShellWindow.py" line="762" />
       <source>Esc</source>
       <translation />
@@ -91192,8 +91233,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1233" />
+      <location filename="../QScintilla/MiniEditor.py" line="1230" />
       <location filename="../QScintilla/ShellWindow.py" line="775" />
       <location filename="../QScintilla/ShellWindow.py" line="772" />
       <source>Extend selection left one character</source>
@@ -91201,14 +91242,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1235" />
+      <location filename="../QScintilla/MiniEditor.py" line="1236" />
       <location filename="../QScintilla/ShellWindow.py" line="778" />
       <source>Shift+Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1242" />
+      <location filename="../QScintilla/MiniEditor.py" line="1243" />
       <location filename="../QScintilla/ShellWindow.py" line="785" />
       <source>Meta+Shift+B</source>
       <translation />
@@ -91216,8 +91257,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1253" />
+      <location filename="../QScintilla/MiniEditor.py" line="1250" />
       <location filename="../QScintilla/ShellWindow.py" line="795" />
       <location filename="../QScintilla/ShellWindow.py" line="792" />
       <source>Extend selection right one character</source>
@@ -91225,14 +91266,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1255" />
+      <location filename="../QScintilla/MiniEditor.py" line="1256" />
       <location filename="../QScintilla/ShellWindow.py" line="798" />
       <source>Shift+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1262" />
+      <location filename="../QScintilla/MiniEditor.py" line="1263" />
       <location filename="../QScintilla/ShellWindow.py" line="805" />
       <source>Meta+Shift+F</source>
       <translation />
@@ -91240,8 +91281,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
+      <location filename="../QScintilla/MiniEditor.py" line="1347" />
       <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/MiniEditor.py" line="1345" />
       <location filename="../QScintilla/ShellWindow.py" line="813" />
       <location filename="../QScintilla/ShellWindow.py" line="812" />
       <source>Extend selection left one word</source>
@@ -91250,8 +91291,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1355" />
-      <location filename="../QScintilla/MiniEditor.py" line="1315" />
+      <location filename="../QScintilla/MiniEditor.py" line="1356" />
+      <location filename="../QScintilla/MiniEditor.py" line="1316" />
       <location filename="../QScintilla/ShellWindow.py" line="822" />
       <source>Alt+Shift+Left</source>
       <translation />
@@ -91259,8 +91300,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2276" />
-      <location filename="../QScintilla/MiniEditor.py" line="1361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2277" />
+      <location filename="../QScintilla/MiniEditor.py" line="1362" />
       <location filename="../QScintilla/ShellWindow.py" line="828" />
       <source>Ctrl+Shift+Left</source>
       <translation />
@@ -91268,8 +91309,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1372" />
-      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1373" />
+      <location filename="../QScintilla/MiniEditor.py" line="1370" />
       <location filename="../QScintilla/ShellWindow.py" line="839" />
       <location filename="../QScintilla/ShellWindow.py" line="836" />
       <source>Extend selection right one word</source>
@@ -91279,9 +91320,9 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1383" />
-      <location filename="../QScintilla/MiniEditor.py" line="1337" />
+      <location filename="../QScintilla/MiniEditor.py" line="2151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1384" />
+      <location filename="../QScintilla/MiniEditor.py" line="1338" />
       <location filename="../QScintilla/ShellWindow.py" line="850" />
       <source>Alt+Shift+Right</source>
       <translation />
@@ -91289,8 +91330,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1837" />
-      <location filename="../QScintilla/MiniEditor.py" line="1389" />
+      <location filename="../QScintilla/MiniEditor.py" line="1838" />
+      <location filename="../QScintilla/MiniEditor.py" line="1390" />
       <location filename="../QScintilla/ShellWindow.py" line="856" />
       <source>Ctrl+Shift+Right</source>
       <translation />
@@ -91298,8 +91339,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1401" />
-      <location filename="../QScintilla/MiniEditor.py" line="1397" />
+      <location filename="../QScintilla/MiniEditor.py" line="1402" />
+      <location filename="../QScintilla/MiniEditor.py" line="1398" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
       <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
@@ -91307,7 +91348,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1412" />
+      <location filename="../QScintilla/MiniEditor.py" line="1413" />
       <location filename="../QScintilla/ShellWindow.py" line="879" />
       <source>Shift+Home</source>
       <translation />
@@ -91315,8 +91356,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1422" />
-      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1423" />
+      <location filename="../QScintilla/MiniEditor.py" line="1420" />
       <location filename="../QScintilla/ShellWindow.py" line="889" />
       <location filename="../QScintilla/ShellWindow.py" line="886" />
       <source>Extend selection to end of document line</source>
@@ -91324,14 +91365,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1432" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
       <location filename="../QScintilla/ShellWindow.py" line="899" />
       <source>Meta+Shift+E</source>
       <translation>Meta+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1437" />
       <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Shift+End</source>
       <translation />
@@ -91340,21 +91381,21 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2532" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
       <location filename="../QScintilla/ShellWindow.py" line="917" />
       <source>Search</source>
       <translation>Procurar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2534" />
+      <location filename="../QScintilla/MiniEditor.py" line="2535" />
       <location filename="../QScintilla/ShellWindow.py" line="919" />
       <source>&amp;Search...</source>
       <translation>&amp;Procurar...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2536" />
+      <location filename="../QScintilla/MiniEditor.py" line="2537" />
       <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
@@ -91362,7 +91403,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2543" />
+      <location filename="../QScintilla/MiniEditor.py" line="2544" />
       <location filename="../QScintilla/ShellWindow.py" line="928" />
       <source>Search for a text</source>
       <translation>Procurar um texto</translation>
@@ -91374,21 +91415,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
       <location filename="../QScintilla/ShellWindow.py" line="943" />
       <source>Search next</source>
       <translation>Procurar próximo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2560" />
+      <location filename="../QScintilla/MiniEditor.py" line="2561" />
       <location filename="../QScintilla/ShellWindow.py" line="945" />
       <source>Search &amp;next</source>
       <translation>Procurar &amp;próximo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2562" />
+      <location filename="../QScintilla/MiniEditor.py" line="2563" />
       <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>F3</source>
       <comment>Search|Search next</comment>
@@ -91396,7 +91437,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2569" />
+      <location filename="../QScintilla/MiniEditor.py" line="2570" />
       <location filename="../QScintilla/ShellWindow.py" line="954" />
       <source>Search next occurrence of text</source>
       <translation>Procurar a próxima ocurrência do texto</translation>
@@ -91408,21 +91449,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2584" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
       <location filename="../QScintilla/ShellWindow.py" line="971" />
       <source>Search previous</source>
       <translation>Procurar anterior</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2586" />
+      <location filename="../QScintilla/MiniEditor.py" line="2587" />
       <location filename="../QScintilla/ShellWindow.py" line="973" />
       <source>Search &amp;previous</source>
       <translation>Procurar &amp;anterior</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2588" />
+      <location filename="../QScintilla/MiniEditor.py" line="2589" />
       <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
@@ -91430,7 +91471,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2597" />
+      <location filename="../QScintilla/MiniEditor.py" line="2598" />
       <location filename="../QScintilla/ShellWindow.py" line="984" />
       <source>Search previous occurrence of text</source>
       <translation>Procurar ocurrência anterior do texto</translation>
@@ -91442,21 +91483,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2757" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
       <location filename="../QScintilla/ShellWindow.py" line="1010" />
       <source>Zoom in</source>
       <translation>Aproximar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2759" />
+      <location filename="../QScintilla/MiniEditor.py" line="2760" />
       <location filename="../QScintilla/ShellWindow.py" line="1012" />
       <source>Zoom &amp;in</source>
       <translation>Apro&amp;ximar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/MiniEditor.py" line="2762" />
       <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
@@ -91464,7 +91505,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2764" />
+      <location filename="../QScintilla/MiniEditor.py" line="2765" />
       <location filename="../QScintilla/ShellWindow.py" line="1017" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
@@ -91472,35 +91513,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/MiniEditor.py" line="2771" />
       <location filename="../QScintilla/ShellWindow.py" line="1023" />
       <source>Zoom in on the text</source>
       <translation>Aproximar no texto</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2773" />
+      <location filename="../QScintilla/MiniEditor.py" line="2774" />
       <location filename="../QScintilla/ShellWindow.py" line="1026" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aproximar&lt;/b&gt;&lt;p&gt;Aproximar no texto. Isto faz o texto mais grande.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2783" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
       <location filename="../QScintilla/ShellWindow.py" line="1036" />
       <source>Zoom out</source>
       <translation>Afastar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2785" />
+      <location filename="../QScintilla/MiniEditor.py" line="2786" />
       <location filename="../QScintilla/ShellWindow.py" line="1038" />
       <source>Zoom &amp;out</source>
       <translation>A&amp;fastar</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/MiniEditor.py" line="2788" />
       <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
@@ -91508,7 +91549,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2790" />
+      <location filename="../QScintilla/MiniEditor.py" line="2791" />
       <location filename="../QScintilla/ShellWindow.py" line="1043" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
@@ -91516,35 +91557,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/MiniEditor.py" line="2797" />
       <location filename="../QScintilla/ShellWindow.py" line="1049" />
       <source>Zoom out on the text</source>
       <translation>Afastar no texto</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2799" />
+      <location filename="../QScintilla/MiniEditor.py" line="2800" />
       <location filename="../QScintilla/ShellWindow.py" line="1052" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Afastar&lt;/b&gt;&lt;p&gt;Afastar no texto. Isto faz o texto mais pequeno.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2809" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
       <location filename="../QScintilla/ShellWindow.py" line="1062" />
       <source>Zoom reset</source>
       <translation>Restaurar zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2811" />
+      <location filename="../QScintilla/MiniEditor.py" line="2812" />
       <location filename="../QScintilla/ShellWindow.py" line="1064" />
       <source>Zoom &amp;reset</source>
       <translation>&amp;Restaurar zoom</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2813" />
+      <location filename="../QScintilla/MiniEditor.py" line="2814" />
       <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
@@ -91552,42 +91593,42 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/MiniEditor.py" line="2821" />
       <location filename="../QScintilla/ShellWindow.py" line="1073" />
       <source>Reset the zoom of the text</source>
       <translation>Reiniciar o zoom do texto</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2823" />
+      <location filename="../QScintilla/MiniEditor.py" line="2824" />
       <location filename="../QScintilla/ShellWindow.py" line="1076" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2834" />
+      <location filename="../QScintilla/MiniEditor.py" line="2835" />
       <location filename="../QScintilla/ShellWindow.py" line="1087" />
       <source>Zoom</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2836" />
+      <location filename="../QScintilla/MiniEditor.py" line="2837" />
       <location filename="../QScintilla/ShellWindow.py" line="1089" />
       <source>&amp;Zoom</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/MiniEditor.py" line="2844" />
       <location filename="../QScintilla/ShellWindow.py" line="1096" />
       <source>Zoom the text</source>
       <translation>Zoom no texto</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2846" />
+      <location filename="../QScintilla/MiniEditor.py" line="2847" />
       <location filename="../QScintilla/ShellWindow.py" line="1099" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation type="unfinished" />
@@ -91595,984 +91636,984 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="804" />
       <location filename="../ViewManager/ViewManager.py" line="802" />
-      <location filename="../QScintilla/MiniEditor.py" line="740" />
+      <location filename="../QScintilla/MiniEditor.py" line="741" />
       <source>Print Preview</source>
       <translation>Antevisão da Impressão</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
+      <location filename="../QScintilla/MiniEditor.py" line="959" />
       <location filename="../QScintilla/MiniEditor.py" line="958" />
-      <location filename="../QScintilla/MiniEditor.py" line="957" />
       <source>Move left one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
+      <location filename="../QScintilla/MiniEditor.py" line="975" />
       <location filename="../QScintilla/MiniEditor.py" line="974" />
-      <location filename="../QScintilla/MiniEditor.py" line="973" />
       <source>Move right one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2128" />
-      <location filename="../QScintilla/MiniEditor.py" line="1018" />
-      <location filename="../QScintilla/MiniEditor.py" line="982" />
+      <location filename="../QScintilla/MiniEditor.py" line="2129" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/MiniEditor.py" line="983" />
       <source>Alt+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1051" />
       <location filename="../QScintilla/MiniEditor.py" line="1050" />
-      <location filename="../QScintilla/MiniEditor.py" line="1049" />
       <source>Move to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="1063" />
       <source>Alt+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
+      <location filename="../QScintilla/MiniEditor.py" line="1091" />
       <location filename="../QScintilla/MiniEditor.py" line="1090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1089" />
       <source>Scroll view down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
+      <location filename="../QScintilla/MiniEditor.py" line="1103" />
       <location filename="../QScintilla/MiniEditor.py" line="1102" />
-      <location filename="../QScintilla/MiniEditor.py" line="1101" />
       <source>Scroll view up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
+      <location filename="../QScintilla/MiniEditor.py" line="1115" />
       <location filename="../QScintilla/MiniEditor.py" line="1114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1113" />
       <source>Move up one paragraph</source>
       <translation>Mover um parágrafo acima</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
+      <location filename="../QScintilla/MiniEditor.py" line="1116" />
       <source>Alt+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
+      <location filename="../QScintilla/MiniEditor.py" line="1127" />
       <location filename="../QScintilla/MiniEditor.py" line="1126" />
-      <location filename="../QScintilla/MiniEditor.py" line="1125" />
       <source>Move down one paragraph</source>
       <translation>Mover um parágrafo abaixo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
+      <location filename="../QScintilla/MiniEditor.py" line="1128" />
       <source>Alt+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
+      <location filename="../QScintilla/MiniEditor.py" line="1167" />
       <location filename="../QScintilla/MiniEditor.py" line="1166" />
-      <location filename="../QScintilla/MiniEditor.py" line="1165" />
       <source>Move to start of document</source>
       <translation>Mover ao princípio do documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1178" />
+      <location filename="../QScintilla/MiniEditor.py" line="1179" />
       <source>Ctrl+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
+      <location filename="../QScintilla/MiniEditor.py" line="1187" />
       <location filename="../QScintilla/MiniEditor.py" line="1186" />
-      <location filename="../QScintilla/MiniEditor.py" line="1185" />
       <source>Move to end of document</source>
       <translation>Mover ao final do documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1198" />
+      <location filename="../QScintilla/MiniEditor.py" line="1199" />
       <source>Ctrl+End</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
+      <location filename="../QScintilla/MiniEditor.py" line="1219" />
       <location filename="../QScintilla/MiniEditor.py" line="1218" />
-      <location filename="../QScintilla/MiniEditor.py" line="1217" />
       <source>Unindent one level</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
+      <location filename="../QScintilla/MiniEditor.py" line="1220" />
       <source>Shift+Tab</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
+      <location filename="../QScintilla/MiniEditor.py" line="1271" />
       <location filename="../QScintilla/MiniEditor.py" line="1270" />
-      <location filename="../QScintilla/MiniEditor.py" line="1269" />
       <source>Extend selection up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
+      <location filename="../QScintilla/MiniEditor.py" line="1272" />
       <source>Shift+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1278" />
+      <location filename="../QScintilla/MiniEditor.py" line="1279" />
       <source>Meta+Shift+P</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
+      <location filename="../QScintilla/MiniEditor.py" line="1287" />
       <location filename="../QScintilla/MiniEditor.py" line="1286" />
-      <location filename="../QScintilla/MiniEditor.py" line="1285" />
       <source>Extend selection down one line</source>
       <translation>Estende a seleção abaixo uma linha</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
+      <location filename="../QScintilla/MiniEditor.py" line="1288" />
       <source>Shift+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1294" />
+      <location filename="../QScintilla/MiniEditor.py" line="1295" />
       <source>Meta+Shift+N</source>
       <translation>Meta+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1304" />
-      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1305" />
+      <location filename="../QScintilla/MiniEditor.py" line="1302" />
       <source>Extend selection left one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1326" />
-      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1327" />
+      <location filename="../QScintilla/MiniEditor.py" line="1324" />
       <source>Extend selection right one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1446" />
-      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1447" />
+      <location filename="../QScintilla/MiniEditor.py" line="1444" />
       <source>Extend selection up one paragraph</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1449" />
+      <location filename="../QScintilla/MiniEditor.py" line="1450" />
       <source>Alt+Shift+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1462" />
-      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1463" />
+      <location filename="../QScintilla/MiniEditor.py" line="1460" />
       <source>Extend selection down one paragraph</source>
       <translation>Estende a seleção abaixo uma parágrafo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1465" />
+      <location filename="../QScintilla/MiniEditor.py" line="1466" />
       <source>Alt+Shift+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1477" />
       <location filename="../QScintilla/MiniEditor.py" line="1476" />
-      <location filename="../QScintilla/MiniEditor.py" line="1475" />
       <source>Extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
+      <location filename="../QScintilla/MiniEditor.py" line="1478" />
       <source>Shift+PgUp</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="1489" />
       <location filename="../QScintilla/MiniEditor.py" line="1488" />
-      <location filename="../QScintilla/MiniEditor.py" line="1487" />
       <source>Extend selection down one page</source>
       <translation>Estende a seleção abaixo uma página</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
+      <location filename="../QScintilla/MiniEditor.py" line="1490" />
       <source>Shift+PgDown</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1496" />
+      <location filename="../QScintilla/MiniEditor.py" line="1497" />
       <source>Meta+Shift+V</source>
       <translation>Meta+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1506" />
-      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1507" />
+      <location filename="../QScintilla/MiniEditor.py" line="1504" />
       <source>Extend selection to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1516" />
+      <location filename="../QScintilla/MiniEditor.py" line="1517" />
       <source>Ctrl+Shift+Up</source>
       <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1521" />
+      <location filename="../QScintilla/MiniEditor.py" line="1522" />
       <source>Ctrl+Shift+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1533" />
+      <location filename="../QScintilla/MiniEditor.py" line="1530" />
       <source>Extend selection to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1543" />
+      <location filename="../QScintilla/MiniEditor.py" line="1544" />
       <source>Ctrl+Shift+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1549" />
+      <location filename="../QScintilla/MiniEditor.py" line="1550" />
       <source>Ctrl+Shift+End</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1583" />
+      <location filename="../QScintilla/MiniEditor.py" line="1580" />
       <source>Delete previous character if not at start of line</source>
       <translation>Apagar o caratér anterior se não está ao princípio da linha</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1697" />
       <location filename="../QScintilla/MiniEditor.py" line="1696" />
-      <location filename="../QScintilla/MiniEditor.py" line="1695" />
       <source>Duplicate current line</source>
       <translation>Duplicar a linha atual</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
+      <location filename="../QScintilla/MiniEditor.py" line="1698" />
       <source>Ctrl+D</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1710" />
-      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1711" />
+      <location filename="../QScintilla/MiniEditor.py" line="1708" />
       <source>Swap current and previous lines</source>
       <translation>Trocar a linha atual pela anterior</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1713" />
+      <location filename="../QScintilla/MiniEditor.py" line="1714" />
       <source>Ctrl+T</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="1725" />
       <location filename="../QScintilla/MiniEditor.py" line="1724" />
-      <location filename="../QScintilla/MiniEditor.py" line="1723" />
       <source>Reverse selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
+      <location filename="../QScintilla/MiniEditor.py" line="1726" />
       <source>Meta+Alt+R</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
+      <location filename="../QScintilla/MiniEditor.py" line="1737" />
       <location filename="../QScintilla/MiniEditor.py" line="1736" />
-      <location filename="../QScintilla/MiniEditor.py" line="1735" />
       <source>Cut current line</source>
       <translation>Cortar a linha atual</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
+      <location filename="../QScintilla/MiniEditor.py" line="1738" />
       <source>Alt+Shift+L</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
+      <location filename="../QScintilla/MiniEditor.py" line="1749" />
       <location filename="../QScintilla/MiniEditor.py" line="1748" />
-      <location filename="../QScintilla/MiniEditor.py" line="1747" />
       <source>Copy current line</source>
       <translation>Copiar a linha atual</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="1750" />
       <source>Ctrl+Shift+T</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
+      <location filename="../QScintilla/MiniEditor.py" line="1761" />
       <location filename="../QScintilla/MiniEditor.py" line="1760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1759" />
       <source>Toggle insert/overtype</source>
       <translation>Alternar inserir/sobreescrever</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
+      <location filename="../QScintilla/MiniEditor.py" line="1762" />
       <source>Ins</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1775" />
+      <location filename="../QScintilla/MiniEditor.py" line="1772" />
       <source>Convert selection to lower case</source>
       <translation>Convertir a seleção para minúsculas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1777" />
+      <location filename="../QScintilla/MiniEditor.py" line="1778" />
       <source>Alt+Shift+U</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1791" />
+      <location filename="../QScintilla/MiniEditor.py" line="1788" />
       <source>Convert selection to upper case</source>
       <translation>Convertir a seleção para maiúsculas</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1793" />
+      <location filename="../QScintilla/MiniEditor.py" line="1794" />
       <source>Ctrl+Shift+U</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
+      <location filename="../QScintilla/MiniEditor.py" line="1805" />
       <location filename="../QScintilla/MiniEditor.py" line="1804" />
-      <location filename="../QScintilla/MiniEditor.py" line="1803" />
       <source>Move to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1816" />
+      <location filename="../QScintilla/MiniEditor.py" line="1817" />
       <source>Alt+End</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1827" />
+      <location filename="../QScintilla/MiniEditor.py" line="1824" />
       <source>Extend selection to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
+      <location filename="../QScintilla/MiniEditor.py" line="1847" />
       <location filename="../QScintilla/MiniEditor.py" line="1846" />
-      <location filename="../QScintilla/MiniEditor.py" line="1845" />
       <source>Formfeed</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1872" />
-      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1873" />
+      <location filename="../QScintilla/MiniEditor.py" line="1870" />
       <source>Extend rectangular selection down one line</source>
       <translation>Aumentar a seleção retangular uma linha abaixo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1875" />
+      <location filename="../QScintilla/MiniEditor.py" line="1876" />
       <source>Alt+Ctrl+Down</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1883" />
+      <location filename="../QScintilla/MiniEditor.py" line="1884" />
       <source>Meta+Alt+Shift+N</source>
       <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1894" />
-      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1895" />
+      <location filename="../QScintilla/MiniEditor.py" line="1892" />
       <source>Extend rectangular selection up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1897" />
+      <location filename="../QScintilla/MiniEditor.py" line="1898" />
       <source>Alt+Ctrl+Up</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1905" />
+      <location filename="../QScintilla/MiniEditor.py" line="1906" />
       <source>Meta+Alt+Shift+P</source>
       <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1916" />
-      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1917" />
+      <location filename="../QScintilla/MiniEditor.py" line="1914" />
       <source>Extend rectangular selection left one character</source>
       <translation>Aumentar a seleção retangular um caratér à esquerda</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1919" />
+      <location filename="../QScintilla/MiniEditor.py" line="1920" />
       <source>Alt+Ctrl+Left</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1927" />
+      <location filename="../QScintilla/MiniEditor.py" line="1928" />
       <source>Meta+Alt+Shift+B</source>
       <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1938" />
-      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1939" />
+      <location filename="../QScintilla/MiniEditor.py" line="1936" />
       <source>Extend rectangular selection right one character</source>
       <translation>Aumentar a seleção retangular um caratér à direita</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1941" />
+      <location filename="../QScintilla/MiniEditor.py" line="1942" />
       <source>Alt+Ctrl+Right</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1949" />
+      <location filename="../QScintilla/MiniEditor.py" line="1950" />
       <source>Meta+Alt+Shift+F</source>
       <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1962" />
-      <location filename="../QScintilla/MiniEditor.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1963" />
+      <location filename="../QScintilla/MiniEditor.py" line="1958" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1975" />
+      <location filename="../QScintilla/MiniEditor.py" line="1976" />
       <source>Alt+Shift+Home</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1986" />
-      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1987" />
+      <location filename="../QScintilla/MiniEditor.py" line="1984" />
       <source>Extend rectangular selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1997" />
+      <location filename="../QScintilla/MiniEditor.py" line="1998" />
       <source>Meta+Alt+Shift+E</source>
       <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2002" />
+      <location filename="../QScintilla/MiniEditor.py" line="2003" />
       <source>Alt+Shift+End</source>
       <translation>Alt+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2012" />
-      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2013" />
+      <location filename="../QScintilla/MiniEditor.py" line="2010" />
       <source>Extend rectangular selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2015" />
+      <location filename="../QScintilla/MiniEditor.py" line="2016" />
       <source>Alt+Shift+PgUp</source>
       <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2028" />
-      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2029" />
+      <location filename="../QScintilla/MiniEditor.py" line="2026" />
       <source>Extend rectangular selection down one page</source>
       <translation>Aumentar a seleção retangular uma página abaixo</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2031" />
+      <location filename="../QScintilla/MiniEditor.py" line="2032" />
       <source>Alt+Shift+PgDown</source>
       <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2039" />
+      <location filename="../QScintilla/MiniEditor.py" line="2040" />
       <source>Meta+Alt+Shift+V</source>
       <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2515" />
       <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2513" />
+      <location filename="../QScintilla/MiniEditor.py" line="2049" />
       <location filename="../QScintilla/MiniEditor.py" line="2048" />
-      <location filename="../QScintilla/MiniEditor.py" line="2047" />
       <source>Duplicate current selection</source>
       <translation>Duplicar a seleção atual</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2516" />
+      <location filename="../QScintilla/MiniEditor.py" line="2050" />
       <source>Ctrl+Shift+D</source>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2063" />
-      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2061" />
       <source>Scroll to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
+      <location filename="../QScintilla/MiniEditor.py" line="2083" />
       <location filename="../QScintilla/MiniEditor.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="2081" />
       <source>Scroll to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2101" />
-      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2102" />
+      <location filename="../QScintilla/MiniEditor.py" line="2099" />
       <source>Scroll vertically to center current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2111" />
+      <location filename="../QScintilla/MiniEditor.py" line="2112" />
       <source>Meta+L</source>
       <translation>Meta+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
+      <location filename="../QScintilla/MiniEditor.py" line="2121" />
       <location filename="../QScintilla/MiniEditor.py" line="2120" />
-      <location filename="../QScintilla/MiniEditor.py" line="2119" />
       <source>Move to end of next word</source>
       <translation>Mover ao fim da palavra seguinte</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2139" />
-      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2140" />
+      <location filename="../QScintilla/MiniEditor.py" line="2137" />
       <source>Extend selection to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2162" />
-      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2163" />
+      <location filename="../QScintilla/MiniEditor.py" line="2160" />
       <source>Move to end of previous word</source>
       <translation>Mover ao fim da palavra anterior</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2179" />
-      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2180" />
+      <location filename="../QScintilla/MiniEditor.py" line="2177" />
       <source>Extend selection to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2196" />
-      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2197" />
+      <location filename="../QScintilla/MiniEditor.py" line="2194" />
       <source>Move to start of document line</source>
       <translation>Mover ao início da linha do documento</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2206" />
+      <location filename="../QScintilla/MiniEditor.py" line="2207" />
       <source>Meta+A</source>
       <translation>Meta+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2218" />
+      <location filename="../QScintilla/MiniEditor.py" line="2215" />
       <source>Extend selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2228" />
+      <location filename="../QScintilla/MiniEditor.py" line="2229" />
       <source>Meta+Shift+A</source>
       <translation>Meta+Shift+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2241" />
-      <location filename="../QScintilla/MiniEditor.py" line="2237" />
+      <location filename="../QScintilla/MiniEditor.py" line="2242" />
+      <location filename="../QScintilla/MiniEditor.py" line="2238" />
       <source>Extend rectangular selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2253" />
+      <location filename="../QScintilla/MiniEditor.py" line="2254" />
       <source>Meta+Alt+Shift+A</source>
       <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2265" />
-      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2266" />
+      <location filename="../QScintilla/MiniEditor.py" line="2263" />
       <source>Extend selection to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2288" />
-      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2289" />
+      <location filename="../QScintilla/MiniEditor.py" line="2286" />
       <source>Move to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2306" />
-      <location filename="../QScintilla/MiniEditor.py" line="2302" />
+      <location filename="../QScintilla/MiniEditor.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="2303" />
       <source>Extend selection to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2325" />
-      <location filename="../QScintilla/MiniEditor.py" line="2321" />
+      <location filename="../QScintilla/MiniEditor.py" line="2326" />
+      <location filename="../QScintilla/MiniEditor.py" line="2322" />
       <source>Move to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2345" />
-      <location filename="../QScintilla/MiniEditor.py" line="2340" />
+      <location filename="../QScintilla/MiniEditor.py" line="2346" />
+      <location filename="../QScintilla/MiniEditor.py" line="2341" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2364" />
-      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2365" />
+      <location filename="../QScintilla/MiniEditor.py" line="2362" />
       <source>Move to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2381" />
-      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2382" />
+      <location filename="../QScintilla/MiniEditor.py" line="2379" />
       <source>Extend selection to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="2397" />
       <location filename="../QScintilla/MiniEditor.py" line="2396" />
-      <location filename="../QScintilla/MiniEditor.py" line="2395" />
       <source>Stuttered move up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2411" />
-      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2412" />
+      <location filename="../QScintilla/MiniEditor.py" line="2409" />
       <source>Stuttered extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2428" />
-      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2429" />
+      <location filename="../QScintilla/MiniEditor.py" line="2426" />
       <source>Stuttered move down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2446" />
+      <location filename="../QScintilla/MiniEditor.py" line="2443" />
       <source>Stuttered extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2462" />
-      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2463" />
+      <location filename="../QScintilla/MiniEditor.py" line="2460" />
       <source>Delete right to end of next word</source>
       <translation>Apagar até ao final da proxima palavra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2472" />
+      <location filename="../QScintilla/MiniEditor.py" line="2473" />
       <source>Alt+Del</source>
       <translation>Alt+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2484" />
+      <location filename="../QScintilla/MiniEditor.py" line="2481" />
       <source>Move selected lines up one line</source>
       <translation>Mover as linhas selecionadas acima uma linha</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2500" />
-      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2501" />
+      <location filename="../QScintilla/MiniEditor.py" line="2498" />
       <source>Move selected lines down one line</source>
       <translation>Mover as linhas selecionadas abaixo uma linha</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2546" />
+      <location filename="../QScintilla/MiniEditor.py" line="2547" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2572" />
+      <location filename="../QScintilla/MiniEditor.py" line="2573" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2602" />
+      <location filename="../QScintilla/MiniEditor.py" line="2603" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2616" />
-      <location filename="../QScintilla/MiniEditor.py" line="2614" />
+      <location filename="../QScintilla/MiniEditor.py" line="2617" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Clear search markers</source>
       <translation>Limpar marcadores de pesquisa</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2618" />
+      <location filename="../QScintilla/MiniEditor.py" line="2619" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2627" />
+      <location filename="../QScintilla/MiniEditor.py" line="2628" />
       <source>Clear all displayed search markers</source>
       <translation>Limpar todos os marcadores de pesquisa mostrados</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2632" />
+      <location filename="../QScintilla/MiniEditor.py" line="2633" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2642" />
+      <location filename="../QScintilla/MiniEditor.py" line="2643" />
       <source>Replace</source>
       <translation>Substituir</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2644" />
       <source>&amp;Replace...</source>
       <translation>&amp;Substituir...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2645" />
+      <location filename="../QScintilla/MiniEditor.py" line="2646" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2652" />
+      <location filename="../QScintilla/MiniEditor.py" line="2653" />
       <source>Replace some text</source>
       <translation>Substituir algum texto</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2655" />
+      <location filename="../QScintilla/MiniEditor.py" line="2656" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2669" />
-      <location filename="../QScintilla/MiniEditor.py" line="2667" />
+      <location filename="../QScintilla/MiniEditor.py" line="2670" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2671" />
+      <location filename="../QScintilla/MiniEditor.py" line="2672" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2680" />
+      <location filename="../QScintilla/MiniEditor.py" line="2681" />
       <source>Replace the found text and search the next occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2685" />
+      <location filename="../QScintilla/MiniEditor.py" line="2686" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2701" />
-      <location filename="../QScintilla/MiniEditor.py" line="2699" />
+      <location filename="../QScintilla/MiniEditor.py" line="2702" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2703" />
+      <location filename="../QScintilla/MiniEditor.py" line="2704" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2712" />
+      <location filename="../QScintilla/MiniEditor.py" line="2713" />
       <source>Replace the found text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2715" />
+      <location filename="../QScintilla/MiniEditor.py" line="2716" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2728" />
-      <location filename="../QScintilla/MiniEditor.py" line="2726" />
+      <location filename="../QScintilla/MiniEditor.py" line="2729" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2730" />
+      <location filename="../QScintilla/MiniEditor.py" line="2731" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2739" />
+      <location filename="../QScintilla/MiniEditor.py" line="2740" />
       <source>Replace search text occurrences</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2742" />
+      <location filename="../QScintilla/MiniEditor.py" line="2743" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_ru.ts	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/i18n/eric7_ru.ts	Sat Apr 15 18:22:09 2023 +0200
@@ -1730,77 +1730,77 @@
   <context>
     <name>BaseDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="190" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="196" />
       <source>Device Data Not Available</source>
       <translation>Данные устройства недоступны</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="191" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="197" />
       <source>&lt;p&gt;The device data is not available. Try to connect to the device again. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Данные устройства недоступны. Попробуйте снова подключиться к устройству. Прерывание...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="244" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="250" />
       <source>Unsupported Device</source>
       <translation>Неподдерживаемое устройство</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="254" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="260" />
       <source>REPL is not supported by this device.</source>
       <translation>REPL не поддерживается этим устройством.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="273" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="279" />
       <source>Plotter is not supported by this device.</source>
       <translation>Плоттер не поддерживается этим устройством.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="292" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="298" />
       <source>Running scripts is not supported by this device.</source>
       <translation>Выполнение скриптов не поддерживается этим устройством.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="311" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="317" />
       <source>File Manager is not supported by this device.</source>
       <translation>Менеджер файлов не поддерживается этим устройством.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="366" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="372" />
       <source>Select Device Directory</source>
       <translation>Выберите директорию устройства</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="367" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="373" />
       <source>Select the directory for the connected device:</source>
       <translation>Выберите директорию для подсоединенного устройства:</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="513" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="519" />
       <source>Detected an error without indications.</source>
       <translation>Обнаружена неиндексированная ошибка.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1400" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1464" />
       <source>Operation not supported.</source>
       <translation>Операция не поддерживается.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>Yes</source>
       <translation>Да</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>No</source>
       <translation>Нет</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>yes</source>
       <translation>да</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>no</source>
       <translation>нет</translation>
     </message>
@@ -3980,17 +3980,17 @@
       <translation>Случайный частный нераспознаваемый</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="141" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
       <source>WIZnet 5x00 Ethernet</source>
       <translation>WIZnet 5x00 Ethernet</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="143" />
       <source>&lt;p&gt;Support for &lt;b&gt;WIZnet 5x00&lt;/b&gt; Ethernet boards could not be detected. Is the module &lt;b&gt;adafruit_wiznet5k&lt;/b&gt; installed?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не найдена поддержка интернет-плат &lt;b&gt;WIZnet 5x00&lt;/b&gt;. Установлен ли модуль &lt;b&gt;adafruit_wiznet5k?&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="176" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="177" />
       <source>CircuitPython</source>
       <translation>CircuitPython</translation>
     </message>
@@ -4158,114 +4158,114 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1127" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="864" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1128" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="865" />
       <source>unknown ({0})</source>
       <translation>неизвестная ({0})</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1576" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1499" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1039" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="960" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1577" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1500" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1040" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="961" />
       <source>The device volume is not available.</source>
       <translation>Загрузочный том устройства не доступен.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1003" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="975" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
       <source>Write WiFi Credentials</source>
       <translation>Записать учетные данные WiFi</translation>
     </message>
     <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1539" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1005" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="977" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
+      <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Заменить?&lt;/p&gt;</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1546" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="984" />
+      <source>Aborted</source>
+      <translation>Прервано</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1195" />
+      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
+      <translation>CircuitPython не поддерживает настройку параметров IPv4 точки доступа WiFi.</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1266" />
+      <source>CircuitPython does not support reporting of connected clients.</source>
+      <translation>CircuitPython не поддерживает создание отчетов о подключенных клиентах.</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
+      <source>Active</source>
+      <translation>Активно</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
+      <source>Connected</source>
+      <translation>Подключено</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
+      <source>IPv4 Address</source>
+      <translation />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
+      <source>Netmask</source>
+      <translation>Сетевая маска</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
+      <source>Gateway</source>
+      <translation>Шлюз</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
+      <source>DNS</source>
+      <translation>DNS</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1677" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
+      <source>MAC-Address</source>
+      <translation>MAC-адрес</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
+      <source>Chip Type</source>
+      <translation>Тип чипа</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1358" />
+      <source>max. Sockets</source>
+      <translation>макс. сокетов</translation>
+    </message>
+    <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1538" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
-      <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Заменить?&lt;/p&gt;</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1545" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1011" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="983" />
-      <source>Aborted</source>
-      <translation>Прервано</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1194" />
-      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
-      <translation>CircuitPython не поддерживает настройку параметров IPv4 точки доступа WiFi.</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1265" />
-      <source>CircuitPython does not support reporting of connected clients.</source>
-      <translation>CircuitPython не поддерживает создание отчетов о подключенных клиентах.</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1674" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1349" />
-      <source>Active</source>
-      <translation>Активно</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1680" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
-      <source>Connected</source>
-      <translation>Подключено</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
-      <source>IPv4 Address</source>
-      <translation />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
-      <source>Netmask</source>
-      <translation>Сетевая маска</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
-      <source>Gateway</source>
-      <translation>Шлюз</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
-      <source>DNS</source>
-      <translation>DNS</translation>
+      <source>Write Connect Script</source>
+      <translation>Записать сценарий подключения</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1676" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
-      <source>MAC-Address</source>
-      <translation>MAC-адрес</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
-      <source>Chip Type</source>
-      <translation>Тип чипа</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
-      <source>max. Sockets</source>
-      <translation>макс. сокетов</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1537" />
-      <source>Write Connect Script</source>
-      <translation>Записать сценарий подключения</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
       <source>Name</source>
       <translation>Имя</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1678" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1679" />
       <source>Address Type</source>
       <translation>Тип адреса</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1682" />
       <source>Advertising</source>
       <translation>Оповещение</translation>
     </message>
@@ -10308,12 +10308,12 @@
       <translation>&lt;p&gt;Невозможно запустить бэкэнд отладчика&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1378" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1380" />
       <source>Debug Protocol Error</source>
       <translation>Протокол ошибок отладки</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1379" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1381" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно декодировать ответ, полученный от бэкэнда отладчика. Сообщите об этой проблеме, отправив полученные данные на электронную почту eric bugs.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data: &lt;br/&gt;{1}&lt;/p&gt;</translation>
     </message>
@@ -12169,7 +12169,7 @@
       <translation>Раскомментировать</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9146" />
+      <location filename="../QScintilla/Editor.py" line="9154" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation>Генерировать строки документации</translation>
@@ -12442,7 +12442,7 @@
       <translation>Проверка орфографии</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8264" />
+      <location filename="../QScintilla/Editor.py" line="8272" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation>Проверка орфографии...</translation>
@@ -12503,7 +12503,7 @@
       <translation>Редактировать точку останова...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5923" />
+      <location filename="../QScintilla/Editor.py" line="5932" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation>Установить точку останова</translation>
@@ -12737,344 +12737,344 @@
       <translation>Введите полный путь к файлу устройства:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5097" />
+      <location filename="../QScintilla/Editor.py" line="5106" />
       <source>Autocompletion</source>
       <translation>Автодополнение</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5098" />
+      <location filename="../QScintilla/Editor.py" line="5107" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>Автодополнение недоступно, так как не задан источник автодополнения.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5226" />
+      <location filename="../QScintilla/Editor.py" line="5235" />
       <source>Auto-Completion Provider</source>
       <translation>Источник автодополнений</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5227" />
+      <location filename="../QScintilla/Editor.py" line="5236" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation>Список дополнений источника '{0}' уже зарегистрирован. Повторный запрос проигнорирован.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5519" />
+      <location filename="../QScintilla/Editor.py" line="5528" />
       <source>Call-Tips Provider</source>
       <translation>Источник всплывающих подсказок</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5520" />
+      <location filename="../QScintilla/Editor.py" line="5529" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation>Источник всплывающих подсказок '{0}' уже зарегистрирован. Повторный запрос проигнорирован.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5927" />
+      <location filename="../QScintilla/Editor.py" line="5936" />
       <source>Disable breakpoint</source>
       <translation>Убрать точку останова</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6307" />
+      <location filename="../QScintilla/Editor.py" line="6315" />
       <source>Code Coverage</source>
       <translation>Покрытие кода</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6308" />
+      <location filename="../QScintilla/Editor.py" line="6316" />
       <source>Please select a coverage file</source>
       <translation>Пожалуйста, выберите файл покрытия</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="6391" />
       <location filename="../QScintilla/Editor.py" line="6383" />
-      <location filename="../QScintilla/Editor.py" line="6375" />
       <source>Show Code Coverage Annotations</source>
       <translation>Показать аннотации по покрытию кода</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6376" />
-      <source>All lines have been covered.</source>
-      <translation>Все строки были охвачены.</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="6384" />
+      <source>All lines have been covered.</source>
+      <translation>Все строки были охвачены.</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="6392" />
       <source>There is no coverage file available.</source>
       <translation>Нет доступного файла покрытия.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6488" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <source>Profile Data</source>
       <translation>Данные профайлера</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6489" />
+      <location filename="../QScintilla/Editor.py" line="6497" />
       <source>Please select a profile file</source>
       <translation>Пожалуйста, выберите файл профиля</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6650" />
-      <location filename="../QScintilla/Editor.py" line="6644" />
+      <location filename="../QScintilla/Editor.py" line="6658" />
+      <location filename="../QScintilla/Editor.py" line="6652" />
       <source>Syntax Error</source>
       <translation>Синтаксическая ошибка</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6651" />
+      <location filename="../QScintilla/Editor.py" line="6659" />
       <source>No syntax error message available.</source>
       <translation>Нет сообщения о синтаксической ошибке.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
-      <location filename="../QScintilla/Editor.py" line="6856" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6864" />
       <source>Warning</source>
       <translation>Предупреждение</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
       <source>No warning messages available.</source>
       <translation>Нет предупреждающего сообщения.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6926" />
+      <location filename="../QScintilla/Editor.py" line="6934" />
       <source>Style: {0}</source>
       <translation>Стиль: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6929" />
+      <location filename="../QScintilla/Editor.py" line="6937" />
       <source>Warning: {0}</source>
       <translation>Предупреждение: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6936" />
+      <location filename="../QScintilla/Editor.py" line="6944" />
       <source>Error: {0}</source>
       <translation>Ошибка: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Macro Name</source>
       <translation>Имя макроса</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Select a macro name:</source>
       <translation>Задайте имя макроса:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7069" />
+      <location filename="../QScintilla/Editor.py" line="7077" />
       <source>Load macro file</source>
       <translation>Загрузить макрос</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7115" />
-      <location filename="../QScintilla/Editor.py" line="7071" />
+      <location filename="../QScintilla/Editor.py" line="7123" />
+      <location filename="../QScintilla/Editor.py" line="7079" />
       <source>Macro files (*.macro)</source>
       <translation>Макросы (*.macro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7093" />
-      <location filename="../QScintilla/Editor.py" line="7083" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
+      <location filename="../QScintilla/Editor.py" line="7091" />
       <source>Error loading macro</source>
       <translation>Ошибка при загрузке макроса</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7084" />
+      <location filename="../QScintilla/Editor.py" line="7092" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно прочитать файл с макросами: &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7094" />
+      <location filename="../QScintilla/Editor.py" line="7102" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл с макросами &lt;b&gt;{0}&lt;/b&gt; повреждён.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7113" />
+      <location filename="../QScintilla/Editor.py" line="7121" />
       <source>Save macro file</source>
       <translation>Сохранить файл с макросами</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7131" />
+      <location filename="../QScintilla/Editor.py" line="7139" />
       <source>Save macro</source>
       <translation>Сохранить макрос</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7132" />
+      <location filename="../QScintilla/Editor.py" line="7140" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Макро &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7147" />
+      <location filename="../QScintilla/Editor.py" line="7155" />
       <source>Error saving macro</source>
       <translation>Ошибка при сохранении макроса</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7148" />
+      <location filename="../QScintilla/Editor.py" line="7156" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно сохранить файл с макросами: &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7161" />
+      <location filename="../QScintilla/Editor.py" line="7169" />
       <source>Start Macro Recording</source>
       <translation>Начать запись макроса</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7162" />
+      <location filename="../QScintilla/Editor.py" line="7170" />
       <source>Macro recording is already active. Start new?</source>
       <translation>Запись макроса уже идёт. Начать новую запись?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7188" />
+      <location filename="../QScintilla/Editor.py" line="7196" />
       <source>Macro Recording</source>
       <translation>Запись макроса</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7189" />
+      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation>Задайте имя макроса:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7340" />
+      <location filename="../QScintilla/Editor.py" line="7348" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; был изменён, будучи открытым в eric. Перепрочесть?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7346" />
+      <location filename="../QScintilla/Editor.py" line="7354" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation>&lt;br&gt;&lt;b&gt;Предупреждение:&lt;/b&gt; При переоткрытии все изменения будут потеряны.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7353" />
+      <location filename="../QScintilla/Editor.py" line="7361" />
       <source>File changed</source>
       <translation>Файл изменен</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7403" />
+      <location filename="../QScintilla/Editor.py" line="7411" />
       <source>{0} (ro)</source>
       <translation>{0} (только чтение)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7708" />
+      <location filename="../QScintilla/Editor.py" line="7716" />
       <source>Drop Error</source>
       <translation>Ошибка Drag&amp;&amp;Drop</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7709" />
+      <location filename="../QScintilla/Editor.py" line="7717" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; не является файлом.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7729" />
+      <location filename="../QScintilla/Editor.py" line="7737" />
       <source>Resources</source>
       <translation>Ресурсы</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7739" />
       <source>Add file...</source>
       <translation>Добавить файл...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7732" />
+      <location filename="../QScintilla/Editor.py" line="7740" />
       <source>Add files...</source>
       <translation>Добавить файлы...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7733" />
+      <location filename="../QScintilla/Editor.py" line="7741" />
       <source>Add aliased file...</source>
       <translation>Добавить файл под другим именем...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7735" />
+      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation>Добавить локализованный ресурс...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7738" />
+      <location filename="../QScintilla/Editor.py" line="7746" />
       <source>Add resource frame</source>
       <translation>Добавить фрагмент ресурсов</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7765" />
       <source>Add file resource</source>
       <translation>Добавить файл ресурсов</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7771" />
+      <location filename="../QScintilla/Editor.py" line="7779" />
       <source>Add file resources</source>
       <translation>Добавить файлы ресурсов</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7795" />
-      <location filename="../QScintilla/Editor.py" line="7789" />
+      <location filename="../QScintilla/Editor.py" line="7803" />
+      <location filename="../QScintilla/Editor.py" line="7797" />
       <source>Add aliased file resource</source>
       <translation>Добавить файл ресурсов под другим именем</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7796" />
+      <location filename="../QScintilla/Editor.py" line="7804" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation>Другое имя для файла &lt;b&gt;{0}&lt;/b&gt;:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7871" />
+      <location filename="../QScintilla/Editor.py" line="7879" />
       <source>Package Diagram</source>
       <translation>Диаграмма пакетов</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7872" />
+      <location filename="../QScintilla/Editor.py" line="7880" />
       <source>Include class attributes?</source>
       <translation>Включать атрибуты класса?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7892" />
+      <location filename="../QScintilla/Editor.py" line="7900" />
       <source>Imports Diagram</source>
       <translation>Диаграмма импортов</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7893" />
+      <location filename="../QScintilla/Editor.py" line="7901" />
       <source>Include imports from external modules?</source>
       <translation>Включать импорты из внешних модулей?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7912" />
+      <location filename="../QScintilla/Editor.py" line="7920" />
       <source>Application Diagram</source>
       <translation>Диаграмма приложения</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7913" />
+      <location filename="../QScintilla/Editor.py" line="7921" />
       <source>Include module names?</source>
       <translation>Включать имена модулей?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8268" />
+      <location filename="../QScintilla/Editor.py" line="8276" />
       <source>Add to dictionary</source>
       <translation>Добавить в словарь</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8270" />
+      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation>Игнорировать всё</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8688" />
+      <location filename="../QScintilla/Editor.py" line="8696" />
       <source>Sort Lines</source>
       <translation>Сортировать строки</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8689" />
+      <location filename="../QScintilla/Editor.py" line="8697" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation>Выборка содержит данные неподходящие для сортировки как числа.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8782" />
+      <location filename="../QScintilla/Editor.py" line="8790" />
       <source>Register Mouse Click Handler</source>
       <translation>Регистрация обработчика кликов мышки</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8783" />
+      <location filename="../QScintilla/Editor.py" line="8791" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation>Обработчик кликов мышки для "{0}" уже зарегистрирован "{1}". Запрос прерван "{2}"...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8879" />
+      <location filename="../QScintilla/Editor.py" line="8887" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation>{0:4d}    {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8885" />
+      <location filename="../QScintilla/Editor.py" line="8893" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
@@ -13082,12 +13082,12 @@
     =&gt;  {2}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8953" />
+      <location filename="../QScintilla/Editor.py" line="8961" />
       <source>EditorConfig Properties</source>
       <translation>Свойства EditorConfig</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8954" />
+      <location filename="../QScintilla/Editor.py" line="8962" />
       <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается загрузить свойства EditorConfig для файла &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -18156,12 +18156,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="222" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation>Загрузка таблицы стилей</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="225" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно прочитать файл таблицы стилей Qt &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
@@ -23048,7 +23048,7 @@
       <translation>&lt;p&gt;Ошибка копирования файла &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2719" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation>Невозможно запустить процесс {0}. Убедитесь, что он находится в путях поиска.</translation>
@@ -23111,370 +23111,370 @@
       <translation>Работа с тегами в Git репозитории</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2277" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
       <source>Branching in the Git repository</source>
       <translation>Работа с ветками в Git репозитории</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2319" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
       <source>Delete Remote Branch</source>
       <translation>Удалить удаленную ветку</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2340" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
       <source>Current Branch</source>
       <translation>Текущая ветка</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2341" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Текущая ветка &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2405" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2387" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
       <source>Create Bundle</source>
       <translation>Создать пакет</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation>Файлы Git пакетов (*.bundle)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2388" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл Git пакета&lt;b&gt;{0}&lt;/b&gt; уже существует. Перезаписать?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2434" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2423" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
       <source>Verify Bundle</source>
       <translation>Проверить пакет</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
+      <translation>Файлы Git пакетов (*.bundle);;Все файлы (*)</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <source>List Bundle Heads</source>
+      <translation>Список веток в пакете</translation>
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
-      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
-      <translation>Файлы Git пакетов (*.bundle);;Все файлы (*)</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2452" />
-      <source>List Bundle Heads</source>
-      <translation>Список веток в пакете</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2518" />
       <source>Apply Bundle</source>
       <translation>Применить пакет</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
       <source>Applying a bundle file (fetch)</source>
       <translation>Применение пакета (fetch)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation>Bisect Недействительная подкоманда ({0}).</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2821" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
       <source>Git Bisect ({0})</source>
       <translation>Git Bisect ({0})</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
       <source>Process Generation Error</source>
       <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2747" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2729" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
       <source>Create Bisect Replay File</source>
       <translation>Создать файл повтора Bisect</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation>Файлы повтора Bisect (*.replay)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2748" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл повтора Bisect&lt;b&gt;{0}&lt;/b&gt; уже существует. Перезаписать?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2765" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно записать файл &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2784" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
       <source>Edit Bisect Replay File</source>
       <translation>Редактировать файл повтора bisect-поиска</translation>
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
+      <translation>Файлы повтора Bisect(*.replay);;Все файлы (*)</translation>
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
-      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
-      <translation>Файлы повтора Bisect(*.replay);;Все файлы (*)</translation>
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2810" />
       <source>Bisect Replay</source>
       <translation>Повтор Bisect-поиска</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3154" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Show Remote Info</source>
       <translation>Показать инфо об удаленном источнике</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3040" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
       <source>Rename Remote Repository</source>
       <translation>Переименовать удаленный репозиторий</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3041" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
       <source>Enter new name for remote repository:</source>
       <translation>Введите новое имя для удаленного репозитория:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3176" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
       <source>Show Shortlog</source>
       <translation>Отображение журнала изменений</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3233" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
       <source>Cherry-pick</source>
       <translation>Выборка</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3264" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
       <source>Copy Changesets (Continue)</source>
       <translation>Копировать набор изменений (продолжение)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
       <source>Copy Changesets (Quit)</source>
       <translation>Копировать изменения (завершение)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3311" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
       <source>Copy Changesets (Cancel)</source>
       <translation>Копировать изменения (отмена)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
       <source>Saving stash</source>
       <translation>Сохранение в стеке незавершенных изменений ("заначка")</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3429" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
       <source>Show Stash</source>
       <translation>Показать "заначку"</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3552" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3503" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
       <source>Select a stash (empty for latest stash):</source>
       <translation>Выберите "заначку" (оставьте пустым чтобы использовать последнюю):</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3462" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
       <source>Restore Stash</source>
       <translation>Восстановить из "заначки"</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3516" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
       <source>Restoring stash</source>
       <translation>Восстановление из стека незавершенных изменений ("заначки")</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
       <source>Create Branch</source>
       <translation>Создать ветку</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation>Введите имя ветки для восстановления из "заначки":</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3566" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
       <source>Creating branch</source>
       <translation>Создание ветки</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3602" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
       <source>Delete Stash</source>
       <translation>Удалить "заначку"</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3603" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation>Вы действительно хотите удалить "заначку" &lt;b&gt;{0}&lt;/b&gt;?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
       <source>Deleting stash</source>
       <translation>Удаление "заначки"</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
       <source>Delete All Stashes</source>
       <translation>Удалить все "заначки"</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3634" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
       <source>Do you really want to delete all stashes?</source>
       <translation>Вы действительно хотите удалить все "заначки"?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
       <source>Deleting all stashes</source>
       <translation>Удаление всех "заначек"</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
       <source>Showing the combined configuration settings</source>
       <translation>Отображение обобщенных параметров конфигурации</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
       <source>Verifying the integrity of the Git repository</source>
       <translation>Проверка целостности Git репозитория</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3743" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
       <source>Performing Repository Housekeeping</source>
       <translation>Проведение уборки репозитория</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3784" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Статистика&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Статистика&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
       <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Количество "рыхлых" объектов: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Дисковое пространство, занятое "рыхлыми" объектами: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3797" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Количество упакованных объектов: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Количество упаковок: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Дисковое пространство, занятое упакованными объектами: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Упакованные объекты, ожидающие удаления: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3820" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
       <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Мусорные файлы: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3825" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation>&lt;tr&gt;&lt;td&gt;Дисковое пространство, занятое мусорными файлами: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;Нет статистики.&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3898" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
       <source>Creating Archive</source>
       <translation>Создание архива</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
       <source>Add Submodule</source>
       <translation>Добавить субмодуль</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
       <source>List Submodules</source>
       <translation>Список субмодулей</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4005" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
       <source>No submodules defined for the project.</source>
       <translation>Субмодули для проекта не определены.</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4018" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
       <source>All</source>
       <translation>Все</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4022" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
       <source>Submodule Path</source>
       <translation>Путь субмодуля</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4023" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
       <source>Select a submodule path:</source>
       <translation>Выберите путь к субмодулю:</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4072" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
       <source>Initialize Submodules</source>
       <translation>Инициализация субмодулей</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4105" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
       <source>Unregister Submodules</source>
       <translation>Отменить регистрацию субмодулей</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4175" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4136" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
       <source>Update Submodules</source>
       <translation>Обновить субмодули</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
       <source>Synchronize Submodules</source>
       <translation>Синхронизировать субмодули</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4259" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
       <source>Submodules Summary</source>
       <translation>Сводка о субмодулях</translation>
     </message>
@@ -25819,83 +25819,83 @@
   <context>
     <name>GitProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="473" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="589" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="429" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="324" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="184" />
       <source>Version Control</source>
       <translation>Контроль версий</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="602" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="492" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="340" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="200" />
       <source>Commit changes to repository...</source>
       <translation>Фиксация изменений в репозитории...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="609" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="496" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="499" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="347" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="207" />
       <source>Add/Stage to repository</source>
       <translation>Добавить/Индексировать в репозиторий</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="614" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="504" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="352" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="212" />
       <source>Unstage changes</source>
       <translation>Отменить индексирование изменений</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="621" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="508" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="511" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="359" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="219" />
       <source>Remove from repository (and disk)</source>
       <translation>Удаление из репозитория (и с диска)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="365" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="225" />
       <source>Remove from repository only</source>
       <translation>Удалить только из репозитория</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="513" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="230" />
       <source>Copy</source>
       <translation>Копировать</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="518" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="232" />
       <source>Move</source>
       <translation>Переместить</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="523" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="237" />
       <source>Show log browser</source>
       <translation>Показать браузер журнала</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="372" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="244" />
       <source>Show status</source>
       <translation>Показать статус</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="635" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="534" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="537" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="251" />
       <source>Show differences</source>
@@ -25907,8 +25907,8 @@
       <translation>Показать различия построчно</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="543" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="385" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="263" />
       <source>Show differences (extended)</source>
@@ -25935,71 +25935,71 @@
       <translation>Создать файл со списком пропуска</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="648" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="547" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="550" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="392" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="289" />
       <source>Revert changes</source>
       <translation>Отменить изменения</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="656" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="441" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
-      <source>Select all local file entries</source>
-      <translation>Выделить все локальные файлы</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="558" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="444" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
-      <source>Select all versioned file entries</source>
-      <translation>Выделить все версированные записи файла</translation>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
+      <source>Select all local file entries</source>
+      <translation>Выделить все локальные файлы</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="662" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="561" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="447" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
+      <source>Select all versioned file entries</source>
+      <translation>Выделить все версированные записи файла</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="564" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="450" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="406" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="301" />
       <source>Select all local directory entries</source>
       <translation>Выделить все локальные записи директории</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="666" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="454" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="305" />
       <source>Select all versioned directory entries</source>
       <translation>Выделить все версированные записи директории</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="414" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="309" />
       <source>Configure...</source>
       <translation>Настроить...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="709" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="712" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="699" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation>Вы действительно хотите удалить эти файлы из репозитория?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="842" />
       <source>Create {0} file</source>
       <translation>Создать файл {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="843" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Перезаписать?&lt;/p&gt;</translation>
     </message>
@@ -30318,27 +30318,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="198" />
+      <location filename="../Globals/__init__.py" line="199" />
       <source>{0:4.2f} Bytes</source>
       <translation>{0:4.2f} байтов</translation>
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="201" />
+      <location filename="../Globals/__init__.py" line="202" />
       <source>{0:4.2f} KiB</source>
       <translation>{0:4.2f} KiB</translation>
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="204" />
+      <location filename="../Globals/__init__.py" line="205" />
       <source>{0:4.2f} MiB</source>
       <translation>{0:4.2f} MiB</translation>
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="207" />
+      <location filename="../Globals/__init__.py" line="208" />
       <source>{0:4.2f} GiB</source>
       <translation>{0:4.2f} GiB</translation>
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="210" />
+      <location filename="../Globals/__init__.py" line="211" />
       <source>{0:4.2f} TiB</source>
       <translation>{0:4.2f} TiB</translation>
     </message>
@@ -36559,75 +36559,75 @@
       <translation>Расширения</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="692" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="579" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="535" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="431" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="289" />
       <source>Version Control</source>
       <translation>Контроль версий</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="595" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="598" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="305" />
       <source>Commit changes to repository...</source>
       <translation>Фиксировать изменения в репозитории...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="606" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="455" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="313" />
       <source>Add to repository</source>
       <translation>Добавить в репозиторий</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="722" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="725" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="461" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="319" />
       <source>Remove from repository (and disk)</source>
       <translation>Удалить из репозитория (и с диска)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="986" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="973" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="989" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="976" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="467" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="325" />
       <source>Remove from repository only</source>
       <translation>Удалить только из репозитория</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="614" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="617" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="330" />
       <source>Copy</source>
       <translation>Копировать</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="619" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="332" />
       <source>Move</source>
       <translation>Переместить</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="621" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="624" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="337" />
       <source>Show log browser</source>
       <translation>Показать журнал истории</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="729" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="732" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="474" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="344" />
       <source>Show status</source>
       <translation>Показать статус</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="736" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="739" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="481" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="351" />
       <source>Show differences</source>
@@ -36639,8 +36639,8 @@
       <translation>Показать различия построчно</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="644" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="487" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="363" />
       <source>Show differences (extended)</source>
@@ -36667,95 +36667,95 @@
       <translation>Создать файл со списком пропуска</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="749" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="752" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="494" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="389" />
       <source>Revert changes</source>
       <translation>Отменить изменения</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="753" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="756" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="655" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="498" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="393" />
       <source>Conflicts resolved</source>
       <translation>Решенные конфликты</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="755" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="654" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="657" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="500" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="395" />
       <source>Conflicts unresolved</source>
       <translation>Нерешенные конфликты</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="757" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="656" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="760" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="502" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="397" />
       <source>Re-Merge</source>
       <translation>Повторить слияние</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="660" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="547" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
-      <source>Select all local file entries</source>
-      <translation>Выделить все локальные файлы</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="764" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="663" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="550" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
-      <source>Select all versioned file entries</source>
-      <translation>Выделить все версированные записи файла</translation>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
+      <source>Select all local file entries</source>
+      <translation>Выделить все локальные файлы</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="767" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="553" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
+      <source>Select all versioned file entries</source>
+      <translation>Выделить все версированные записи файла</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="556" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="407" />
       <source>Select all local directory entries</source>
       <translation>Выделить все локальные записи директории</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="560" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="411" />
       <source>Select all versioned directory entries</source>
       <translation>Выделить все версированные записи директории</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="775" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="674" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="561" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="778" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="677" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="564" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="520" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="415" />
       <source>Configure...</source>
       <translation>Настроить...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="890" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="893" />
       <source>Create {0} file</source>
       <translation>Создать файл {0}</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="891" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="894" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Перезаписать?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="987" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="990" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="977" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation>Вы действительно хотите удалить эти файлы из репозитория?</translation>
     </message>
@@ -50985,43 +50985,43 @@
       <translation>Хотите добавить их в список вручную настроенных устройств?</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="594" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="592" />
       <source>Clear</source>
       <translation>Очистить</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="599" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="597" />
       <source>Copy</source>
       <translation>Копировать</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="603" />
       <source>Paste</source>
       <translation>Вставить</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="612" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="610" />
       <source>Select All</source>
       <translation>Выделить всё</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="638" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="636" />
       <source>Press to disconnect the current device</source>
       <translation>Отключить выбранное устройство</translation>
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="643" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="641" />
       <source>Press to connect the selected device</source>
       <translation>Подключить выбранное устройство</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="675" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="673" />
       <source>No device attached</source>
       <translation>Устройство не подключено</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="674" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -51034,90 +51034,90 @@
 И, наконец, нажмите кнопку перезагрузки устройства и подождите несколько секунд, прежде чем повторить попытку.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="705" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="703" />
       <source>Start REPL</source>
       <translation>Запустить REPL</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="706" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="704" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается запустить REPL.&lt;/p&gt;&lt;p&gt;Причина:&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1234" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1223" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
       <source>Serial Device Connect</source>
       <translation>Подсоединение последовательного устройства</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1224" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Устройство не отвечает через последовательный порт &lt;b&gt;{0}&lt;/b&gt;. Возможно на нем не установлена прошивка MicroPython.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1235" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1233" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается соединиться с устройством через последовательный порт &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1293" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1284" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1282" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
       <source>Run Script</source>
       <translation>Выполнить скрипт</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1276" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
       <source>There is no editor open. Abort...</source>
       <translation>Редактор не открыт. Прерывание...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1285" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1283" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation>Текущий редактор не содержит скрипт. Прервать...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1292" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается выполнить скрипт.&lt;/p&gt;&lt;p&gt;Причина: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
       <source>Start Chart</source>
       <translation>Построить диаграмму</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1329" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается построить диаграмму.&lt;/p&gt;&lt;p&gt;Причина: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1346" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1344" />
       <source>µPy Chart</source>
       <translation>µPy диаграммы</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1363" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1361" />
       <source>Unsaved Chart Data</source>
       <translation>Несохраненные данные диаграммы</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1364" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1362" />
       <source>The chart contains unsaved data.</source>
       <translation>Диаграмма содержит несохраненные данные.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1412" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1410" />
       <source>Start File Manager</source>
       <translation>Запустить менеджер файлов</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1413" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1411" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается запустить менеджер файлов.&lt;/p&gt;&lt;p&gt;Причина: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1433" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1431" />
       <source>µPy Files</source>
       <translation>µPy файлы</translation>
     </message>
@@ -51142,7 +51142,7 @@
       <translation>Показать данные платы</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1735" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1554" />
       <source>Synchronize Time</source>
       <translation>Синхронизировать время</translation>
@@ -51168,207 +51168,213 @@
       <translation>Показать встроенные модули</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2138" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1578" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1570" />
       <source>Install Package</source>
       <translation>Установить пакет</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2150" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2183" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2180" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1574" />
       <source>Install Packages</source>
       <translation>Установить пакеты</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1955" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1580" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1959" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
       <source>Compile Python File</source>
       <translation>Компилировать файл Python</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1979" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1970" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1983" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1974" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1588" />
       <source>Compile Current Editor</source>
       <translation>Компилировать текущий редактор</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1609" />
       <source>Download Firmware</source>
       <translation>Загрузить микрокод</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
-      <source>Show Documentation</source>
-      <translation>Просмотр документации</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
-      <source>Convert To UF2</source>
-      <translation>Преобразовать в UF2</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1616" />
-      <source>Flash UF2 Device</source>
-      <translation>Прошивка UF2-устройств</translation>
+      <source>Show Documentation</source>
+      <translation>Просмотр документации</translation>
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1619" />
+      <source>Convert To UF2</source>
+      <translation>Преобразовать в UF2</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1620" />
+      <source>Flash UF2 Device</source>
+      <translation>Прошивка UF2-устройств</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1623" />
       <source>Manage Unknown Devices</source>
       <translation>Менеджер неизвестных устройств</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1622" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1626" />
       <source>Ignored Serial Devices</source>
       <translation>Проигнорированные последовательные устройства</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1625" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1629" />
       <source>Configure</source>
       <translation>Настройки</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1634" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1638" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation>&lt;h3&gt;Информация о версии устройства&lt;/h3&gt;</translation>
     </message>
     <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1649" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1645" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1641" />
       <source>Device Version Information</source>
       <translation>Информация о версии устройства</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1646" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1650" />
       <source>No version information available.</source>
       <translation>Информация о версии недоступна.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1670" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1674" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1666" />
       <source>unknown</source>
       <translation>unknown</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1680" />
       <source> ({0})</source>
       <translation> ({0})</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1683" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1696" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1687" />
       <source>Device Implementation Information</source>
       <translation>Информация о исполнении устройства</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1688" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation>&lt;h3&gt;Информация о реализации устройства&lt;/h3&gt;&lt;p&gt;Это устройство содержит &lt;b&gt;{0} {1}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1693" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1697" />
       <source>No device implementation information available.</source>
       <translation>Информация о реализации устройства отсутствует.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1736" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Время подключенного устройства было синхронизировано с локальным временем.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1754" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1758" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Дата и время устройства&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Дата&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Время&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1762" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1766" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation>&lt;h3&gt;Дата и время устройства&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1782" />
       <source>Device Date and Time</source>
       <translation>Дата и время устройства</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1794" />
       <source>Local Date and Time</source>
       <translation>Локальные дата и время</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1795" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h3&gt;Локальные дата и время&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Дата&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Время&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1832" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1815" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1836" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1819" />
       <source>Date and Time</source>
       <translation>Дата и время</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1816" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1820" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Дата и время локальные&lt;/th&gt;&lt;th&gt;Дата и время устройства&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Дата &lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Время &lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1837" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Дата и время локальные&lt;/th&gt;&lt;th&gt;Дата и время устройства&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1857" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1861" />
       <source>Error handling device</source>
       <translation>Ошибка при работе с устройством</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1858" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1862" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Произошла ошибка при работе с подключаемым устройством.&lt;/p&gt;&lt;p&gt;Метод: {0}&lt;/p&gt;&lt;p&gt;Сообщение: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1900" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1904" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation>Кросс-компилятор MicroPython &lt;b&gt;mpy-cross&lt;/b&gt; не найден. Убедитесь, что он находится в пути поиска, или настройте его на странице конфигурации MicroPython.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1926" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1930" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation>Файлы Python (*.py);;Все файлы (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1940" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation>Файл Python &lt;b&gt;{0}&lt;/b&gt; не существует. Отмена...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1945" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1949" />
       <source>'mpy-cross' Output</source>
       <translation>Вывод команды 'mpy-cross'</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1971" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1975" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation>Текущий редактор не содержит файл Python. Отмена...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2063" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2067" />
       <source>Add Unknown Devices</source>
       <translation>Добавить неизвестное устройство</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2068" />
       <source>Select the devices to be added:</source>
       <translation>Выборите устройства для добавления:</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2113" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2117" />
       <source>Plus any modules on the filesystem.</source>
       <translation>Плюс любые модули в файловой системе.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2151" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2169" />
+      <source>Package '{0}' was installed successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2184" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation>Введите через пробел пакеты для установки:</translation>
     </message>
@@ -51421,199 +51427,199 @@
       <translation>Случайный частный нераспознаваемый</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="108" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="110" />
       <source>BBC micro:bit</source>
       <translation>BBC micro:bit</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="111" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="113" />
       <source>Calliope mini</source>
       <translation>Calliope mini</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="208" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="210" />
       <source>BBC micro:bit/Calliope Functions</source>
       <translation>Функции BBC micro:bit/Calliope</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="421" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="409" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="392" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="211" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="411" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="213" />
       <source>Show MicroPython Versions</source>
       <translation>Показать версии MicroPython</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="215" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="217" />
       <source>Flash MicroPython</source>
       <translation>Прошить MicroPython</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="218" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="220" />
       <source>Flash Firmware</source>
       <translation>Прошить микрокод</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="496" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="222" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="498" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="224" />
       <source>Save Script as 'main.py'</source>
       <translation>Сохранить скрипт как 'main.py'</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="225" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="227" />
       <source>Save the current script as 'main.py' on the connected device</source>
       <translation>Сохранить текущий скрипт как 'main.py' на подключенном устройстве</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="229" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="231" />
       <source>Reset {0}</source>
       <translation>Сбросить {0}</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="375" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="366" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="352" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="335" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="322" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="302" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="377" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="354" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="337" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="324" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="304" />
       <source>Flash MicroPython/Firmware</source>
       <translation>Прошить MicroPython/микрокод</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="303" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="305" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed and plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;See the &lt;a href="https://microbit.org/guide/firmware/"&gt;micro:bit web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation>&lt;p&gt;BBC micro:bit не готово к прошивке микрокода DAPLink. Следуйте данным инструкциям. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;отключите USB-кабель и все батареи&lt;/li&gt;&lt;li&gt;удерживайте нажатой кнопку RESET и снова подключите USB-кабель&lt;/li&gt;&lt;li&gt;диск под названием MAINTENANCE должен быть доступен&lt;/li &gt;&lt;/ul&gt;&lt;p&gt;Подробности см. на &lt;a href="https://microbit.org/guide/firmware/"&gt;веб-сайте micro:bit&lt;/a&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="323" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="325" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MICROBIT is available.&lt;/p&gt;</source>
       <translation>&lt;p&gt;BBC micro:bit не готово к прошивке микрокода MicroPython. Пожалуйста убедитесь, что диск под названием MICROBIT доступен.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="336" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="338" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed an plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;</source>
       <translation>&lt;p&gt;"Calliope mini" не готово к прошивке микрокода DAPLink. Следуйте данным инструкциям. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;отключите USB-кабель и все аккумуляторы&lt;/li&gt;&lt;li&gt;удерживая кнопку RESET нажатой вставьте USB-кабель обратно&lt;/li&gt;&lt;li&gt;должен быть доступен диск под названием MAINTENANCE&lt;/li&gt;&lt;/ul&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="353" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="355" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MINI is available.&lt;/p&gt;</source>
       <translation>&lt;p&gt;"Calliope mini" не готово к прошивке микрокода MicroPython. Пожалуйста убедитесь, что устройство, называемое MICROBIT, доступно.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="370" />
       <source>MicroPython/Firmware Files (*.hex *.bin);;All Files (*)</source>
       <translation>Файлы MicroPython/микрокода (*.hex *.bin);;Все файлы (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="376" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="378" />
       <source>There are multiple devices ready for flashing. Please make sure, that only one device is prepared.</source>
       <translation>Несколько устройств готовы для прошивки. Пожалуйста убедитесь, что подготовлено только одно устройство.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="395" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation>Не удается определить прошивку подключенного устройства или на плате не работает MicroPython млм CircuitPython. Отмена...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="410" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="412" />
       <source>&lt;p&gt;The BBC micro:bit generation cannot be determined. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;Поколение BBC micro:bit не может быть определено. Отмена...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="424" />
       <source>&lt;p&gt;The firmware URL for the device type &lt;b&gt;{0}&lt;/b&gt; is not known. Aborting...&lt;/p&gt;</source>
       <translation>&lt;p&gt;URL-адрес прошивки для устройства типа &lt;b&gt;{0}&lt;/b&gt; неизвестен. Отмена...&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="452" />
       <source>unknown</source>
       <translation>неизвестный</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="466" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="468" />
       <source>Firmware</source>
       <translation>Прошивка</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="469" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="471" />
       <source>&lt;h4&gt;{0} Version Information&lt;br/&gt;(BBC micro:bit v{1})&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation>&lt;h4&gt;Информаация версии {0}&lt;br/&gt;(BBC micro:bit v{1})&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Установлена:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Доступна:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="478" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="480" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;Доступно обновление!&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="484" />
       <source>{0} Version</source>
       <translatorcomment>Версия {0}</translatorcomment>
       <translation />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="502" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="504" />
       <source>The current editor does not contain a Python script. Write it anyway?</source>
       <translation>Текущий редактор не содержит скрипт Python. Все равно записать?</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="513" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="515" />
       <source>The script is empty. Aborting.</source>
       <translation>Скрипт пуст. Прерывание.</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="567" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="569" />
       <source>MicroPython Firmware for BBC micro:bit V1</source>
       <translation>Микрокод MicroPython для BBC micro:bit V1</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="599" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="586" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="571" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="601" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="588" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="573" />
       <source>DAPLink Firmware</source>
       <translation>Микрокод DAPLink</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="578" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="580" />
       <source>MicroPython Firmware for BBC micro:bit V2</source>
       <translation>Микрокод MicroPython для BBC micro:bit V2</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="582" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="584" />
       <source>CircuitPython Firmware for BBC micro:bit V2</source>
       <translation>Микрокод CircuitPython для BBC micro:bit V2</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="595" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="597" />
       <source>MicroPython Firmware</source>
       <translation>Микрокод MicroPython</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="818" />
-      <source>Active</source>
-      <translation>Активно</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="819" />
-      <source>Name</source>
-      <translation>Имя</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="820" />
-      <source>MAC-Address</source>
-      <translation>MAC-адрес</translation>
+      <source>Active</source>
+      <translation>Активно</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="821" />
+      <source>Name</source>
+      <translation>Имя</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="822" />
-      <source>Address Type</source>
-      <translation>Тип адреса</translation>
+      <source>MAC-Address</source>
+      <translation>MAC-адрес</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="824" />
+      <source>Address Type</source>
+      <translation>Тип адреса</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="826" />
       <source>Connected</source>
       <translation>Подключен</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="825" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="827" />
       <source>Advertising</source>
       <translation>Оповещение</translation>
     </message>
@@ -51711,731 +51717,751 @@
   <context>
     <name>MiniEditor</name>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="459" />
+      <location filename="../QScintilla/MiniEditor.py" line="460" />
       <source>About eric Mini Editor</source>
       <translation>О eric миниредакторе</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="461" />
       <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don't need the power of a full blown editor.</source>
       <translation>Eric миниредактор — это компонент, основанный на QScintilla. Его можно использовать для простых задач редактирования, не требующих полномасштабного редактора.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="529" />
+      <location filename="../QScintilla/MiniEditor.py" line="530" />
       <source>Line: {0:5}</source>
       <translation>Строка: {0:5}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="533" />
+      <location filename="../QScintilla/MiniEditor.py" line="534" />
       <source>Pos: {0:5}</source>
       <translation>Позиция: {0:5}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="547" />
+      <location filename="../QScintilla/MiniEditor.py" line="548" />
       <source>Language: {0}</source>
       <translation>Язык: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="610" />
       <source>New</source>
       <translation>Новый</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="611" />
-      <source>&amp;New</source>
-      <translation>&amp;Новый</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="612" />
+      <source>&amp;New</source>
+      <translation>&amp;Новый</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="613" />
       <source>Ctrl+N</source>
       <comment>File|New</comment>
       <translation>Ctrl+N</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="617" />
+      <location filename="../QScintilla/MiniEditor.py" line="618" />
       <source>Open an empty editor window</source>
       <translation>Открыть пустое окно редактора</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="619" />
+      <location filename="../QScintilla/MiniEditor.py" line="620" />
       <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Новый документ&lt;/b&gt;
 &lt;p&gt;Создание пустого окна редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="625" />
+      <location filename="../QScintilla/MiniEditor.py" line="626" />
       <source>Open</source>
       <translation>Открыть</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="627" />
-      <source>&amp;Open...</source>
-      <translation>&amp;Открыть...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="628" />
+      <source>&amp;Open...</source>
+      <translation>&amp;Открыть...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="629" />
       <source>Ctrl+O</source>
       <comment>File|Open</comment>
       <translation>Ctrl+O</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="633" />
+      <location filename="../QScintilla/MiniEditor.py" line="634" />
       <source>Open a file</source>
       <translation>Открыть файл</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="635" />
+      <location filename="../QScintilla/MiniEditor.py" line="636" />
       <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Открыть файл&lt;/b&gt;&lt;p&gt;Вам будет предложено задать имя файла, который нужно открыть.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="644" />
+      <location filename="../QScintilla/MiniEditor.py" line="645" />
       <source>Save</source>
       <translation>Сохранить</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="646" />
-      <source>&amp;Save</source>
-      <translation>&amp;Сохранить</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="647" />
+      <source>&amp;Save</source>
+      <translation>&amp;Сохранить</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="648" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation>Ctrl+S</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="652" />
+      <location filename="../QScintilla/MiniEditor.py" line="653" />
       <source>Save the current file</source>
       <translation>Сохранить текущий файл</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="654" />
+      <location filename="../QScintilla/MiniEditor.py" line="655" />
       <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сохранить файл&lt;/b&gt;
 &lt;p&gt;Сохранение содержания текущего окна редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="663" />
+      <location filename="../QScintilla/MiniEditor.py" line="664" />
       <source>Save as</source>
       <translation>Сохранить как</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="665" />
-      <source>Save &amp;as...</source>
-      <translation>Сохранить &amp;как...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="666" />
+      <source>Save &amp;as...</source>
+      <translation>Сохранить &amp;как...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="667" />
       <source>Shift+Ctrl+S</source>
       <comment>File|Save As</comment>
       <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="671" />
+      <location filename="../QScintilla/MiniEditor.py" line="672" />
       <source>Save the current file to a new one</source>
       <translation>Сохранить текущий файл в новый</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="673" />
+      <location filename="../QScintilla/MiniEditor.py" line="674" />
       <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сохранить файл как&lt;/b&gt;
 &lt;p&gt;Сохранение содержания текущего окна редактора в новый файл.
 Имя файла будет запрошено с помощью диалога выбора файлов.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="683" />
+      <location filename="../QScintilla/MiniEditor.py" line="684" />
       <source>Save Copy</source>
       <translation>Сохранить копию</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="686" />
       <source>Save &amp;Copy...</source>
       <translation>Сохранить &amp;копию...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="691" />
+      <location filename="../QScintilla/MiniEditor.py" line="692" />
       <source>Save a copy of the current file</source>
       <translation>Сохранить копию текущего файла</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="693" />
+      <location filename="../QScintilla/MiniEditor.py" line="694" />
       <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сохранить копию&lt;/b&gt;&lt;p&gt;Сохранение контента текущего окна редактора. Имя файла может быть введено в диалоге выбора файла.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="703" />
+      <location filename="../QScintilla/MiniEditor.py" line="704" />
       <source>Close</source>
       <translation>Закрыть</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="705" />
-      <source>&amp;Close</source>
-      <translation>&amp;Закрыть</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="706" />
+      <source>&amp;Close</source>
+      <translation>&amp;Закрыть</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="707" />
       <source>Ctrl+W</source>
       <comment>File|Close</comment>
       <translation>Ctrl+W</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="711" />
+      <location filename="../QScintilla/MiniEditor.py" line="712" />
       <source>Close the editor window</source>
       <translation>Закрыть окно редактора</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="713" />
+      <location filename="../QScintilla/MiniEditor.py" line="714" />
       <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Закрыть окно&lt;/b&gt;
 &lt;p&gt;Закрытие текущего окна.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="719" />
+      <location filename="../QScintilla/MiniEditor.py" line="720" />
       <source>Print</source>
       <translation>Печать</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="721" />
-      <source>&amp;Print</source>
-      <translation>&amp;Печать</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="722" />
+      <source>&amp;Print</source>
+      <translation>&amp;Печать</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="723" />
       <source>Ctrl+P</source>
       <comment>File|Print</comment>
       <translation>Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="727" />
+      <location filename="../QScintilla/MiniEditor.py" line="728" />
       <source>Print the current file</source>
       <translation>Печать текущего файла</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="729" />
+      <location filename="../QScintilla/MiniEditor.py" line="730" />
       <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of the current file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Печать файла&lt;/b&gt;&lt;p&gt;Распечатать содержимое текущего файла.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="738" />
+      <location filename="../QScintilla/MiniEditor.py" line="739" />
       <source>Print Preview</source>
       <translation>Предварительный просмотр печати</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="747" />
       <source>Print preview of the current file</source>
       <translation>Предварительный просмотр печати текущего файла</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="748" />
+      <location filename="../QScintilla/MiniEditor.py" line="749" />
       <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Предварительный просмотр печати&lt;/b&gt;&lt;p&gt;Предварительный просмотр печати текущего файла.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="761" />
+      <location filename="../QScintilla/MiniEditor.py" line="762" />
       <source>Undo</source>
       <translation>Отменить</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="763" />
-      <source>&amp;Undo</source>
-      <translation>&amp;Отменить</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="764" />
+      <source>&amp;Undo</source>
+      <translation>&amp;Отменить</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="765" />
       <source>Ctrl+Z</source>
       <comment>Edit|Undo</comment>
       <translation>Ctrl+Z</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="765" />
+      <location filename="../QScintilla/MiniEditor.py" line="766" />
       <source>Alt+Backspace</source>
       <comment>Edit|Undo</comment>
       <translation>Alt+Backspace</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="769" />
+      <location filename="../QScintilla/MiniEditor.py" line="770" />
       <source>Undo the last change</source>
       <translation>Отменить последнее изменение</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="771" />
+      <location filename="../QScintilla/MiniEditor.py" line="772" />
       <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Отмена&lt;/b&gt;
 &lt;p&gt;Отмена последнего изменения в текущем сеансе редактирования.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="780" />
+      <location filename="../QScintilla/MiniEditor.py" line="781" />
       <source>Redo</source>
       <translation>Повторить</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="782" />
-      <source>&amp;Redo</source>
-      <translation>&amp;Повторить</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="783" />
+      <source>&amp;Redo</source>
+      <translation>&amp;Повторить</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="784" />
       <source>Ctrl+Shift+Z</source>
       <comment>Edit|Redo</comment>
       <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="788" />
+      <location filename="../QScintilla/MiniEditor.py" line="789" />
       <source>Redo the last change</source>
       <translation>Восстановить последнее отменённое изменение</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="790" />
+      <location filename="../QScintilla/MiniEditor.py" line="791" />
       <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Повтор&lt;/b&gt;
 &lt;p&gt;Восстановление последнего отменённого изменения.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="799" />
+      <location filename="../QScintilla/MiniEditor.py" line="800" />
       <source>Cut</source>
       <translation>Вырезать</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="801" />
-      <source>Cu&amp;t</source>
-      <translation>В&amp;ырезать</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="802" />
+      <source>Cu&amp;t</source>
+      <translation>В&amp;ырезать</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="803" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation>Ctrl+X</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="803" />
+      <location filename="../QScintilla/MiniEditor.py" line="804" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation>Shift+Del</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="807" />
+      <location filename="../QScintilla/MiniEditor.py" line="808" />
       <source>Cut the selection</source>
       <translation>Вырезать выделение</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="809" />
+      <location filename="../QScintilla/MiniEditor.py" line="810" />
       <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Вырезать&lt;/b&gt;
 &lt;p&gt;Вырезать выделение и поместить его в буфер обмена.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="819" />
+      <location filename="../QScintilla/MiniEditor.py" line="820" />
       <source>Copy</source>
       <translation>Копировать</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="821" />
-      <source>&amp;Copy</source>
-      <translation>&amp;Копировать</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="822" />
+      <source>&amp;Copy</source>
+      <translation>&amp;Копировать</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="823" />
       <source>Ctrl+C</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+C</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="823" />
+      <location filename="../QScintilla/MiniEditor.py" line="824" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+Ins</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="827" />
+      <location filename="../QScintilla/MiniEditor.py" line="828" />
       <source>Copy the selection</source>
       <translation>Копировать выделение</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="829" />
+      <location filename="../QScintilla/MiniEditor.py" line="830" />
       <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Копировать&lt;/b&gt;
 &lt;p&gt;Копировать выделение и поместить его в буфер обмена.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="839" />
+      <location filename="../QScintilla/MiniEditor.py" line="840" />
       <source>Paste</source>
       <translation>Вставить</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="841" />
-      <source>&amp;Paste</source>
-      <translation>Вс&amp;тавить</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="842" />
+      <source>&amp;Paste</source>
+      <translation>Вс&amp;тавить</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="843" />
       <source>Ctrl+V</source>
       <comment>Edit|Paste</comment>
       <translation>Ctrl+V</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="843" />
+      <location filename="../QScintilla/MiniEditor.py" line="844" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation>Shift+Ins</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="847" />
+      <location filename="../QScintilla/MiniEditor.py" line="848" />
       <source>Paste the last cut/copied text</source>
       <translation>Вставить вырезанный/скопированный текст</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="849" />
+      <location filename="../QScintilla/MiniEditor.py" line="850" />
       <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Вставить&lt;/b&gt;
 &lt;p&gt;Вставить текст из буфера обмена в текущую позицию редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="859" />
+      <location filename="../QScintilla/MiniEditor.py" line="860" />
       <source>Clear</source>
       <translation>Очистить</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="861" />
-      <source>Cl&amp;ear</source>
-      <translation>О&amp;чистить</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="862" />
+      <source>Cl&amp;ear</source>
+      <translation>О&amp;чистить</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="863" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation>Alt+Shift+C</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="867" />
+      <location filename="../QScintilla/MiniEditor.py" line="868" />
       <source>Clear all text</source>
       <translation>Убрать весь текст</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="869" />
+      <location filename="../QScintilla/MiniEditor.py" line="870" />
       <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Очистить&lt;/b&gt;
 &lt;p&gt;Удаление всего текста из текущего редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>About</source>
       <translation>О программе</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>&amp;About</source>
       <translation>&amp;О программе</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2863" />
+      <location filename="../QScintilla/MiniEditor.py" line="2864" />
       <source>Display information about this software</source>
       <translation>Информация о программе</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2865" />
+      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation>&lt;b&gt;О программе&lt;/b&gt;&lt;p&gt;Информация об этом программном продукте.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About Qt</source>
       <translation>О Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About &amp;Qt</source>
       <translation>О &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2877" />
+      <location filename="../QScintilla/MiniEditor.py" line="2878" />
       <source>Display information about the Qt toolkit</source>
       <translation>Информация о наборе инструментов Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2880" />
+      <location filename="../QScintilla/MiniEditor.py" line="2881" />
       <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
       <translation>&lt;b&gt;О Qt&lt;/b&gt;&lt;p&gt;Информация о библиотеке Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2889" />
+      <location filename="../QScintilla/MiniEditor.py" line="2890" />
       <source>What's This?</source>
       <translation>Что это?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2891" />
-      <source>&amp;What's This?</source>
-      <translation>&amp;Что это?</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <source>&amp;What's This?</source>
+      <translation>&amp;Что это?</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2893" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2897" />
+      <location filename="../QScintilla/MiniEditor.py" line="2898" />
       <source>Context sensitive help</source>
       <translation>Контекстнозависимая справка</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2899" />
+      <location filename="../QScintilla/MiniEditor.py" line="2900" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Показ контекстнозависимой справки&lt;/b&gt;&lt;p&gt;В режиме "What's This?"(Что это?)курсор мыши отображается как стрелка со знаком вопроса, и вы можете, кликнув по элементу интерфейса, получить краткое описание того, что он делает и как его использовать. В диалоговом окне эта функция может быть вызвана кнопкой контекстной справки в панели заголовка.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2918" />
       <source>Preferences</source>
       <translation>Предпочтения</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2920" />
       <source>&amp;Preferences...</source>
       <translation>&amp;Предпочтения...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2925" />
+      <location filename="../QScintilla/MiniEditor.py" line="2926" />
       <source>Set the prefered configuration</source>
       <translation>Установите предпочтительную конфигурацию</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2927" />
+      <location filename="../QScintilla/MiniEditor.py" line="2928" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Предпочтения&lt;/b&gt;&lt;p&gt;Установка элементов конфигурации приложения согласно вашим предпочтениям.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2941" />
+      <location filename="../QScintilla/MiniEditor.py" line="2942" />
       <source>&amp;File</source>
       <translation>&amp;Файл</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2953" />
+      <location filename="../QScintilla/MiniEditor.py" line="2954" />
       <source>&amp;Edit</source>
       <translation>&amp;Правка</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2963" />
+      <location filename="../QScintilla/MiniEditor.py" line="2964" />
       <source>&amp;Search</source>
       <translation>&amp;Поиск</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2974" />
       <source>&amp;View</source>
       <translation>&amp;Вид</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2979" />
+      <location filename="../QScintilla/MiniEditor.py" line="2980" />
       <source>Se&amp;ttings</source>
       <translation>&amp;Настройки</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2985" />
       <source>&amp;Help</source>
       <translation>&amp;Справка</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2996" />
+      <location filename="../QScintilla/MiniEditor.py" line="2997" />
       <source>File</source>
       <translation>Файл</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3008" />
+      <location filename="../QScintilla/MiniEditor.py" line="3009" />
       <source>Edit</source>
       <translation>Редактировать</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3017" />
+      <location filename="../QScintilla/MiniEditor.py" line="3018" />
       <source>Search</source>
       <translation>Поиск</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3023" />
+      <location filename="../QScintilla/MiniEditor.py" line="3024" />
       <source>View</source>
       <translation>Вид</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3029" />
+      <location filename="../QScintilla/MiniEditor.py" line="3030" />
       <source>Settings</source>
       <translation>Настройки</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3032" />
+      <location filename="../QScintilla/MiniEditor.py" line="3033" />
       <source>Help</source>
       <translation>Справка</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3045" />
+      <location filename="../QScintilla/MiniEditor.py" line="3046" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation>&lt;p&gt;В этой части строки состояния отображается язык редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3055" />
+      <location filename="../QScintilla/MiniEditor.py" line="3056" />
       <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;В этой части строки состояния отображается режим ro/rw файла, открытого в редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3064" />
+      <location filename="../QScintilla/MiniEditor.py" line="3065" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;В этой части строки состояния отображается номер текущей строки редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3073" />
+      <location filename="../QScintilla/MiniEditor.py" line="3074" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;В этой части строки состояния отображается текущая позиция курсора в редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3087" />
+      <location filename="../QScintilla/MiniEditor.py" line="3088" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;В этой части строки состояния разрешено масштабирование редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3094" />
+      <location filename="../QScintilla/MiniEditor.py" line="3095" />
       <source>Ready</source>
       <translation>Готово</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3169" />
-      <source>eric Mini Editor</source>
-      <translation>Eric миниредактор</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <source>eric Mini Editor</source>
+      <translation>Eric миниредактор</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3171" />
       <source>The document has unsaved changes.</source>
       <translation>Изменения в текущем документе не сохранены.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3197" />
-      <source>Open File</source>
-      <translation>Открыть файл</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <source>Open File</source>
+      <translation>Открыть файл</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3199" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно прочитать файл &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3226" />
+      <location filename="../QScintilla/MiniEditor.py" line="3227" />
       <source>File loaded</source>
       <translation>Файл загружен</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3307" />
-      <source>Save File</source>
-      <translation>Сохранить файл</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <source>Save File</source>
+      <translation>Сохранить файл</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3309" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Невозможно сохранить файл &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt;Причина: {1}.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3314" />
+      <location filename="../QScintilla/MiniEditor.py" line="3315" />
       <source>File saved</source>
       <translation>Файл сохранён</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>[*] - {0}</source>
       <translation>[*] - {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>Mini Editor</source>
       <translation>Миниредактор</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3683" />
-      <location filename="../QScintilla/MiniEditor.py" line="3654" />
-      <location filename="../QScintilla/MiniEditor.py" line="3338" />
+      <location filename="../QScintilla/MiniEditor.py" line="3684" />
+      <location filename="../QScintilla/MiniEditor.py" line="3655" />
+      <location filename="../QScintilla/MiniEditor.py" line="3339" />
       <source>Untitled</source>
       <translation>Без имени</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
       <source>{0}[*] - {1}</source>
       <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3649" />
+      <location filename="../QScintilla/MiniEditor.py" line="3650" />
       <source>Printing...</source>
       <translation>Печать...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3665" />
+      <location filename="../QScintilla/MiniEditor.py" line="3666" />
       <source>Printing completed</source>
       <translation>Печать завершена</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3667" />
+      <location filename="../QScintilla/MiniEditor.py" line="3668" />
       <source>Error while printing</source>
       <translation>Ошибка печати</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3670" />
+      <location filename="../QScintilla/MiniEditor.py" line="3671" />
       <source>Printing aborted</source>
       <translation>Печать прервана</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3724" />
-      <source>Select all</source>
-      <translation>Выделить всё</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <source>Select all</source>
+      <translation>Выделить всё</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3726" />
       <source>Deselect all</source>
       <translation>Снять выделение</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3738" />
+      <location filename="../QScintilla/MiniEditor.py" line="3739" />
       <source>Languages</source>
       <translation>Языки</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3741" />
+      <location filename="../QScintilla/MiniEditor.py" line="3742" />
       <source>No Language</source>
       <translation>Нет языка</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3763" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Guessed</source>
       <translation>Предполагаемый язык</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3785" />
-      <location filename="../QScintilla/MiniEditor.py" line="3767" />
+      <location filename="../QScintilla/MiniEditor.py" line="3786" />
+      <location filename="../QScintilla/MiniEditor.py" line="3768" />
       <source>Alternatives</source>
       <translation>Альтернативная подсветка</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3783" />
       <source>Alternatives ({0})</source>
       <translation>Альтернативы ({0})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3813" />
-      <source>Pygments Lexer</source>
-      <translation>Лексер Pygments</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <source>Pygments Lexer</source>
+      <translation>Лексер Pygments</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3815" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>Выберите для использования лексер Pygments.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4326" />
+      <location filename="../QScintilla/MiniEditor.py" line="4336" />
       <source>EditorConfig Properties</source>
       <translation>Свойства EditorConfig</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4327" />
+      <location filename="../QScintilla/MiniEditor.py" line="4337" />
       <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Не удается загрузить свойства EditorConfig для файла &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
   </context>
   <context>
+    <name>MipLocalInstaller</name>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="185" />
+      <source>Unable to find 'lib' in sys.path. Please enter a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="229" />
+      <source>
+
+Package may be partially installed.</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>MipPackageDialog</name>
     <message>
+      <location filename="../MicroPython/MipPackageDialog.py" line="34" />
+      <source>Enter the URL of the package index. Leave empty to use the default index ({0}).</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
       <source>Install Package</source>
       <translation>Установить пакет</translation>
@@ -52470,6 +52496,21 @@
       <source>Install .mpy File</source>
       <translation>Установить .mpy файл</translation>
     </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Target Directory:</source>
+      <translation type="unfinished">Целевая директория:</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Enter the directory to install to (must be contained in sys.path). Leave empty to detect automatically.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Package Index:</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>MiscellaneousChecker</name>
@@ -53135,194 +53176,194 @@
       <translation>Файлы мультипроекта (*.emj);;XML-файлы мультипроекта (*.e5m *.e4m)</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="603" />
-      <location filename="../MultiProject/MultiProject.py" line="593" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="591" />
       <source>Multi Project Files (*.emj)</source>
       <translation>Файлы мультипроекта (*.emj)</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="599" />
       <source>Save Multiproject</source>
       <translation>Сохранить мультипроект</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="617" />
+      <location filename="../MultiProject/MultiProject.py" line="615" />
       <source>Save File</source>
       <translation>Сохранить файл</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="618" />
+      <location filename="../MultiProject/MultiProject.py" line="616" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="644" />
+      <location filename="../MultiProject/MultiProject.py" line="642" />
       <source>Close Multiproject</source>
       <translation>Закрыть мультипроект</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="645" />
+      <location filename="../MultiProject/MultiProject.py" line="643" />
       <source>The current multiproject has unsaved changes.</source>
       <translation>Изменения в текущем мультипроекте не сохранены.</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="696" />
+      <source>New multiproject</source>
+      <translation>Новый мультипроект</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="698" />
-      <source>New multiproject</source>
-      <translation>Новый мультипроект</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>&amp;New...</source>
       <translation>&amp;Новый...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="704" />
+      <source>Generate a new multiproject</source>
+      <translation>Создать новый мультипроект</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="706" />
-      <source>Generate a new multiproject</source>
-      <translation>Создать новый мультипроект</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Новый...&lt;/b&gt;&lt;p&gt;Открытие диалога ввода информации о новом мультипроекте.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="716" />
+      <source>Open multiproject</source>
+      <translation>Открыть мультипроект</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="718" />
-      <source>Open multiproject</source>
-      <translation>Открыть мультипроект</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="720" />
       <source>&amp;Open...</source>
       <translation>&amp;Открыть...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="724" />
+      <source>Open an existing multiproject</source>
+      <translation>Открыть существующий мультипроект</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="726" />
-      <source>Open an existing multiproject</source>
-      <translation>Открыть существующий мультипроект</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="728" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Открыть...&lt;/b&gt;&lt;p&gt;Открыть существующий мультипроект.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="732" />
+      <source>Close multiproject</source>
+      <translation>Закрыть мультипроект</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="734" />
-      <source>Close multiproject</source>
-      <translation>Закрыть мультипроект</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&amp;Close</source>
       <translation>&amp;Закрыть</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="740" />
+      <source>Close the current multiproject</source>
+      <translation>Закрыть текущий мультипроект</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="742" />
-      <source>Close the current multiproject</source>
-      <translation>Закрыть текущий мультипроект</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Закрыть&lt;/b&gt;&lt;p&gt;Закрытие текущего мультипроекта.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="748" />
+      <source>Save multiproject</source>
+      <translation>Сохранить мультипроект</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="750" />
-      <source>Save multiproject</source>
-      <translation>Сохранить мультипроект</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="752" />
       <source>&amp;Save</source>
       <translation>&amp;Сохранить</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="756" />
+      <source>Save the current multiproject</source>
+      <translation>Закрыть текущий мультипроект</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="758" />
-      <source>Save the current multiproject</source>
-      <translation>Закрыть текущий мультипроект</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="760" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Закрыть&lt;/b&gt;&lt;p&gt;Закрытие текущего мультипроекта.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <source>Save multiproject as</source>
+      <translation>Сохранить файл мультипроекта как</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="766" />
-      <source>Save multiproject as</source>
-      <translation>Сохранить файл мультипроекта как</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="768" />
       <source>Save &amp;as...</source>
       <translation>Сохранить &amp;как...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="775" />
+      <location filename="../MultiProject/MultiProject.py" line="773" />
       <source>Save the current multiproject to a new file</source>
       <translation>Сохранить текущий мультипроект в новый файл</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="778" />
+      <location filename="../MultiProject/MultiProject.py" line="776" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сохранить как&lt;/b&gt;&lt;p&gt; Сохранение текущего мультипроекта в новый файл.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="785" />
+      <source>Add project to multiproject</source>
+      <translation>Добавить проект в мультипроект</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="787" />
-      <source>Add project to multiproject</source>
-      <translation>Добавить проект в мультипроект</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="789" />
       <source>Add &amp;project...</source>
       <translation>Добавить &amp;проект...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="796" />
+      <location filename="../MultiProject/MultiProject.py" line="794" />
       <source>Add a project to the current multiproject</source>
       <translation>Добавить проект в текущий мультипроект</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="799" />
+      <location filename="../MultiProject/MultiProject.py" line="797" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Добавить проект...&lt;/b&gt;&lt;p&gt;Открытие диалога добавления проекта в текущий мультипроект.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="807" />
+      <source>Multiproject properties</source>
+      <translation>Свойства мультипроекта</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="809" />
-      <source>Multiproject properties</source>
-      <translation>Свойства мультипроекта</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="811" />
       <source>&amp;Properties...</source>
       <translation>&amp;Свойства...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="815" />
+      <source>Show the multiproject properties</source>
+      <translation>Свойства мультипроекта</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="817" />
-      <source>Show the multiproject properties</source>
-      <translation>Свойства мультипроекта</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Свойства...&lt;/b&gt;&lt;p&gt;Отображение диалога редактирования свойств мультипроекта.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="840" />
+      <location filename="../MultiProject/MultiProject.py" line="838" />
       <source>&amp;Multiproject</source>
       <translation>&amp;Мультипроект</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="841" />
+      <location filename="../MultiProject/MultiProject.py" line="839" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation>Открыть &amp;недавние мультипроекты</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="880" />
       <location filename="../MultiProject/MultiProject.py" line="878" />
+      <location filename="../MultiProject/MultiProject.py" line="876" />
       <source>Multiproject</source>
       <translation>Мультипроект</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="935" />
+      <location filename="../MultiProject/MultiProject.py" line="933" />
       <source>&amp;Clear</source>
       <translation>&amp;Очистить</translation>
     </message>
@@ -69407,7 +69448,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="417" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="415" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished">Показать версии MicroPython</translation>
@@ -69418,7 +69459,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="381" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="379" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="367" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="349" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="239" />
@@ -69456,42 +69497,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="380" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="378" />
       <source>'st-flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="400" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="398" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="401" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="399" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="416" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished">Не удается определить прошивку подключенного устройства или на плате не работает MicroPython. Отмена...</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="444" />
       <source>unknown</source>
       <translation type="unfinished">неизвестный</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished">&lt;h4&gt;Информация о версии MicroPython&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Установлена:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Доступна:&lt;/td &gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="460" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;&lt;b&gt;Доступно обновление!&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="462" />
       <source>MicroPython Version</source>
       <translation type="unfinished">Версия MicroPython</translation>
     </message>
@@ -69990,49 +70031,49 @@
 </translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="155" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="154" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="151" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="150" />
       <source>Find Next</source>
       <translation>Найти следующее</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="168" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="167" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="164" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="163" />
       <source>Find Prev</source>
       <translation>Найти предыдущее</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="181" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="180" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="177" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="176" />
       <source>Replace and Search</source>
       <translation>Заменить и найти</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="197" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="196" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="191" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="190" />
       <source>Replace Occurrence</source>
       <translation>Заменить вхождение</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="211" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="210" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="205" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="204" />
       <source>Replace All</source>
       <translation>Заменить все</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1048" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1045" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="597" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="559" />
       <source>'{0}' was not found.</source>
       <translation>'{0}' не найдено.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1201" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1198" />
       <source>Replaced {0} occurrences.</source>
       <translation>Заменено в {0} местах.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1207" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1204" />
       <source>Nothing replaced because '{0}' was not found.</source>
       <translation>Ничего не заменено, потому что '{0}' не найдено.</translation>
     </message>
@@ -77843,50 +77884,50 @@
   <context>
     <name>SvnProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="734" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="591" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="594" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="547" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="394" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="593" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="546" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="596" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="549" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="399" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="210" />
       <source>Version Control</source>
       <translation>Контроль версий</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="750" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="607" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="753" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="610" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="224" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="758" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="761" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="415" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="226" />
       <source>Update from repository</source>
       <translation>Обновить из репозитория</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="756" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="616" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="416" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="230" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="764" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="615" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="767" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="618" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="421" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="232" />
       <source>Commit changes to repository...</source>
       <translation>Фиксировать изменения в репозитории...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="763" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="620" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="623" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="423" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="237" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="622" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="625" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="428" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="239" />
       <source>Add to repository</source>
@@ -77901,90 +77942,90 @@
       <translation>Добавить дерево в репозиторий</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="769" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="626" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="772" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="629" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="436" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="250" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="441" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="252" />
       <source>Remove from repository (and disk)</source>
       <translation>Удалить из репозитория (и с диска)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="634" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="255" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="257" />
       <source>Copy</source>
       <translation>Копировать</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="257" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="259" />
       <source>Move</source>
       <translation>Переместить</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="776" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="779" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="641" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="443" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="262" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="784" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="787" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="643" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="448" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="264" />
       <source>Add to Changelist</source>
       <translation>Добавить к списку изменений</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="780" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="783" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="645" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="266" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="788" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="647" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="452" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="268" />
       <source>Remove from Changelist</source>
       <translation>Удалить из списка изменений</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="272" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="650" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="653" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="274" />
       <source>Show log browser</source>
       <translation>Показать журнал истории</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="786" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="655" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="658" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="453" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="279" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="794" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="660" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="281" />
       <source>Show status</source>
       <translation>Показать статус</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="663" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="287" />
       <source>Show repository info</source>
       <translation>Показать информацию о репозитории</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="793" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="662" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="665" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="801" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="670" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="673" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="465" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="294" />
       <source>Show differences</source>
@@ -77997,12 +78038,12 @@
       <translation>Показать различия построчно</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="799" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="802" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="671" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="466" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="298" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="807" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="810" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="679" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="471" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="306" />
       <source>Show differences (extended)</source>
@@ -78015,12 +78056,12 @@
       <translation>Показать различия построчно (подробно)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="805" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="472" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="310" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="813" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="685" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="477" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="318" />
       <source>Show differences (URLs)</source>
@@ -78033,34 +78074,34 @@
       <translation>Показать аннотированный файл</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="812" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="681" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="815" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="684" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="479" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="319" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="820" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="689" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="823" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="692" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="484" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="327" />
       <source>Revert changes</source>
       <translation>Отменить изменения</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="818" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="690" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="826" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="829" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="333" />
       <source>Merge changes</source>
       <translation>Слияние изменений</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="822" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="691" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="483" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="329" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="830" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="699" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="488" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="337" />
       <source>Conflicts resolved</source>
@@ -78099,106 +78140,106 @@
       <translation>Перехватить блокировку</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="828" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="697" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="510" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="356" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="836" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="361" />
       <source>Set Property</source>
       <translation>Установить свойство</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="827" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="830" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="699" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="358" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="835" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="838" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="707" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="363" />
       <source>List Properties</source>
       <translation>Список свойств</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="829" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="698" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="832" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="701" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="360" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="837" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="709" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="365" />
       <source>Delete Property</source>
       <translation>Удалить свойство</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="559" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="841" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="710" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="561" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
-      <source>Select all local file entries</source>
-      <translation>Выделить все локальные записи файла</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="836" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="562" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="844" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="713" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
-      <source>Select all versioned file entries</source>
-      <translation>Выделить все версированные записи файла</translation>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
+      <source>Select all local file entries</source>
+      <translation>Выделить все локальные записи файла</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="839" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="708" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="847" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="716" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="567" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
+      <source>Select all versioned file entries</source>
+      <translation>Выделить все версированные записи файла</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="842" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="570" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="526" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="375" />
       <source>Select all local directory entries</source>
       <translation>Выделить все локальные записи директории</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="843" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="712" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="846" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="715" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="572" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="528" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="374" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="851" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="720" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="571" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="854" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="723" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="574" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="379" />
       <source>Select all versioned directory entries</source>
       <translation>Выделить все версированные записи директории</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="847" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="576" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="532" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="378" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="855" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="724" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="575" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="858" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="727" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="578" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="534" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="383" />
       <source>Configure...</source>
@@ -90809,8 +90850,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
+      <location filename="../QScintilla/MiniEditor.py" line="1685" />
       <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/MiniEditor.py" line="1683" />
       <location filename="../QScintilla/ShellWindow.py" line="435" />
       <location filename="../QScintilla/ShellWindow.py" line="434" />
       <source>Delete current line</source>
@@ -90818,7 +90859,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
+      <location filename="../QScintilla/MiniEditor.py" line="1686" />
       <location filename="../QScintilla/ShellWindow.py" line="436" />
       <source>Ctrl+Shift+L</source>
       <translation>Ctrl+Shift+L</translation>
@@ -90826,8 +90867,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="1207" />
       <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/MiniEditor.py" line="1205" />
       <location filename="../QScintilla/ShellWindow.py" line="447" />
       <location filename="../QScintilla/ShellWindow.py" line="446" />
       <source>Indent one level</source>
@@ -90835,7 +90876,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
+      <location filename="../QScintilla/MiniEditor.py" line="1208" />
       <location filename="../QScintilla/ShellWindow.py" line="448" />
       <source>Tab</source>
       <translation>Tab</translation>
@@ -90843,8 +90884,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
+      <location filename="../QScintilla/MiniEditor.py" line="1673" />
       <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1671" />
       <location filename="../QScintilla/ShellWindow.py" line="459" />
       <location filename="../QScintilla/ShellWindow.py" line="458" />
       <source>Insert new line</source>
@@ -90852,14 +90893,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
+      <location filename="../QScintilla/MiniEditor.py" line="1674" />
       <location filename="../QScintilla/ShellWindow.py" line="460" />
       <source>Return</source>
       <translation>Return</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
+      <location filename="../QScintilla/MiniEditor.py" line="1675" />
       <location filename="../QScintilla/ShellWindow.py" line="461" />
       <source>Enter</source>
       <translation>Enter</translation>
@@ -90867,8 +90908,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
+      <location filename="../QScintilla/MiniEditor.py" line="1559" />
       <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1557" />
       <location filename="../QScintilla/ShellWindow.py" line="471" />
       <location filename="../QScintilla/ShellWindow.py" line="470" />
       <source>Delete previous character</source>
@@ -90876,21 +90917,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
+      <location filename="../QScintilla/MiniEditor.py" line="1560" />
       <location filename="../QScintilla/ShellWindow.py" line="472" />
       <source>Backspace</source>
       <translation>Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1566" />
+      <location filename="../QScintilla/MiniEditor.py" line="1567" />
       <location filename="../QScintilla/ShellWindow.py" line="479" />
       <source>Meta+H</source>
       <translation>Meta+H</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1571" />
+      <location filename="../QScintilla/MiniEditor.py" line="1572" />
       <location filename="../QScintilla/ShellWindow.py" line="484" />
       <source>Shift+Backspace</source>
       <translation>Shift+Backspace</translation>
@@ -90898,8 +90939,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
+      <location filename="../QScintilla/MiniEditor.py" line="1597" />
       <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1595" />
       <location filename="../QScintilla/ShellWindow.py" line="493" />
       <location filename="../QScintilla/ShellWindow.py" line="492" />
       <source>Delete current character</source>
@@ -90907,14 +90948,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
+      <location filename="../QScintilla/MiniEditor.py" line="1598" />
       <location filename="../QScintilla/ShellWindow.py" line="494" />
       <source>Del</source>
       <translation>Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1604" />
+      <location filename="../QScintilla/MiniEditor.py" line="1605" />
       <location filename="../QScintilla/ShellWindow.py" line="501" />
       <source>Meta+D</source>
       <translation>Meta+D</translation>
@@ -90922,8 +90963,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
+      <location filename="../QScintilla/MiniEditor.py" line="1613" />
       <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/MiniEditor.py" line="1611" />
       <location filename="../QScintilla/ShellWindow.py" line="509" />
       <location filename="../QScintilla/ShellWindow.py" line="508" />
       <source>Delete word to left</source>
@@ -90931,7 +90972,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1614" />
       <location filename="../QScintilla/ShellWindow.py" line="510" />
       <source>Ctrl+Backspace</source>
       <translation>Ctrl+Backspace</translation>
@@ -90939,8 +90980,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1625" />
       <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/MiniEditor.py" line="1623" />
       <location filename="../QScintilla/ShellWindow.py" line="521" />
       <location filename="../QScintilla/ShellWindow.py" line="520" />
       <source>Delete word to right</source>
@@ -90948,7 +90989,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
+      <location filename="../QScintilla/MiniEditor.py" line="1626" />
       <location filename="../QScintilla/ShellWindow.py" line="522" />
       <source>Ctrl+Del</source>
       <translation>Ctrl+Del</translation>
@@ -90956,8 +90997,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
+      <location filename="../QScintilla/MiniEditor.py" line="1637" />
       <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/MiniEditor.py" line="1635" />
       <location filename="../QScintilla/ShellWindow.py" line="533" />
       <location filename="../QScintilla/ShellWindow.py" line="532" />
       <source>Delete line to left</source>
@@ -90965,7 +91006,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1638" />
+      <location filename="../QScintilla/MiniEditor.py" line="1639" />
       <location filename="../QScintilla/ShellWindow.py" line="535" />
       <source>Ctrl+Shift+Backspace</source>
       <translation>Ctrl+Shift+Backspace</translation>
@@ -90973,8 +91014,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
+      <location filename="../QScintilla/MiniEditor.py" line="1651" />
       <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/MiniEditor.py" line="1649" />
       <location filename="../QScintilla/ShellWindow.py" line="547" />
       <location filename="../QScintilla/ShellWindow.py" line="546" />
       <source>Delete line to right</source>
@@ -90982,14 +91023,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1658" />
+      <location filename="../QScintilla/MiniEditor.py" line="1659" />
       <location filename="../QScintilla/ShellWindow.py" line="555" />
       <source>Meta+K</source>
       <translation>Meta+K</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1663" />
+      <location filename="../QScintilla/MiniEditor.py" line="1664" />
       <location filename="../QScintilla/ShellWindow.py" line="560" />
       <source>Ctrl+Shift+Del</source>
       <translation>Ctrl+Shift+Del</translation>
@@ -90997,8 +91038,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
+      <location filename="../QScintilla/MiniEditor.py" line="895" />
       <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/MiniEditor.py" line="893" />
       <location filename="../QScintilla/ShellWindow.py" line="569" />
       <location filename="../QScintilla/ShellWindow.py" line="568" />
       <source>Move left one character</source>
@@ -91006,14 +91047,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
+      <location filename="../QScintilla/MiniEditor.py" line="896" />
       <location filename="../QScintilla/ShellWindow.py" line="570" />
       <source>Left</source>
       <translation>Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="904" />
       <location filename="../QScintilla/ShellWindow.py" line="578" />
       <source>Meta+B</source>
       <translation>Meta+B</translation>
@@ -91021,8 +91062,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="911" />
       <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/MiniEditor.py" line="909" />
       <location filename="../QScintilla/ShellWindow.py" line="585" />
       <location filename="../QScintilla/ShellWindow.py" line="584" />
       <source>Move right one character</source>
@@ -91030,14 +91071,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
+      <location filename="../QScintilla/MiniEditor.py" line="912" />
       <location filename="../QScintilla/ShellWindow.py" line="586" />
       <source>Right</source>
       <translation>Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="918" />
+      <location filename="../QScintilla/MiniEditor.py" line="919" />
       <location filename="../QScintilla/ShellWindow.py" line="593" />
       <source>Meta+F</source>
       <translation>Meta+F</translation>
@@ -91045,8 +91086,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="991" />
       <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/MiniEditor.py" line="989" />
       <location filename="../QScintilla/ShellWindow.py" line="601" />
       <location filename="../QScintilla/ShellWindow.py" line="600" />
       <source>Move left one word</source>
@@ -91055,8 +91096,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="998" />
-      <location filename="../QScintilla/MiniEditor.py" line="966" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/MiniEditor.py" line="967" />
       <location filename="../QScintilla/ShellWindow.py" line="609" />
       <source>Alt+Left</source>
       <translation>Alt+Left</translation>
@@ -91064,8 +91105,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1058" />
-      <location filename="../QScintilla/MiniEditor.py" line="1002" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
+      <location filename="../QScintilla/MiniEditor.py" line="1003" />
       <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Ctrl+Left</source>
       <translation>Ctrl+Left</translation>
@@ -91073,8 +91114,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
+      <location filename="../QScintilla/MiniEditor.py" line="1011" />
       <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/MiniEditor.py" line="1009" />
       <location filename="../QScintilla/ShellWindow.py" line="621" />
       <location filename="../QScintilla/ShellWindow.py" line="620" />
       <source>Move right one word</source>
@@ -91083,8 +91124,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1812" />
-      <location filename="../QScintilla/MiniEditor.py" line="1022" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="1023" />
       <location filename="../QScintilla/ShellWindow.py" line="629" />
       <source>Ctrl+Right</source>
       <translation>Ctrl+Right</translation>
@@ -91092,8 +91133,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1032" />
-      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1033" />
+      <location filename="../QScintilla/MiniEditor.py" line="1030" />
       <location filename="../QScintilla/ShellWindow.py" line="639" />
       <location filename="../QScintilla/ShellWindow.py" line="636" />
       <source>Move to first visible character in document line</source>
@@ -91102,8 +91143,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2073" />
-      <location filename="../QScintilla/MiniEditor.py" line="1042" />
+      <location filename="../QScintilla/MiniEditor.py" line="2074" />
+      <location filename="../QScintilla/MiniEditor.py" line="1043" />
       <location filename="../QScintilla/ShellWindow.py" line="649" />
       <source>Home</source>
       <translation>Home</translation>
@@ -91111,8 +91152,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
+      <location filename="../QScintilla/MiniEditor.py" line="1071" />
       <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/MiniEditor.py" line="1069" />
       <location filename="../QScintilla/ShellWindow.py" line="657" />
       <location filename="../QScintilla/ShellWindow.py" line="656" />
       <source>Move to end of document line</source>
@@ -91120,7 +91161,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1078" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
       <location filename="../QScintilla/ShellWindow.py" line="665" />
       <source>Meta+E</source>
       <translation>Meta+E</translation>
@@ -91128,8 +91169,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1083" />
       <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>End</source>
       <translation>End</translation>
@@ -91137,8 +91178,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="927" />
       <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/MiniEditor.py" line="925" />
       <location filename="../QScintilla/ShellWindow.py" line="677" />
       <location filename="../QScintilla/ShellWindow.py" line="676" />
       <source>Move up one line</source>
@@ -91146,14 +91187,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
+      <location filename="../QScintilla/MiniEditor.py" line="928" />
       <location filename="../QScintilla/ShellWindow.py" line="678" />
       <source>Up</source>
       <translation>Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="934" />
+      <location filename="../QScintilla/MiniEditor.py" line="935" />
       <location filename="../QScintilla/ShellWindow.py" line="685" />
       <source>Meta+P</source>
       <translation>Meta+P</translation>
@@ -91161,8 +91202,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
+      <location filename="../QScintilla/MiniEditor.py" line="943" />
       <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/MiniEditor.py" line="941" />
       <location filename="../QScintilla/ShellWindow.py" line="693" />
       <location filename="../QScintilla/ShellWindow.py" line="692" />
       <source>Move down one line</source>
@@ -91170,14 +91211,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="944" />
       <location filename="../QScintilla/ShellWindow.py" line="694" />
       <source>Down</source>
       <translation>Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="950" />
+      <location filename="../QScintilla/MiniEditor.py" line="951" />
       <location filename="../QScintilla/ShellWindow.py" line="701" />
       <source>Meta+N</source>
       <translation>Meta+N</translation>
@@ -91185,8 +91226,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1194" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
+      <location filename="../QScintilla/MiniEditor.py" line="1092" />
       <location filename="../QScintilla/ShellWindow.py" line="710" />
       <source>Ctrl+Down</source>
       <translation>Ctrl+Down</translation>
@@ -91194,8 +91235,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1174" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
+      <location filename="../QScintilla/MiniEditor.py" line="1104" />
       <location filename="../QScintilla/ShellWindow.py" line="722" />
       <source>Ctrl+Up</source>
       <translation>Ctrl+Up</translation>
@@ -91203,8 +91244,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1139" />
       <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/MiniEditor.py" line="1137" />
       <location filename="../QScintilla/ShellWindow.py" line="733" />
       <location filename="../QScintilla/ShellWindow.py" line="732" />
       <source>Move up one page</source>
@@ -91212,7 +91253,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
+      <location filename="../QScintilla/MiniEditor.py" line="1140" />
       <location filename="../QScintilla/ShellWindow.py" line="734" />
       <source>PgUp</source>
       <translation>PgUp</translation>
@@ -91220,8 +91261,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
+      <location filename="../QScintilla/MiniEditor.py" line="1151" />
       <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1149" />
       <location filename="../QScintilla/ShellWindow.py" line="745" />
       <location filename="../QScintilla/ShellWindow.py" line="744" />
       <source>Move down one page</source>
@@ -91229,14 +91270,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1152" />
       <location filename="../QScintilla/ShellWindow.py" line="746" />
       <source>PgDown</source>
       <translation>PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1158" />
+      <location filename="../QScintilla/MiniEditor.py" line="1159" />
       <location filename="../QScintilla/ShellWindow.py" line="753" />
       <source>Meta+V</source>
       <translation>Meta+V</translation>
@@ -91244,8 +91285,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
+      <location filename="../QScintilla/MiniEditor.py" line="1859" />
       <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/MiniEditor.py" line="1857" />
       <location filename="../QScintilla/ShellWindow.py" line="761" />
       <location filename="../QScintilla/ShellWindow.py" line="760" />
       <source>Escape</source>
@@ -91253,7 +91294,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
+      <location filename="../QScintilla/MiniEditor.py" line="1860" />
       <location filename="../QScintilla/ShellWindow.py" line="762" />
       <source>Esc</source>
       <translation>Esc</translation>
@@ -91261,8 +91302,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1233" />
+      <location filename="../QScintilla/MiniEditor.py" line="1230" />
       <location filename="../QScintilla/ShellWindow.py" line="775" />
       <location filename="../QScintilla/ShellWindow.py" line="772" />
       <source>Extend selection left one character</source>
@@ -91270,14 +91311,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1235" />
+      <location filename="../QScintilla/MiniEditor.py" line="1236" />
       <location filename="../QScintilla/ShellWindow.py" line="778" />
       <source>Shift+Left</source>
       <translation>Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1242" />
+      <location filename="../QScintilla/MiniEditor.py" line="1243" />
       <location filename="../QScintilla/ShellWindow.py" line="785" />
       <source>Meta+Shift+B</source>
       <translation>Meta+Shift+B</translation>
@@ -91285,8 +91326,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1253" />
+      <location filename="../QScintilla/MiniEditor.py" line="1250" />
       <location filename="../QScintilla/ShellWindow.py" line="795" />
       <location filename="../QScintilla/ShellWindow.py" line="792" />
       <source>Extend selection right one character</source>
@@ -91294,14 +91335,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1255" />
+      <location filename="../QScintilla/MiniEditor.py" line="1256" />
       <location filename="../QScintilla/ShellWindow.py" line="798" />
       <source>Shift+Right</source>
       <translation>Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1262" />
+      <location filename="../QScintilla/MiniEditor.py" line="1263" />
       <location filename="../QScintilla/ShellWindow.py" line="805" />
       <source>Meta+Shift+F</source>
       <translation>Meta+Shift+F</translation>
@@ -91309,8 +91350,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
+      <location filename="../QScintilla/MiniEditor.py" line="1347" />
       <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/MiniEditor.py" line="1345" />
       <location filename="../QScintilla/ShellWindow.py" line="813" />
       <location filename="../QScintilla/ShellWindow.py" line="812" />
       <source>Extend selection left one word</source>
@@ -91319,8 +91360,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1355" />
-      <location filename="../QScintilla/MiniEditor.py" line="1315" />
+      <location filename="../QScintilla/MiniEditor.py" line="1356" />
+      <location filename="../QScintilla/MiniEditor.py" line="1316" />
       <location filename="../QScintilla/ShellWindow.py" line="822" />
       <source>Alt+Shift+Left</source>
       <translation>Alt+Shift+Left</translation>
@@ -91328,8 +91369,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2276" />
-      <location filename="../QScintilla/MiniEditor.py" line="1361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2277" />
+      <location filename="../QScintilla/MiniEditor.py" line="1362" />
       <location filename="../QScintilla/ShellWindow.py" line="828" />
       <source>Ctrl+Shift+Left</source>
       <translation>Ctrl+Shift+Left</translation>
@@ -91337,8 +91378,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1372" />
-      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1373" />
+      <location filename="../QScintilla/MiniEditor.py" line="1370" />
       <location filename="../QScintilla/ShellWindow.py" line="839" />
       <location filename="../QScintilla/ShellWindow.py" line="836" />
       <source>Extend selection right one word</source>
@@ -91348,9 +91389,9 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1383" />
-      <location filename="../QScintilla/MiniEditor.py" line="1337" />
+      <location filename="../QScintilla/MiniEditor.py" line="2151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1384" />
+      <location filename="../QScintilla/MiniEditor.py" line="1338" />
       <location filename="../QScintilla/ShellWindow.py" line="850" />
       <source>Alt+Shift+Right</source>
       <translation>Alt+Shift+Right</translation>
@@ -91358,8 +91399,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1837" />
-      <location filename="../QScintilla/MiniEditor.py" line="1389" />
+      <location filename="../QScintilla/MiniEditor.py" line="1838" />
+      <location filename="../QScintilla/MiniEditor.py" line="1390" />
       <location filename="../QScintilla/ShellWindow.py" line="856" />
       <source>Ctrl+Shift+Right</source>
       <translation>Ctrl+Shift+Right</translation>
@@ -91367,8 +91408,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1401" />
-      <location filename="../QScintilla/MiniEditor.py" line="1397" />
+      <location filename="../QScintilla/MiniEditor.py" line="1402" />
+      <location filename="../QScintilla/MiniEditor.py" line="1398" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
       <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
@@ -91376,7 +91417,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1412" />
+      <location filename="../QScintilla/MiniEditor.py" line="1413" />
       <location filename="../QScintilla/ShellWindow.py" line="879" />
       <source>Shift+Home</source>
       <translation>Shift+Home</translation>
@@ -91384,8 +91425,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1422" />
-      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1423" />
+      <location filename="../QScintilla/MiniEditor.py" line="1420" />
       <location filename="../QScintilla/ShellWindow.py" line="889" />
       <location filename="../QScintilla/ShellWindow.py" line="886" />
       <source>Extend selection to end of document line</source>
@@ -91393,14 +91434,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1432" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
       <location filename="../QScintilla/ShellWindow.py" line="899" />
       <source>Meta+Shift+E</source>
       <translation>Meta+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1437" />
       <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Shift+End</source>
       <translation>Shift+End</translation>
@@ -91409,21 +91450,21 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2532" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
       <location filename="../QScintilla/ShellWindow.py" line="917" />
       <source>Search</source>
       <translation>Поиск</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2534" />
+      <location filename="../QScintilla/MiniEditor.py" line="2535" />
       <location filename="../QScintilla/ShellWindow.py" line="919" />
       <source>&amp;Search...</source>
       <translation>&amp;Поиск...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2536" />
+      <location filename="../QScintilla/MiniEditor.py" line="2537" />
       <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
@@ -91431,7 +91472,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2543" />
+      <location filename="../QScintilla/MiniEditor.py" line="2544" />
       <location filename="../QScintilla/ShellWindow.py" line="928" />
       <source>Search for a text</source>
       <translation>Поиск текста</translation>
@@ -91443,21 +91484,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
       <location filename="../QScintilla/ShellWindow.py" line="943" />
       <source>Search next</source>
       <translation>Найти следующее</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2560" />
+      <location filename="../QScintilla/MiniEditor.py" line="2561" />
       <location filename="../QScintilla/ShellWindow.py" line="945" />
       <source>Search &amp;next</source>
       <translation>&amp;Следующее</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2562" />
+      <location filename="../QScintilla/MiniEditor.py" line="2563" />
       <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>F3</source>
       <comment>Search|Search next</comment>
@@ -91465,7 +91506,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2569" />
+      <location filename="../QScintilla/MiniEditor.py" line="2570" />
       <location filename="../QScintilla/ShellWindow.py" line="954" />
       <source>Search next occurrence of text</source>
       <translation>Поиск следующего вхождения текста</translation>
@@ -91477,21 +91518,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2584" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
       <location filename="../QScintilla/ShellWindow.py" line="971" />
       <source>Search previous</source>
       <translation>Найти предыдущее</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2586" />
+      <location filename="../QScintilla/MiniEditor.py" line="2587" />
       <location filename="../QScintilla/ShellWindow.py" line="973" />
       <source>Search &amp;previous</source>
       <translation>&amp;Предыдущее</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2588" />
+      <location filename="../QScintilla/MiniEditor.py" line="2589" />
       <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
@@ -91499,7 +91540,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2597" />
+      <location filename="../QScintilla/MiniEditor.py" line="2598" />
       <location filename="../QScintilla/ShellWindow.py" line="984" />
       <source>Search previous occurrence of text</source>
       <translation>Поиск предыдущего вхождения текста</translation>
@@ -91511,21 +91552,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2757" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
       <location filename="../QScintilla/ShellWindow.py" line="1010" />
       <source>Zoom in</source>
       <translation>Увеличить масштаб</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2759" />
+      <location filename="../QScintilla/MiniEditor.py" line="2760" />
       <location filename="../QScintilla/ShellWindow.py" line="1012" />
       <source>Zoom &amp;in</source>
       <translation>У&amp;величить масштаб</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/MiniEditor.py" line="2762" />
       <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
@@ -91533,7 +91574,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2764" />
+      <location filename="../QScintilla/MiniEditor.py" line="2765" />
       <location filename="../QScintilla/ShellWindow.py" line="1017" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
@@ -91541,35 +91582,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/MiniEditor.py" line="2771" />
       <location filename="../QScintilla/ShellWindow.py" line="1023" />
       <source>Zoom in on the text</source>
       <translation>Увеличить масштаб текста</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2773" />
+      <location filename="../QScintilla/MiniEditor.py" line="2774" />
       <location filename="../QScintilla/ShellWindow.py" line="1026" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Увеличить масштаб&lt;/b&gt;&lt;p&gt;Увеличить масштаб. Размер букв увеличится.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2783" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
       <location filename="../QScintilla/ShellWindow.py" line="1036" />
       <source>Zoom out</source>
       <translation>Уменьшить масштаб</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2785" />
+      <location filename="../QScintilla/MiniEditor.py" line="2786" />
       <location filename="../QScintilla/ShellWindow.py" line="1038" />
       <source>Zoom &amp;out</source>
       <translation>У&amp;меньшить масштаб</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/MiniEditor.py" line="2788" />
       <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
@@ -91577,7 +91618,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2790" />
+      <location filename="../QScintilla/MiniEditor.py" line="2791" />
       <location filename="../QScintilla/ShellWindow.py" line="1043" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
@@ -91585,35 +91626,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/MiniEditor.py" line="2797" />
       <location filename="../QScintilla/ShellWindow.py" line="1049" />
       <source>Zoom out on the text</source>
       <translation>Уменьшить масштаб текста</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2799" />
+      <location filename="../QScintilla/MiniEditor.py" line="2800" />
       <location filename="../QScintilla/ShellWindow.py" line="1052" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Уменьшить масштаб&lt;/b&gt;&lt;p&gt;Уменьшить масштаб. Размер букв уменьшится.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2809" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
       <location filename="../QScintilla/ShellWindow.py" line="1062" />
       <source>Zoom reset</source>
       <translation>Сбросить масштаб</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2811" />
+      <location filename="../QScintilla/MiniEditor.py" line="2812" />
       <location filename="../QScintilla/ShellWindow.py" line="1064" />
       <source>Zoom &amp;reset</source>
       <translation>&amp;Сбросить масштаб</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2813" />
+      <location filename="../QScintilla/MiniEditor.py" line="2814" />
       <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
@@ -91621,42 +91662,42 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/MiniEditor.py" line="2821" />
       <location filename="../QScintilla/ShellWindow.py" line="1073" />
       <source>Reset the zoom of the text</source>
       <translation>Сбросить масштаб текста</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2823" />
+      <location filename="../QScintilla/MiniEditor.py" line="2824" />
       <location filename="../QScintilla/ShellWindow.py" line="1076" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Сбросить масштаб&lt;/b&gt;&lt;p&gt;Сброс масштаба текста. Эта настройка возвращает масштаб текста к 100%.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2834" />
+      <location filename="../QScintilla/MiniEditor.py" line="2835" />
       <location filename="../QScintilla/ShellWindow.py" line="1087" />
       <source>Zoom</source>
       <translation>Масштаб</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2836" />
+      <location filename="../QScintilla/MiniEditor.py" line="2837" />
       <location filename="../QScintilla/ShellWindow.py" line="1089" />
       <source>&amp;Zoom</source>
       <translation>Мас&amp;штаб</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/MiniEditor.py" line="2844" />
       <location filename="../QScintilla/ShellWindow.py" line="1096" />
       <source>Zoom the text</source>
       <translation>Масштаб текста</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2846" />
+      <location filename="../QScintilla/MiniEditor.py" line="2847" />
       <location filename="../QScintilla/ShellWindow.py" line="1099" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Масштаб&lt;/b&gt;
@@ -91665,904 +91706,904 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="804" />
       <location filename="../ViewManager/ViewManager.py" line="802" />
-      <location filename="../QScintilla/MiniEditor.py" line="740" />
+      <location filename="../QScintilla/MiniEditor.py" line="741" />
       <source>Print Preview</source>
       <translation>Предварительный просмотр печати</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
+      <location filename="../QScintilla/MiniEditor.py" line="959" />
       <location filename="../QScintilla/MiniEditor.py" line="958" />
-      <location filename="../QScintilla/MiniEditor.py" line="957" />
       <source>Move left one word part</source>
       <translation>Перейти влево на одну часть слова</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
+      <location filename="../QScintilla/MiniEditor.py" line="975" />
       <location filename="../QScintilla/MiniEditor.py" line="974" />
-      <location filename="../QScintilla/MiniEditor.py" line="973" />
       <source>Move right one word part</source>
       <translation>Перейти вправо на одну часть слова</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2128" />
-      <location filename="../QScintilla/MiniEditor.py" line="1018" />
-      <location filename="../QScintilla/MiniEditor.py" line="982" />
+      <location filename="../QScintilla/MiniEditor.py" line="2129" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/MiniEditor.py" line="983" />
       <source>Alt+Right</source>
       <translation>Alt+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1051" />
       <location filename="../QScintilla/MiniEditor.py" line="1050" />
-      <location filename="../QScintilla/MiniEditor.py" line="1049" />
       <source>Move to start of display line</source>
       <translation>Перейти на начало строки экрана</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="1063" />
       <source>Alt+Home</source>
       <translation>Alt+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
+      <location filename="../QScintilla/MiniEditor.py" line="1091" />
       <location filename="../QScintilla/MiniEditor.py" line="1090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1089" />
       <source>Scroll view down one line</source>
       <translation>Прокрутить на одну строку вниз</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
+      <location filename="../QScintilla/MiniEditor.py" line="1103" />
       <location filename="../QScintilla/MiniEditor.py" line="1102" />
-      <location filename="../QScintilla/MiniEditor.py" line="1101" />
       <source>Scroll view up one line</source>
       <translation>Прокрутить на одну строку вверх</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
+      <location filename="../QScintilla/MiniEditor.py" line="1115" />
       <location filename="../QScintilla/MiniEditor.py" line="1114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1113" />
       <source>Move up one paragraph</source>
       <translation>Перейти на один параграф вверх</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
+      <location filename="../QScintilla/MiniEditor.py" line="1116" />
       <source>Alt+Up</source>
       <translation>Alt+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
+      <location filename="../QScintilla/MiniEditor.py" line="1127" />
       <location filename="../QScintilla/MiniEditor.py" line="1126" />
-      <location filename="../QScintilla/MiniEditor.py" line="1125" />
       <source>Move down one paragraph</source>
       <translation>Перейти на один параграф вниз</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
+      <location filename="../QScintilla/MiniEditor.py" line="1128" />
       <source>Alt+Down</source>
       <translation>Alt+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
+      <location filename="../QScintilla/MiniEditor.py" line="1167" />
       <location filename="../QScintilla/MiniEditor.py" line="1166" />
-      <location filename="../QScintilla/MiniEditor.py" line="1165" />
       <source>Move to start of document</source>
       <translation>Перейти на начало документа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1178" />
+      <location filename="../QScintilla/MiniEditor.py" line="1179" />
       <source>Ctrl+Home</source>
       <translation>Ctrl+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
+      <location filename="../QScintilla/MiniEditor.py" line="1187" />
       <location filename="../QScintilla/MiniEditor.py" line="1186" />
-      <location filename="../QScintilla/MiniEditor.py" line="1185" />
       <source>Move to end of document</source>
       <translation>Перейти на конец документа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1198" />
+      <location filename="../QScintilla/MiniEditor.py" line="1199" />
       <source>Ctrl+End</source>
       <translation>Ctrl+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
+      <location filename="../QScintilla/MiniEditor.py" line="1219" />
       <location filename="../QScintilla/MiniEditor.py" line="1218" />
-      <location filename="../QScintilla/MiniEditor.py" line="1217" />
       <source>Unindent one level</source>
       <translation>Уменьшить отступ</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
+      <location filename="../QScintilla/MiniEditor.py" line="1220" />
       <source>Shift+Tab</source>
       <translation>Shift+Tab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
+      <location filename="../QScintilla/MiniEditor.py" line="1271" />
       <location filename="../QScintilla/MiniEditor.py" line="1270" />
-      <location filename="../QScintilla/MiniEditor.py" line="1269" />
       <source>Extend selection up one line</source>
       <translation>Распространить выделение на одну строку вверх</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
+      <location filename="../QScintilla/MiniEditor.py" line="1272" />
       <source>Shift+Up</source>
       <translation>Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1278" />
+      <location filename="../QScintilla/MiniEditor.py" line="1279" />
       <source>Meta+Shift+P</source>
       <translation>Meta+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
+      <location filename="../QScintilla/MiniEditor.py" line="1287" />
       <location filename="../QScintilla/MiniEditor.py" line="1286" />
-      <location filename="../QScintilla/MiniEditor.py" line="1285" />
       <source>Extend selection down one line</source>
       <translation>Распространить выделение на одну строку вниз</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
+      <location filename="../QScintilla/MiniEditor.py" line="1288" />
       <source>Shift+Down</source>
       <translation>Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1294" />
+      <location filename="../QScintilla/MiniEditor.py" line="1295" />
       <source>Meta+Shift+N</source>
       <translation>Meta+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1304" />
-      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1305" />
+      <location filename="../QScintilla/MiniEditor.py" line="1302" />
       <source>Extend selection left one word part</source>
       <translation>Распространить выделение на одну часть слова влево</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1326" />
-      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1327" />
+      <location filename="../QScintilla/MiniEditor.py" line="1324" />
       <source>Extend selection right one word part</source>
       <translation>Распространить выделение на одну часть слова вправо</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1446" />
-      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1447" />
+      <location filename="../QScintilla/MiniEditor.py" line="1444" />
       <source>Extend selection up one paragraph</source>
       <translation>Распространить выделение на один параграф вверх</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1449" />
+      <location filename="../QScintilla/MiniEditor.py" line="1450" />
       <source>Alt+Shift+Up</source>
       <translation>Alt+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1462" />
-      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1463" />
+      <location filename="../QScintilla/MiniEditor.py" line="1460" />
       <source>Extend selection down one paragraph</source>
       <translation>Распространить выделение на один параграф вниз</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1465" />
+      <location filename="../QScintilla/MiniEditor.py" line="1466" />
       <source>Alt+Shift+Down</source>
       <translation>Alt+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1477" />
       <location filename="../QScintilla/MiniEditor.py" line="1476" />
-      <location filename="../QScintilla/MiniEditor.py" line="1475" />
       <source>Extend selection up one page</source>
       <translation>Распространить выделение на страницу вверх</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
+      <location filename="../QScintilla/MiniEditor.py" line="1478" />
       <source>Shift+PgUp</source>
       <translation>Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="1489" />
       <location filename="../QScintilla/MiniEditor.py" line="1488" />
-      <location filename="../QScintilla/MiniEditor.py" line="1487" />
       <source>Extend selection down one page</source>
       <translation>Распространить выделение на страницу вниз</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
+      <location filename="../QScintilla/MiniEditor.py" line="1490" />
       <source>Shift+PgDown</source>
       <translation>Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1496" />
+      <location filename="../QScintilla/MiniEditor.py" line="1497" />
       <source>Meta+Shift+V</source>
       <translation>Meta+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1506" />
-      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1507" />
+      <location filename="../QScintilla/MiniEditor.py" line="1504" />
       <source>Extend selection to start of document</source>
       <translation>Распространить выделение до начала документа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1516" />
+      <location filename="../QScintilla/MiniEditor.py" line="1517" />
       <source>Ctrl+Shift+Up</source>
       <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1521" />
+      <location filename="../QScintilla/MiniEditor.py" line="1522" />
       <source>Ctrl+Shift+Home</source>
       <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1533" />
+      <location filename="../QScintilla/MiniEditor.py" line="1530" />
       <source>Extend selection to end of document</source>
       <translation>Распространить выделение до конца документа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1543" />
+      <location filename="../QScintilla/MiniEditor.py" line="1544" />
       <source>Ctrl+Shift+Down</source>
       <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1549" />
+      <location filename="../QScintilla/MiniEditor.py" line="1550" />
       <source>Ctrl+Shift+End</source>
       <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1583" />
+      <location filename="../QScintilla/MiniEditor.py" line="1580" />
       <source>Delete previous character if not at start of line</source>
       <translation>Удалить предыдущий символ если он не первый в строке</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1697" />
       <location filename="../QScintilla/MiniEditor.py" line="1696" />
-      <location filename="../QScintilla/MiniEditor.py" line="1695" />
       <source>Duplicate current line</source>
       <translation>Дублировать текущую строку</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
+      <location filename="../QScintilla/MiniEditor.py" line="1698" />
       <source>Ctrl+D</source>
       <translation>Ctrl+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1710" />
-      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1711" />
+      <location filename="../QScintilla/MiniEditor.py" line="1708" />
       <source>Swap current and previous lines</source>
       <translation>Поменять местами предыдущую и последующую строки</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1713" />
+      <location filename="../QScintilla/MiniEditor.py" line="1714" />
       <source>Ctrl+T</source>
       <translation>Ctrl+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="1725" />
       <location filename="../QScintilla/MiniEditor.py" line="1724" />
-      <location filename="../QScintilla/MiniEditor.py" line="1723" />
       <source>Reverse selected lines</source>
       <translation>Реверсировать выбранные строки</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
+      <location filename="../QScintilla/MiniEditor.py" line="1726" />
       <source>Meta+Alt+R</source>
       <translation>Meta+Alt+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
+      <location filename="../QScintilla/MiniEditor.py" line="1737" />
       <location filename="../QScintilla/MiniEditor.py" line="1736" />
-      <location filename="../QScintilla/MiniEditor.py" line="1735" />
       <source>Cut current line</source>
       <translation>Вырезать текущую строку</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
+      <location filename="../QScintilla/MiniEditor.py" line="1738" />
       <source>Alt+Shift+L</source>
       <translation>Alt+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
+      <location filename="../QScintilla/MiniEditor.py" line="1749" />
       <location filename="../QScintilla/MiniEditor.py" line="1748" />
-      <location filename="../QScintilla/MiniEditor.py" line="1747" />
       <source>Copy current line</source>
       <translation>Копировать текущую строку</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="1750" />
       <source>Ctrl+Shift+T</source>
       <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
+      <location filename="../QScintilla/MiniEditor.py" line="1761" />
       <location filename="../QScintilla/MiniEditor.py" line="1760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1759" />
       <source>Toggle insert/overtype</source>
       <translation>Вставка/Замена</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
+      <location filename="../QScintilla/MiniEditor.py" line="1762" />
       <source>Ins</source>
       <translation>Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1775" />
+      <location filename="../QScintilla/MiniEditor.py" line="1772" />
       <source>Convert selection to lower case</source>
       <translation>Преобразовать выделение в нижний регистр</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1777" />
+      <location filename="../QScintilla/MiniEditor.py" line="1778" />
       <source>Alt+Shift+U</source>
       <translation>Alt+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1791" />
+      <location filename="../QScintilla/MiniEditor.py" line="1788" />
       <source>Convert selection to upper case</source>
       <translation>Преобразовать выделение в верхний регистр</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1793" />
+      <location filename="../QScintilla/MiniEditor.py" line="1794" />
       <source>Ctrl+Shift+U</source>
       <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
+      <location filename="../QScintilla/MiniEditor.py" line="1805" />
       <location filename="../QScintilla/MiniEditor.py" line="1804" />
-      <location filename="../QScintilla/MiniEditor.py" line="1803" />
       <source>Move to end of display line</source>
       <translation>Перейти на конец строки экрана</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1816" />
+      <location filename="../QScintilla/MiniEditor.py" line="1817" />
       <source>Alt+End</source>
       <translation>Alt+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1827" />
+      <location filename="../QScintilla/MiniEditor.py" line="1824" />
       <source>Extend selection to end of display line</source>
       <translation>Распространить выделение до конца строки экрана</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
+      <location filename="../QScintilla/MiniEditor.py" line="1847" />
       <location filename="../QScintilla/MiniEditor.py" line="1846" />
-      <location filename="../QScintilla/MiniEditor.py" line="1845" />
       <source>Formfeed</source>
       <translation>Перевод страницы</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1872" />
-      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1873" />
+      <location filename="../QScintilla/MiniEditor.py" line="1870" />
       <source>Extend rectangular selection down one line</source>
       <translation>Распространить прямоугольное выделение на одну строку вниз</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1875" />
+      <location filename="../QScintilla/MiniEditor.py" line="1876" />
       <source>Alt+Ctrl+Down</source>
       <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1883" />
+      <location filename="../QScintilla/MiniEditor.py" line="1884" />
       <source>Meta+Alt+Shift+N</source>
       <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1894" />
-      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1895" />
+      <location filename="../QScintilla/MiniEditor.py" line="1892" />
       <source>Extend rectangular selection up one line</source>
       <translation>Распространить прямоугольное выделение на одну строку вверх</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1897" />
+      <location filename="../QScintilla/MiniEditor.py" line="1898" />
       <source>Alt+Ctrl+Up</source>
       <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1905" />
+      <location filename="../QScintilla/MiniEditor.py" line="1906" />
       <source>Meta+Alt+Shift+P</source>
       <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1916" />
-      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1917" />
+      <location filename="../QScintilla/MiniEditor.py" line="1914" />
       <source>Extend rectangular selection left one character</source>
       <translation>Распространить прямоугольное выделение на один символ влево</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1919" />
+      <location filename="../QScintilla/MiniEditor.py" line="1920" />
       <source>Alt+Ctrl+Left</source>
       <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1927" />
+      <location filename="../QScintilla/MiniEditor.py" line="1928" />
       <source>Meta+Alt+Shift+B</source>
       <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1938" />
-      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1939" />
+      <location filename="../QScintilla/MiniEditor.py" line="1936" />
       <source>Extend rectangular selection right one character</source>
       <translation>Распространить прямоугольное выделение на один символ вправо</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1941" />
+      <location filename="../QScintilla/MiniEditor.py" line="1942" />
       <source>Alt+Ctrl+Right</source>
       <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1949" />
+      <location filename="../QScintilla/MiniEditor.py" line="1950" />
       <source>Meta+Alt+Shift+F</source>
       <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1962" />
-      <location filename="../QScintilla/MiniEditor.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1963" />
+      <location filename="../QScintilla/MiniEditor.py" line="1958" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation>Распространить прямоугольное выделение до первого видимого символа в строке документа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1975" />
+      <location filename="../QScintilla/MiniEditor.py" line="1976" />
       <source>Alt+Shift+Home</source>
       <translation>Alt+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1986" />
-      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1987" />
+      <location filename="../QScintilla/MiniEditor.py" line="1984" />
       <source>Extend rectangular selection to end of document line</source>
       <translation>Распространить прямоугольное выделение до конца строки документа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1997" />
+      <location filename="../QScintilla/MiniEditor.py" line="1998" />
       <source>Meta+Alt+Shift+E</source>
       <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2002" />
+      <location filename="../QScintilla/MiniEditor.py" line="2003" />
       <source>Alt+Shift+End</source>
       <translation>Alt+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2012" />
-      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2013" />
+      <location filename="../QScintilla/MiniEditor.py" line="2010" />
       <source>Extend rectangular selection up one page</source>
       <translation>Распространить прямоугольное выделение на одну страницу вверх</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2015" />
+      <location filename="../QScintilla/MiniEditor.py" line="2016" />
       <source>Alt+Shift+PgUp</source>
       <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2028" />
-      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2029" />
+      <location filename="../QScintilla/MiniEditor.py" line="2026" />
       <source>Extend rectangular selection down one page</source>
       <translation>Распространить прямоугольное выделение на одну страницу вниз</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2031" />
+      <location filename="../QScintilla/MiniEditor.py" line="2032" />
       <source>Alt+Shift+PgDown</source>
       <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2039" />
+      <location filename="../QScintilla/MiniEditor.py" line="2040" />
       <source>Meta+Alt+Shift+V</source>
       <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2515" />
       <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2513" />
+      <location filename="../QScintilla/MiniEditor.py" line="2049" />
       <location filename="../QScintilla/MiniEditor.py" line="2048" />
-      <location filename="../QScintilla/MiniEditor.py" line="2047" />
       <source>Duplicate current selection</source>
       <translation>Дублировать текущее выделение</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2516" />
+      <location filename="../QScintilla/MiniEditor.py" line="2050" />
       <source>Ctrl+Shift+D</source>
       <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2063" />
-      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2061" />
       <source>Scroll to start of document</source>
       <translation>Прокрутить на начало документа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
+      <location filename="../QScintilla/MiniEditor.py" line="2083" />
       <location filename="../QScintilla/MiniEditor.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="2081" />
       <source>Scroll to end of document</source>
       <translation>Прокрутить на конец документа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2101" />
-      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2102" />
+      <location filename="../QScintilla/MiniEditor.py" line="2099" />
       <source>Scroll vertically to center current line</source>
       <translation>Прокрутить вертикально до центра текущей строки</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2111" />
+      <location filename="../QScintilla/MiniEditor.py" line="2112" />
       <source>Meta+L</source>
       <translation>Meta+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
+      <location filename="../QScintilla/MiniEditor.py" line="2121" />
       <location filename="../QScintilla/MiniEditor.py" line="2120" />
-      <location filename="../QScintilla/MiniEditor.py" line="2119" />
       <source>Move to end of next word</source>
       <translation>Перейти в конец следующего слова</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2139" />
-      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2140" />
+      <location filename="../QScintilla/MiniEditor.py" line="2137" />
       <source>Extend selection to end of next word</source>
       <translation>Распространить выделение до конца следующего слова</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2162" />
-      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2163" />
+      <location filename="../QScintilla/MiniEditor.py" line="2160" />
       <source>Move to end of previous word</source>
       <translation>Перейти в конец предыдущего слова</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2179" />
-      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2180" />
+      <location filename="../QScintilla/MiniEditor.py" line="2177" />
       <source>Extend selection to end of previous word</source>
       <translation>Распространить выделение до конца предыдущего слова</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2196" />
-      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2197" />
+      <location filename="../QScintilla/MiniEditor.py" line="2194" />
       <source>Move to start of document line</source>
       <translation>Перейти на начало строки документа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2206" />
+      <location filename="../QScintilla/MiniEditor.py" line="2207" />
       <source>Meta+A</source>
       <translation>Meta+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2218" />
+      <location filename="../QScintilla/MiniEditor.py" line="2215" />
       <source>Extend selection to start of document line</source>
       <translation>Распространить выделение до начала строки документа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2228" />
+      <location filename="../QScintilla/MiniEditor.py" line="2229" />
       <source>Meta+Shift+A</source>
       <translation>Meta+Shift+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2241" />
-      <location filename="../QScintilla/MiniEditor.py" line="2237" />
+      <location filename="../QScintilla/MiniEditor.py" line="2242" />
+      <location filename="../QScintilla/MiniEditor.py" line="2238" />
       <source>Extend rectangular selection to start of document line</source>
       <translation>Распространить прямоугольное выделение до начала строки документа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2253" />
+      <location filename="../QScintilla/MiniEditor.py" line="2254" />
       <source>Meta+Alt+Shift+A</source>
       <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2265" />
-      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2266" />
+      <location filename="../QScintilla/MiniEditor.py" line="2263" />
       <source>Extend selection to start of display line</source>
       <translation>Распространить выделение до начала строки экрана</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2288" />
-      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2289" />
+      <location filename="../QScintilla/MiniEditor.py" line="2286" />
       <source>Move to start of display or document line</source>
       <translation>Перейти на начало строки экрана или документа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2306" />
-      <location filename="../QScintilla/MiniEditor.py" line="2302" />
+      <location filename="../QScintilla/MiniEditor.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="2303" />
       <source>Extend selection to start of display or document line</source>
       <translation>Распространить выделение до начала строки экрана или документа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2325" />
-      <location filename="../QScintilla/MiniEditor.py" line="2321" />
+      <location filename="../QScintilla/MiniEditor.py" line="2326" />
+      <location filename="../QScintilla/MiniEditor.py" line="2322" />
       <source>Move to first visible character in display or document line</source>
       <translation>Перейти к первому видимому символу строки экрана или документа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2345" />
-      <location filename="../QScintilla/MiniEditor.py" line="2340" />
+      <location filename="../QScintilla/MiniEditor.py" line="2346" />
+      <location filename="../QScintilla/MiniEditor.py" line="2341" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation>Распространить выделение до первого видимого символа строки экрана или документа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2364" />
-      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2365" />
+      <location filename="../QScintilla/MiniEditor.py" line="2362" />
       <source>Move to end of display or document line</source>
       <translation>Перейти в конец строки экрана или документа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2381" />
-      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2382" />
+      <location filename="../QScintilla/MiniEditor.py" line="2379" />
       <source>Extend selection to end of display or document line</source>
       <translation>Распространить выделение до конца строки экрана или документа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="2397" />
       <location filename="../QScintilla/MiniEditor.py" line="2396" />
-      <location filename="../QScintilla/MiniEditor.py" line="2395" />
       <source>Stuttered move up one page</source>
       <translation>Перейти на одну страницу вверх</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2411" />
-      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2412" />
+      <location filename="../QScintilla/MiniEditor.py" line="2409" />
       <source>Stuttered extend selection up one page</source>
       <translation>Распространить выделение на страницу вверх</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2428" />
-      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2429" />
+      <location filename="../QScintilla/MiniEditor.py" line="2426" />
       <source>Stuttered move down one page</source>
       <translation>Перейти на одну страницу вниз</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2446" />
+      <location filename="../QScintilla/MiniEditor.py" line="2443" />
       <source>Stuttered extend selection down one page</source>
       <translation>Распространить выделение на страницу вниз</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2462" />
-      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2463" />
+      <location filename="../QScintilla/MiniEditor.py" line="2460" />
       <source>Delete right to end of next word</source>
       <translation>Удалить до конца следующего слова справа</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2472" />
+      <location filename="../QScintilla/MiniEditor.py" line="2473" />
       <source>Alt+Del</source>
       <translation>Alt+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2484" />
+      <location filename="../QScintilla/MiniEditor.py" line="2481" />
       <source>Move selected lines up one line</source>
       <translation>Переместить выделенные строки на одну строку вверх</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2500" />
-      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2501" />
+      <location filename="../QScintilla/MiniEditor.py" line="2498" />
       <source>Move selected lines down one line</source>
       <translation>Переместить выделенные строки на одну строку вниз</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2546" />
+      <location filename="../QScintilla/MiniEditor.py" line="2547" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Поиск&lt;/b&gt;
 &lt;p&gt;Поиск текста в текущем редакторе. Отображается диалог для ввода искомого текста и настройки поиска.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2572" />
+      <location filename="../QScintilla/MiniEditor.py" line="2573" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Поиск следующего&lt;/b&gt;&lt;p&gt;Поиск следующего вхождения текста в текущем редакторе. Используются предыдущий искомый текст и настройки поиска.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2602" />
+      <location filename="../QScintilla/MiniEditor.py" line="2603" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Поиск предыдущего&lt;/b&gt;&lt;p&gt;Поиск предыдущего вхождения текста в текущем редакторе. Используются предыдущий искомый текст и настройки поиска.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2616" />
-      <location filename="../QScintilla/MiniEditor.py" line="2614" />
+      <location filename="../QScintilla/MiniEditor.py" line="2617" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Clear search markers</source>
       <translation>Убрать подсветку найденого</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2618" />
+      <location filename="../QScintilla/MiniEditor.py" line="2619" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation>Ctrl+3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2627" />
+      <location filename="../QScintilla/MiniEditor.py" line="2628" />
       <source>Clear all displayed search markers</source>
       <translation>Убрать подсветку всех результатов поиска</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2632" />
+      <location filename="../QScintilla/MiniEditor.py" line="2633" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Убрать подсветку поиска&lt;/b&gt;&lt;p&gt;Удаление подсветки всех результатов поиска.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2642" />
+      <location filename="../QScintilla/MiniEditor.py" line="2643" />
       <source>Replace</source>
       <translation>Заменить</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2644" />
       <source>&amp;Replace...</source>
       <translation>&amp;Заменить...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2645" />
+      <location filename="../QScintilla/MiniEditor.py" line="2646" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation>Ctrl+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2652" />
+      <location filename="../QScintilla/MiniEditor.py" line="2653" />
       <source>Replace some text</source>
       <translation>Заменить заданный текст</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2655" />
+      <location filename="../QScintilla/MiniEditor.py" line="2656" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Заменить&lt;/b&gt;
 &lt;p&gt;Поиск в текущем редакторе заданного текста и его замена. Отображается диалог ввода искомого текста, текста замены и настроек поиска и замены&lt;/p&gt;</translation>
@@ -92570,81 +92611,81 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2669" />
-      <location filename="../QScintilla/MiniEditor.py" line="2667" />
+      <location filename="../QScintilla/MiniEditor.py" line="2670" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Replace and Search</source>
       <translation>Заменить и найти</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2671" />
+      <location filename="../QScintilla/MiniEditor.py" line="2672" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation>Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2680" />
+      <location filename="../QScintilla/MiniEditor.py" line="2681" />
       <source>Replace the found text and search the next occurrence</source>
       <translation>Заменить найденный текст и найти следующее вхождение</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2685" />
+      <location filename="../QScintilla/MiniEditor.py" line="2686" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Заменить и найти&lt;/b&gt;&lt;p&gt;Заменить найденное вхождение текста текущего редактирования и выполнить поиск следующего. Ранее введенный текст и параметры поиска используются повторно.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2701" />
-      <location filename="../QScintilla/MiniEditor.py" line="2699" />
+      <location filename="../QScintilla/MiniEditor.py" line="2702" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Replace Occurrence</source>
       <translation>Заменить вхождение</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2703" />
+      <location filename="../QScintilla/MiniEditor.py" line="2704" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation>Ctrl+Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2712" />
+      <location filename="../QScintilla/MiniEditor.py" line="2713" />
       <source>Replace the found text</source>
       <translation>Заменить найденный текст</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2715" />
+      <location filename="../QScintilla/MiniEditor.py" line="2716" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Заменить вхождение&lt;/b&gt;&lt;p&gt;Заменить найденнойе вхождение искомого текста текущего редактирования.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2728" />
-      <location filename="../QScintilla/MiniEditor.py" line="2726" />
+      <location filename="../QScintilla/MiniEditor.py" line="2729" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Replace All</source>
       <translation>Заменить все</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2730" />
+      <location filename="../QScintilla/MiniEditor.py" line="2731" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation>Shift+Meta+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2739" />
+      <location filename="../QScintilla/MiniEditor.py" line="2740" />
       <source>Replace search text occurrences</source>
       <translation>Заменить вхождения искомого текста</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2742" />
+      <location filename="../QScintilla/MiniEditor.py" line="2743" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Заменить все&lt;/b&gt;&lt;p&gt;Заменить все вхождения искомого текста текущего редактирования.&lt;/p&gt;</translation>
     </message>
--- a/src/eric7/i18n/eric7_tr.ts	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/i18n/eric7_tr.ts	Sat Apr 15 18:22:09 2023 +0200
@@ -1791,77 +1791,77 @@
   <context>
     <name>BaseDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="190" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="196" />
       <source>Device Data Not Available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="191" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="197" />
       <source>&lt;p&gt;The device data is not available. Try to connect to the device again. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="244" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="250" />
       <source>Unsupported Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="254" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="260" />
       <source>REPL is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="273" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="279" />
       <source>Plotter is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="292" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="298" />
       <source>Running scripts is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="311" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="317" />
       <source>File Manager is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="366" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="372" />
       <source>Select Device Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="367" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="373" />
       <source>Select the directory for the connected device:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="513" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="519" />
       <source>Detected an error without indications.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1400" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1464" />
       <source>Operation not supported.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>Yes</source>
       <translation type="unfinished">Evet</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>No</source>
       <translation type="unfinished">Hayır</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>yes</source>
       <translation type="unfinished">evet</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>no</source>
       <translation type="unfinished">no</translation>
     </message>
@@ -4037,17 +4037,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="141" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
       <source>WIZnet 5x00 Ethernet</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="143" />
       <source>&lt;p&gt;Support for &lt;b&gt;WIZnet 5x00&lt;/b&gt; Ethernet boards could not be detected. Is the module &lt;b&gt;adafruit_wiznet5k&lt;/b&gt; installed?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="176" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="177" />
       <source>CircuitPython</source>
       <translation type="unfinished" />
     </message>
@@ -4215,114 +4215,114 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1127" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="864" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1128" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="865" />
       <source>unknown ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1576" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1499" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1039" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="960" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1577" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1500" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1040" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="961" />
       <source>The device volume is not available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1003" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="975" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
       <source>Write WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1539" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1005" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="977" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1546" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="984" />
+      <source>Aborted</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1195" />
+      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1266" />
+      <source>CircuitPython does not support reporting of connected clients.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
+      <source>Active</source>
+      <translation type="unfinished">Aktif</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
+      <source>Connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
+      <source>IPv4 Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
+      <source>Netmask</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
+      <source>Gateway</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
+      <source>DNS</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1677" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
+      <source>Chip Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1358" />
+      <source>max. Sockets</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1538" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1545" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1011" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="983" />
-      <source>Aborted</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1194" />
-      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1265" />
-      <source>CircuitPython does not support reporting of connected clients.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1674" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1349" />
-      <source>Active</source>
-      <translation type="unfinished">Aktif</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1680" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
-      <source>Connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
-      <source>IPv4 Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
-      <source>Netmask</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
-      <source>Gateway</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
-      <source>DNS</source>
+      <source>Write Connect Script</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1676" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
-      <source>Chip Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
-      <source>max. Sockets</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1537" />
-      <source>Write Connect Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
       <source>Name</source>
       <translation type="unfinished">Adı</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1678" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1679" />
       <source>Address Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1682" />
       <source>Advertising</source>
       <translation type="unfinished" />
     </message>
@@ -10356,12 +10356,12 @@
       <translation type="unfinished">&lt;p&gt;Hata ayıklayıcıbaşlatılamadı.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1378" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1380" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1379" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1381" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -12203,7 +12203,7 @@
       <translation>Yorumlanamaz</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9146" />
+      <location filename="../QScintilla/Editor.py" line="9154" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12476,7 +12476,7 @@
       <translation type="unfinished">Yazım kontolü yapılıyor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8264" />
+      <location filename="../QScintilla/Editor.py" line="8272" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation>Yazım Kontrolü...</translation>
@@ -12537,7 +12537,7 @@
       <translation>Bekleme noktasını düzenle...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5923" />
+      <location filename="../QScintilla/Editor.py" line="5932" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation>Beklemenoktasını etkinleştir</translation>
@@ -12771,356 +12771,356 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5097" />
+      <location filename="../QScintilla/Editor.py" line="5106" />
       <source>Autocompletion</source>
       <translation>Otomatik tamamlama</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5098" />
+      <location filename="../QScintilla/Editor.py" line="5107" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>Otomatiktamamlama uygun değil çünkü bu otomatiktamamlama kaynağı değil.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5226" />
+      <location filename="../QScintilla/Editor.py" line="5235" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5227" />
+      <location filename="../QScintilla/Editor.py" line="5236" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5519" />
+      <location filename="../QScintilla/Editor.py" line="5528" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5520" />
+      <location filename="../QScintilla/Editor.py" line="5529" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5927" />
+      <location filename="../QScintilla/Editor.py" line="5936" />
       <source>Disable breakpoint</source>
       <translation>Durmanoktasını iptal et</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6307" />
+      <location filename="../QScintilla/Editor.py" line="6315" />
       <source>Code Coverage</source>
       <translation>Kod Koruyucu</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6308" />
+      <location filename="../QScintilla/Editor.py" line="6316" />
       <source>Please select a coverage file</source>
       <translation>Lütfen bir koruyucu dosya seçiniz</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="6391" />
       <location filename="../QScintilla/Editor.py" line="6383" />
-      <location filename="../QScintilla/Editor.py" line="6375" />
       <source>Show Code Coverage Annotations</source>
       <translation>Kodların Dipnotunu Göster</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6376" />
-      <source>All lines have been covered.</source>
-      <translation>Tüm satırlar korumaya alındı.</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="6384" />
+      <source>All lines have been covered.</source>
+      <translation>Tüm satırlar korumaya alındı.</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="6392" />
       <source>There is no coverage file available.</source>
       <translation>Hazırda koruma dosyası yok.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6488" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <source>Profile Data</source>
       <translation>Veri Kesiti</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6489" />
+      <location filename="../QScintilla/Editor.py" line="6497" />
       <source>Please select a profile file</source>
       <translation>Lütfen kesit dosyasını seçiniz</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6650" />
-      <location filename="../QScintilla/Editor.py" line="6644" />
+      <location filename="../QScintilla/Editor.py" line="6658" />
+      <location filename="../QScintilla/Editor.py" line="6652" />
       <source>Syntax Error</source>
       <translation>Sözdizimi Hatası</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6651" />
+      <location filename="../QScintilla/Editor.py" line="6659" />
       <source>No syntax error message available.</source>
       <translation>Uygun söz dizimi hata mesajı yok.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
-      <location filename="../QScintilla/Editor.py" line="6856" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6864" />
       <source>Warning</source>
       <translation type="unfinished">Dikkat</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
       <source>No warning messages available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6926" />
+      <location filename="../QScintilla/Editor.py" line="6934" />
       <source>Style: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6929" />
+      <location filename="../QScintilla/Editor.py" line="6937" />
       <source>Warning: {0}</source>
       <translation>Dikkat: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6936" />
+      <location filename="../QScintilla/Editor.py" line="6944" />
       <source>Error: {0}</source>
       <translation>Hata: {0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Macro Name</source>
       <translation>Makro Adı</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Select a macro name:</source>
       <translation>Bir makro ismi seç:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7069" />
+      <location filename="../QScintilla/Editor.py" line="7077" />
       <source>Load macro file</source>
       <translation>Makro dosyasını yükle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7115" />
-      <location filename="../QScintilla/Editor.py" line="7071" />
+      <location filename="../QScintilla/Editor.py" line="7123" />
+      <location filename="../QScintilla/Editor.py" line="7079" />
       <source>Macro files (*.macro)</source>
       <translation>Makro dosyaları (*.macro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7093" />
-      <location filename="../QScintilla/Editor.py" line="7083" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
+      <location filename="../QScintilla/Editor.py" line="7091" />
       <source>Error loading macro</source>
       <translation>Makronun yüklenmesinde hata</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7084" />
+      <location filename="../QScintilla/Editor.py" line="7092" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Makro dosyası &lt;b&gt;{0}&lt;/b&gt; okunamıyor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7094" />
+      <location filename="../QScintilla/Editor.py" line="7102" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Makro dosyası &lt;b&gt;{0}&lt;/b&gt; bozuk.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7113" />
+      <location filename="../QScintilla/Editor.py" line="7121" />
       <source>Save macro file</source>
       <translation>Makro Dosyasını Kaydet</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7131" />
+      <location filename="../QScintilla/Editor.py" line="7139" />
       <source>Save macro</source>
       <translation>Makro Kaydet</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7132" />
+      <location filename="../QScintilla/Editor.py" line="7140" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;Makro dosyası &lt;b&gt;{0}&lt;/b&gt; zaten var. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7147" />
+      <location filename="../QScintilla/Editor.py" line="7155" />
       <source>Error saving macro</source>
       <translation>Makronun kaydedilmesinde hata</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7148" />
+      <location filename="../QScintilla/Editor.py" line="7156" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Makro dosyası &lt;b&gt;{0}&lt;/b&gt; yazılamıyor.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7161" />
+      <location filename="../QScintilla/Editor.py" line="7169" />
       <source>Start Macro Recording</source>
       <translation>Makro Kaydı Başladı</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7162" />
+      <location filename="../QScintilla/Editor.py" line="7170" />
       <source>Macro recording is already active. Start new?</source>
       <translation>Makro kaydı şuan aktif. Yeniden başlasın mı?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7188" />
+      <location filename="../QScintilla/Editor.py" line="7196" />
       <source>Macro Recording</source>
       <translation>Makro Kaydediliyor</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7189" />
+      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation>Makronun ismini gir:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7340" />
+      <location filename="../QScintilla/Editor.py" line="7348" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7346" />
+      <location filename="../QScintilla/Editor.py" line="7354" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7353" />
+      <location filename="../QScintilla/Editor.py" line="7361" />
       <source>File changed</source>
       <translation>Dosya değiştirilmiş</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7403" />
+      <location filename="../QScintilla/Editor.py" line="7411" />
       <source>{0} (ro)</source>
       <translation>{0} (ro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7708" />
+      <location filename="../QScintilla/Editor.py" line="7716" />
       <source>Drop Error</source>
       <translation>Düşme hatası</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7709" />
+      <location filename="../QScintilla/Editor.py" line="7717" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; bir dosya değil.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7729" />
+      <location filename="../QScintilla/Editor.py" line="7737" />
       <source>Resources</source>
       <translation>Kaynaklar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7739" />
       <source>Add file...</source>
       <translation>Dosya ekle...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7732" />
+      <location filename="../QScintilla/Editor.py" line="7740" />
       <source>Add files...</source>
       <translation>Dosyaları ekle...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7733" />
+      <location filename="../QScintilla/Editor.py" line="7741" />
       <source>Add aliased file...</source>
       <translation>Kısaltmalar dosyasına ekle...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7735" />
+      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation>Yaral kaynak ekle...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7738" />
+      <location filename="../QScintilla/Editor.py" line="7746" />
       <source>Add resource frame</source>
       <translation>Çerçeve kaynağı ekle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7765" />
       <source>Add file resource</source>
       <translation>Dosya kaynağını ekle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7771" />
+      <location filename="../QScintilla/Editor.py" line="7779" />
       <source>Add file resources</source>
       <translation>Dosya kaynaklarını ekle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7795" />
-      <location filename="../QScintilla/Editor.py" line="7789" />
+      <location filename="../QScintilla/Editor.py" line="7803" />
+      <location filename="../QScintilla/Editor.py" line="7797" />
       <source>Add aliased file resource</source>
       <translation>Kısaltmalar dosyası kaynağını ekle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7796" />
+      <location filename="../QScintilla/Editor.py" line="7804" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation>&lt;b&gt;{0} dosyası için takma ad&lt;/b&gt;:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7871" />
+      <location filename="../QScintilla/Editor.py" line="7879" />
       <source>Package Diagram</source>
       <translation>Paket Şeması</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7872" />
+      <location filename="../QScintilla/Editor.py" line="7880" />
       <source>Include class attributes?</source>
       <translation>Sınıf nitelikleri dahil edilsin mi?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7892" />
+      <location filename="../QScintilla/Editor.py" line="7900" />
       <source>Imports Diagram</source>
       <translation>Şemayı İçe Aktar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7893" />
+      <location filename="../QScintilla/Editor.py" line="7901" />
       <source>Include imports from external modules?</source>
       <translation>Harici modüllerdan içe aktarım dahil edilsin mi?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7912" />
+      <location filename="../QScintilla/Editor.py" line="7920" />
       <source>Application Diagram</source>
       <translation>Uygulama Şeması</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7913" />
+      <location filename="../QScintilla/Editor.py" line="7921" />
       <source>Include module names?</source>
       <translation>Modül isimleri dahil edilsin mi?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8268" />
+      <location filename="../QScintilla/Editor.py" line="8276" />
       <source>Add to dictionary</source>
       <translation>Sözlüğe ekle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8270" />
+      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation>Hepsini Yoksay</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8688" />
+      <location filename="../QScintilla/Editor.py" line="8696" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8689" />
+      <location filename="../QScintilla/Editor.py" line="8697" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8782" />
+      <location filename="../QScintilla/Editor.py" line="8790" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8783" />
+      <location filename="../QScintilla/Editor.py" line="8791" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8879" />
+      <location filename="../QScintilla/Editor.py" line="8887" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8885" />
+      <location filename="../QScintilla/Editor.py" line="8893" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8953" />
+      <location filename="../QScintilla/Editor.py" line="8961" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8954" />
+      <location filename="../QScintilla/Editor.py" line="8962" />
       <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" />
     </message>
@@ -18174,12 +18174,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="222" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation type="unfinished">Stil Görünümleri Yükleniyor</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="225" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -23105,7 +23105,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2719" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
@@ -23168,370 +23168,370 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2277" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2319" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2340" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2341" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2405" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2387" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2388" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2434" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2423" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <source>List Bundle Heads</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
-      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2452" />
-      <source>List Bundle Heads</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2518" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2821" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
       <source>Git Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
       <source>Process Generation Error</source>
       <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2747" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2729" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
       <source>Create Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2748" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2765" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2784" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
-      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2810" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3154" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3040" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3041" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3176" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3233" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3264" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3311" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
       <source>Copy Changesets (Cancel)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3429" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3552" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3503" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
       <source>Select a stash (empty for latest stash):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3462" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
       <source>Restore Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3516" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3566" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3602" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3603" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3634" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3743" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
       <source>Performing Repository Housekeeping</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3784" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
       <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3797" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3820" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
       <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3825" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3898" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4005" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4018" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
       <source>All</source>
       <translation type="unfinished">Hepsi</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4022" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
       <source>Submodule Path</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4023" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4072" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4105" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4175" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4136" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4259" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -25860,83 +25860,83 @@
   <context>
     <name>GitProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="473" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="589" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="429" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="324" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="184" />
       <source>Version Control</source>
       <translation type="unfinished">Sürüm Kontrol</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="602" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="492" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="340" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="200" />
       <source>Commit changes to repository...</source>
       <translation type="unfinished">Yapılan değişiklekleri kaynak havuzuna teslim et...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="609" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="496" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="499" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="347" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="207" />
       <source>Add/Stage to repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="614" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="504" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="352" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="212" />
       <source>Unstage changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="621" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="508" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="511" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="359" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="219" />
       <source>Remove from repository (and disk)</source>
       <translation type="unfinished">Kaynak havuzundan kaldır (ve diskten)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="365" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="225" />
       <source>Remove from repository only</source>
       <translation type="unfinished">Yalnızca kaynak havuzundan kaldır</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="513" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="230" />
       <source>Copy</source>
       <translation type="unfinished">Kopyala</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="518" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="232" />
       <source>Move</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="523" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="237" />
       <source>Show log browser</source>
       <translation type="unfinished">Kayıt gözatıcısını gösted</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="372" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="244" />
       <source>Show status</source>
       <translation type="unfinished">Durumu Göster</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="635" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="534" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="537" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="251" />
       <source>Show differences</source>
@@ -25948,8 +25948,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="543" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="385" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="263" />
       <source>Show differences (extended)</source>
@@ -25976,71 +25976,71 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="648" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="547" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="550" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="392" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="289" />
       <source>Revert changes</source>
       <translation type="unfinished">Değişiklikleri başa döndür</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="656" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="441" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
-      <source>Select all local file entries</source>
-      <translation type="unfinished">tüm yerel dosyalırın girişini seç</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="558" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="444" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
-      <source>Select all versioned file entries</source>
-      <translation type="unfinished">Giriş yapılan tüm dosyaları seç</translation>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
+      <source>Select all local file entries</source>
+      <translation type="unfinished">tüm yerel dosyalırın girişini seç</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="662" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="561" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="447" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
+      <source>Select all versioned file entries</source>
+      <translation type="unfinished">Giriş yapılan tüm dosyaları seç</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="564" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="450" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="406" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="301" />
       <source>Select all local directory entries</source>
       <translation type="unfinished">Tüm yerel dizin kalemlerini seç</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="666" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="454" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="305" />
       <source>Select all versioned directory entries</source>
       <translation type="unfinished">Giriş yapılan tüm dizinleri seç</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="414" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="309" />
       <source>Configure...</source>
       <translation type="unfinished">Ayarlanıyor...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="709" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="712" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="699" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation type="unfinished">Bu dosyaları gerçekten kaynak havuzundan kaldırmak istiyor musunuz?</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="842" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="843" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halihazırda bulunuyor. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
@@ -30349,27 +30349,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="198" />
+      <location filename="../Globals/__init__.py" line="199" />
       <source>{0:4.2f} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="201" />
+      <location filename="../Globals/__init__.py" line="202" />
       <source>{0:4.2f} KiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="204" />
+      <location filename="../Globals/__init__.py" line="205" />
       <source>{0:4.2f} MiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="207" />
+      <location filename="../Globals/__init__.py" line="208" />
       <source>{0:4.2f} GiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="210" />
+      <location filename="../Globals/__init__.py" line="211" />
       <source>{0:4.2f} TiB</source>
       <translation type="unfinished" />
     </message>
@@ -36572,75 +36572,75 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="692" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="579" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="535" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="431" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="289" />
       <source>Version Control</source>
       <translation>Sürüm Kontrol</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="595" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="598" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="305" />
       <source>Commit changes to repository...</source>
       <translation>Yapılan değişiklekleri kaynak havuzuna teslim et...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="606" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="455" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="313" />
       <source>Add to repository</source>
       <translation>Kaynak havuzuna ekle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="722" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="725" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="461" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="319" />
       <source>Remove from repository (and disk)</source>
       <translation>Kaynak havuzundan kaldır (ve diskten)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="986" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="973" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="989" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="976" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="467" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="325" />
       <source>Remove from repository only</source>
       <translation>Yalnızca kaynak havuzundan kaldır</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="614" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="617" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="330" />
       <source>Copy</source>
       <translation type="unfinished">Kopyala</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="619" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="332" />
       <source>Move</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="621" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="624" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="337" />
       <source>Show log browser</source>
       <translation>Kayıt gözatıcısını gösted</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="729" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="732" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="474" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="344" />
       <source>Show status</source>
       <translation>Durumu Göster</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="736" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="739" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="481" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="351" />
       <source>Show differences</source>
@@ -36652,8 +36652,8 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="644" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="487" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="363" />
       <source>Show differences (extended)</source>
@@ -36680,95 +36680,95 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="749" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="752" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="494" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="389" />
       <source>Revert changes</source>
       <translation>Değişiklikleri başa döndür</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="753" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="756" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="655" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="498" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="393" />
       <source>Conflicts resolved</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="755" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="654" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="657" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="500" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="395" />
       <source>Conflicts unresolved</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="757" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="656" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="760" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="502" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="397" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="660" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="547" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
-      <source>Select all local file entries</source>
-      <translation>tüm yerel dosyalırın girişini seç</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="764" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="663" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="550" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
-      <source>Select all versioned file entries</source>
-      <translation>Giriş yapılan tüm dosyaları seç</translation>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
+      <source>Select all local file entries</source>
+      <translation>tüm yerel dosyalırın girişini seç</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="767" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="553" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
+      <source>Select all versioned file entries</source>
+      <translation>Giriş yapılan tüm dosyaları seç</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="556" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="407" />
       <source>Select all local directory entries</source>
       <translation>Tüm yerel dizin kalemlerini seç</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="560" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="411" />
       <source>Select all versioned directory entries</source>
       <translation>Giriş yapılan tüm dizinleri seç</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="775" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="674" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="561" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="778" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="677" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="564" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="520" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="415" />
       <source>Configure...</source>
       <translation type="unfinished">Ayarlanıyor...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="890" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="893" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="891" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="894" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halihazırda bulunuyor. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="987" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="990" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="977" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation>Bu dosyaları gerçekten kaynak havuzundan kaldırmak istiyor musunuz?</translation>
     </message>
@@ -50941,43 +50941,43 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="594" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="592" />
       <source>Clear</source>
       <translation type="unfinished">Temizle</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="599" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="597" />
       <source>Copy</source>
       <translation type="unfinished">Kopyala</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="603" />
       <source>Paste</source>
       <translation type="unfinished">Yapıştır</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="612" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="610" />
       <source>Select All</source>
       <translation type="unfinished">Hepsini Seç</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="638" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="636" />
       <source>Press to disconnect the current device</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="643" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="641" />
       <source>Press to connect the selected device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="675" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="673" />
       <source>No device attached</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="674" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -50986,90 +50986,90 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="705" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="703" />
       <source>Start REPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="706" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="704" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1234" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1223" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1224" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1235" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1233" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1293" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1284" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1282" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
       <source>Run Script</source>
       <translation type="unfinished">Betiği Çalıştır</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1276" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
       <source>There is no editor open. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1285" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1283" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1292" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
       <source>Start Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1329" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1346" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1344" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1363" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1361" />
       <source>Unsaved Chart Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1364" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1362" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1412" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1410" />
       <source>Start File Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1413" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1411" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1433" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1431" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
@@ -51094,7 +51094,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1735" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1554" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
@@ -51120,207 +51120,213 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2138" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1578" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1570" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2150" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2183" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2180" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1574" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1955" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1580" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1959" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1979" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1970" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1983" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1974" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1588" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1609" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
-      <source>Show Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
-      <source>Convert To UF2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1616" />
-      <source>Flash UF2 Device</source>
+      <source>Show Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1619" />
+      <source>Convert To UF2</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1620" />
+      <source>Flash UF2 Device</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1623" />
       <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1622" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1626" />
       <source>Ignored Serial Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1625" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1629" />
       <source>Configure</source>
       <translation type="unfinished">Yapılandırma</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1634" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1638" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1649" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1645" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1641" />
       <source>Device Version Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1646" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1650" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1670" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1674" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1666" />
       <source>unknown</source>
       <translation type="unfinished">bilinmeyen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1680" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1683" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1696" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1687" />
       <source>Device Implementation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1688" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1693" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1697" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1736" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1754" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1758" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1762" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1766" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1782" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1794" />
       <source>Local Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1795" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1832" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1815" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1836" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1819" />
       <source>Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1816" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1820" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1837" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1857" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1861" />
       <source>Error handling device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1858" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1862" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1900" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1904" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1926" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1930" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished">Python Dosyaları (*.py);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1940" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1945" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1949" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1971" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1975" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2063" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2067" />
       <source>Add Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2068" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2113" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2117" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2151" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2169" />
+      <source>Package '{0}' was installed successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2184" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -51373,198 +51379,198 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="108" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="110" />
       <source>BBC micro:bit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="111" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="113" />
       <source>Calliope mini</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="208" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="210" />
       <source>BBC micro:bit/Calliope Functions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="421" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="409" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="392" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="211" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="411" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="213" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="215" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="217" />
       <source>Flash MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="218" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="220" />
       <source>Flash Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="496" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="222" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="498" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="224" />
       <source>Save Script as 'main.py'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="225" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="227" />
       <source>Save the current script as 'main.py' on the connected device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="229" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="231" />
       <source>Reset {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="375" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="366" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="352" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="335" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="322" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="302" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="377" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="354" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="337" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="324" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="304" />
       <source>Flash MicroPython/Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="303" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="305" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed and plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;See the &lt;a href="https://microbit.org/guide/firmware/"&gt;micro:bit web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="323" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="325" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MICROBIT is available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="336" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="338" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed an plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="353" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="355" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MINI is available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="370" />
       <source>MicroPython/Firmware Files (*.hex *.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="376" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="378" />
       <source>There are multiple devices ready for flashing. Please make sure, that only one device is prepared.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="395" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="410" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="412" />
       <source>&lt;p&gt;The BBC micro:bit generation cannot be determined. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="424" />
       <source>&lt;p&gt;The firmware URL for the device type &lt;b&gt;{0}&lt;/b&gt; is not known. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="452" />
       <source>unknown</source>
       <translation type="unfinished">bilinmeyen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="466" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="468" />
       <source>Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="469" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="471" />
       <source>&lt;h4&gt;{0} Version Information&lt;br/&gt;(BBC micro:bit v{1})&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="478" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="480" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="484" />
       <source>{0} Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="502" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="504" />
       <source>The current editor does not contain a Python script. Write it anyway?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="513" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="515" />
       <source>The script is empty. Aborting.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="567" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="569" />
       <source>MicroPython Firmware for BBC micro:bit V1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="599" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="586" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="571" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="601" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="588" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="573" />
       <source>DAPLink Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="578" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="580" />
       <source>MicroPython Firmware for BBC micro:bit V2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="582" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="584" />
       <source>CircuitPython Firmware for BBC micro:bit V2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="595" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="597" />
       <source>MicroPython Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="818" />
-      <source>Active</source>
-      <translation type="unfinished">Aktif</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="819" />
-      <source>Name</source>
-      <translation type="unfinished">Adı</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="820" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
+      <source>Active</source>
+      <translation type="unfinished">Aktif</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="821" />
+      <source>Name</source>
+      <translation type="unfinished">Adı</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="822" />
-      <source>Address Type</source>
+      <source>MAC-Address</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="824" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="826" />
       <source>Connected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="825" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="827" />
       <source>Advertising</source>
       <translation type="unfinished" />
     </message>
@@ -51662,720 +51668,740 @@
   <context>
     <name>MiniEditor</name>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="459" />
+      <location filename="../QScintilla/MiniEditor.py" line="460" />
       <source>About eric Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="461" />
       <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don't need the power of a full blown editor.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="529" />
+      <location filename="../QScintilla/MiniEditor.py" line="530" />
       <source>Line: {0:5}</source>
       <translation>Satır: {0:5}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="533" />
+      <location filename="../QScintilla/MiniEditor.py" line="534" />
       <source>Pos: {0:5}</source>
       <translation>Pos: {0:5}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="547" />
+      <location filename="../QScintilla/MiniEditor.py" line="548" />
       <source>Language: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="610" />
       <source>New</source>
       <translation>Yeni</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="611" />
-      <source>&amp;New</source>
-      <translation>Ye&amp;ni</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="612" />
+      <source>&amp;New</source>
+      <translation>Ye&amp;ni</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="613" />
       <source>Ctrl+N</source>
       <comment>File|New</comment>
       <translation>Ctrl+N</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="617" />
+      <location filename="../QScintilla/MiniEditor.py" line="618" />
       <source>Open an empty editor window</source>
       <translation>Boş bir düzenleyici penceresi aç</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="619" />
+      <location filename="../QScintilla/MiniEditor.py" line="620" />
       <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Yeni&lt;/b&gt;&lt;p&gt;Boş bir düzenleme penceresi oluşturulacak.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="625" />
+      <location filename="../QScintilla/MiniEditor.py" line="626" />
       <source>Open</source>
       <translation>Aç</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="627" />
-      <source>&amp;Open...</source>
-      <translation>&amp;Aç...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="628" />
+      <source>&amp;Open...</source>
+      <translation>&amp;Aç...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="629" />
       <source>Ctrl+O</source>
       <comment>File|Open</comment>
       <translation>Ctrl+O</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="633" />
+      <location filename="../QScintilla/MiniEditor.py" line="634" />
       <source>Open a file</source>
       <translation>Bir dosya aç</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="635" />
+      <location filename="../QScintilla/MiniEditor.py" line="636" />
       <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Bir dosya aç&lt;/b&gt;&lt;p&gt;Açmak istediğiniz dosyanın adını giriniz.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="644" />
+      <location filename="../QScintilla/MiniEditor.py" line="645" />
       <source>Save</source>
       <translation>Kaydet</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="646" />
-      <source>&amp;Save</source>
-      <translation>&amp;Kaydet</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="647" />
+      <source>&amp;Save</source>
+      <translation>&amp;Kaydet</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="648" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation>Ctrl+S</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="652" />
+      <location filename="../QScintilla/MiniEditor.py" line="653" />
       <source>Save the current file</source>
       <translation>Geçerli dosyayı kaydet</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="654" />
+      <location filename="../QScintilla/MiniEditor.py" line="655" />
       <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Dosya Kaydet&lt;/b&gt;&lt;p&gt;Geçerli düzenleyici penceresinin içeriğini kaydet.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="663" />
+      <location filename="../QScintilla/MiniEditor.py" line="664" />
       <source>Save as</source>
       <translation>Farklı kaydet</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="665" />
-      <source>Save &amp;as...</source>
-      <translation>Farklı k&amp;aydet...</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="666" />
+      <source>Save &amp;as...</source>
+      <translation>Farklı k&amp;aydet...</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="667" />
       <source>Shift+Ctrl+S</source>
       <comment>File|Save As</comment>
       <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="671" />
+      <location filename="../QScintilla/MiniEditor.py" line="672" />
       <source>Save the current file to a new one</source>
       <translation>Geçerli dosyayı yeni bir tane olarak kaydet</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="673" />
+      <location filename="../QScintilla/MiniEditor.py" line="674" />
       <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Dosyayı Farklı Kaydet&lt;/b&gt;&lt;p&gt;Geçerli düzenleyici penceresindeki içeriği yeni bir dosyaya kaydeder. Dosya seçme diyaloğu ile bu dosyaya girilebilir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="683" />
+      <location filename="../QScintilla/MiniEditor.py" line="684" />
       <source>Save Copy</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="686" />
       <source>Save &amp;Copy...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="691" />
+      <location filename="../QScintilla/MiniEditor.py" line="692" />
       <source>Save a copy of the current file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="693" />
+      <location filename="../QScintilla/MiniEditor.py" line="694" />
       <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" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="703" />
+      <location filename="../QScintilla/MiniEditor.py" line="704" />
       <source>Close</source>
       <translation>Kapat</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="705" />
-      <source>&amp;Close</source>
-      <translation>&amp;Kapat</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="706" />
+      <source>&amp;Close</source>
+      <translation>&amp;Kapat</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="707" />
       <source>Ctrl+W</source>
       <comment>File|Close</comment>
       <translation>Ctrl+W</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="711" />
+      <location filename="../QScintilla/MiniEditor.py" line="712" />
       <source>Close the editor window</source>
       <translation>Düzenleyici penceresini kapat</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="713" />
+      <location filename="../QScintilla/MiniEditor.py" line="714" />
       <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Pencereyi kapat&lt;/b&gt;&lt;p&gt;Geçerli pencereyi kapat.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="719" />
+      <location filename="../QScintilla/MiniEditor.py" line="720" />
       <source>Print</source>
       <translation>Yazdır</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="721" />
-      <source>&amp;Print</source>
-      <translation>&amp;Yazdır</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="722" />
+      <source>&amp;Print</source>
+      <translation>&amp;Yazdır</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="723" />
       <source>Ctrl+P</source>
       <comment>File|Print</comment>
       <translation>Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="727" />
+      <location filename="../QScintilla/MiniEditor.py" line="728" />
       <source>Print the current file</source>
       <translation>Geçerli dosyayı yazdır</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="729" />
+      <location filename="../QScintilla/MiniEditor.py" line="730" />
       <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of the current file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Dosya Yazdır&lt;/b&gt;&lt;p&gt;Geçerli dosyanın içeriğini yazdır.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="738" />
+      <location filename="../QScintilla/MiniEditor.py" line="739" />
       <source>Print Preview</source>
       <translation>Baskı Öngörünümü</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="747" />
       <source>Print preview of the current file</source>
       <translation>Geçerli dosyanın baskı öngörünümü</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="748" />
+      <location filename="../QScintilla/MiniEditor.py" line="749" />
       <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Yazıcı Öngörünümü&lt;/b&gt;&lt;p&gt;Geçerli dosyanın yazıcı öngörünümü.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="761" />
+      <location filename="../QScintilla/MiniEditor.py" line="762" />
       <source>Undo</source>
       <translation>Geri Al</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="763" />
-      <source>&amp;Undo</source>
-      <translation>&amp;Geri al</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="764" />
+      <source>&amp;Undo</source>
+      <translation>&amp;Geri al</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="765" />
       <source>Ctrl+Z</source>
       <comment>Edit|Undo</comment>
       <translation>Ctrl+Z</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="765" />
+      <location filename="../QScintilla/MiniEditor.py" line="766" />
       <source>Alt+Backspace</source>
       <comment>Edit|Undo</comment>
       <translation>Alt+Backspace</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="769" />
+      <location filename="../QScintilla/MiniEditor.py" line="770" />
       <source>Undo the last change</source>
       <translation>Enson değişikliği geri al</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="771" />
+      <location filename="../QScintilla/MiniEditor.py" line="772" />
       <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Geri Al&lt;/b&gt;&lt;p&gt;Geçerli düzenleyicide yapılan son değişikliği geri al.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="780" />
+      <location filename="../QScintilla/MiniEditor.py" line="781" />
       <source>Redo</source>
       <translation>İleri al</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="782" />
-      <source>&amp;Redo</source>
-      <translation>&amp;İleri al</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="783" />
+      <source>&amp;Redo</source>
+      <translation>&amp;İleri al</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="784" />
       <source>Ctrl+Shift+Z</source>
       <comment>Edit|Redo</comment>
       <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="788" />
+      <location filename="../QScintilla/MiniEditor.py" line="789" />
       <source>Redo the last change</source>
       <translation>Son değişikliği ileri al</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="790" />
+      <location filename="../QScintilla/MiniEditor.py" line="791" />
       <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;İleri Al&lt;/b&gt;&lt;p&gt;Geçerli düzenleyicide yapılan son değişikliği ileri alır.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="799" />
+      <location filename="../QScintilla/MiniEditor.py" line="800" />
       <source>Cut</source>
       <translation>Kes</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="801" />
-      <source>Cu&amp;t</source>
-      <translation>Ke&amp;s</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="802" />
+      <source>Cu&amp;t</source>
+      <translation>Ke&amp;s</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="803" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation>Ctrl+X</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="803" />
+      <location filename="../QScintilla/MiniEditor.py" line="804" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation>Shift+Del</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="807" />
+      <location filename="../QScintilla/MiniEditor.py" line="808" />
       <source>Cut the selection</source>
       <translation>Seçimi kes</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="809" />
+      <location filename="../QScintilla/MiniEditor.py" line="810" />
       <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Kes&lt;/b&gt;&lt;p&gt;Geçerli düzenleyicide seçilen metni panoya keser.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="819" />
+      <location filename="../QScintilla/MiniEditor.py" line="820" />
       <source>Copy</source>
       <translation>Kopyala</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="821" />
-      <source>&amp;Copy</source>
-      <translation>&amp;Kopyala</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="822" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
-      <translation>Ctrl+C</translation>
+      <source>&amp;Copy</source>
+      <translation>&amp;Kopyala</translation>
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="823" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation>Ctrl+C</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="824" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+Ins</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="827" />
+      <location filename="../QScintilla/MiniEditor.py" line="828" />
       <source>Copy the selection</source>
       <translation>Seçimi kopyala</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="829" />
+      <location filename="../QScintilla/MiniEditor.py" line="830" />
       <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Kopya&lt;/b&gt;&lt;p&gt;Geçerli düzenleyicideki seçilen metni clipboarda kopyala.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="839" />
+      <location filename="../QScintilla/MiniEditor.py" line="840" />
       <source>Paste</source>
       <translation>Yapıştır</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="841" />
-      <source>&amp;Paste</source>
-      <translation>Ya&amp;pıştır</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="842" />
+      <source>&amp;Paste</source>
+      <translation>Ya&amp;pıştır</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="843" />
       <source>Ctrl+V</source>
       <comment>Edit|Paste</comment>
       <translation>Ctrl+V</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="843" />
+      <location filename="../QScintilla/MiniEditor.py" line="844" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation>Shift+Ins</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="847" />
+      <location filename="../QScintilla/MiniEditor.py" line="848" />
       <source>Paste the last cut/copied text</source>
       <translation>En son kesilen/kopyalanan metni yapıştır</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="849" />
+      <location filename="../QScintilla/MiniEditor.py" line="850" />
       <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Yapıştır&lt;/b&gt;&lt;p&gt;En son kesilen/kopyalanan metni panodan geçerli düzenleyiciye yapıştırır.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="859" />
+      <location filename="../QScintilla/MiniEditor.py" line="860" />
       <source>Clear</source>
       <translation>Temizle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="861" />
-      <source>Cl&amp;ear</source>
-      <translation>T&amp;emizle</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="862" />
+      <source>Cl&amp;ear</source>
+      <translation>T&amp;emizle</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="863" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation>Alt+Shift+C</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="867" />
+      <location filename="../QScintilla/MiniEditor.py" line="868" />
       <source>Clear all text</source>
       <translation>Tüm metni temizle</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="869" />
+      <location filename="../QScintilla/MiniEditor.py" line="870" />
       <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Temizle&lt;/b&gt;&lt;p&gt;Geçerli düzenleyicideki tüm metinleri sil.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>About</source>
       <translation>Hakkında</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>&amp;About</source>
       <translation>H&amp;akkında</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2863" />
+      <location filename="../QScintilla/MiniEditor.py" line="2864" />
       <source>Display information about this software</source>
       <translation>Bu yazılım hakkında bilgi göster</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2865" />
+      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Hakkında&lt;/b&gt;&lt;p&gt;Bu yazılım hakkındaki çeşitli bilgileri gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About Qt</source>
       <translation>Qt Hakkında</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About &amp;Qt</source>
       <translation>&amp;Qt Hakkında</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2877" />
+      <location filename="../QScintilla/MiniEditor.py" line="2878" />
       <source>Display information about the Qt toolkit</source>
       <translation>Qt araçkiti hakkında bilgi göster</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2880" />
+      <location filename="../QScintilla/MiniEditor.py" line="2881" />
       <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Qt Hakkında&lt;/b&gt;&lt;p&gt;Qt Araçkiti hakkında bazı bilgiler gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2889" />
+      <location filename="../QScintilla/MiniEditor.py" line="2890" />
       <source>What's This?</source>
       <translation>Bu nedir?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2891" />
-      <source>&amp;What's This?</source>
-      <translation>Bu &amp;Nedir?</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <source>&amp;What's This?</source>
+      <translation>Bu &amp;Nedir?</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2893" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2897" />
+      <location filename="../QScintilla/MiniEditor.py" line="2898" />
       <source>Context sensitive help</source>
       <translation>Duyarlı yardım</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2899" />
+      <location filename="../QScintilla/MiniEditor.py" line="2900" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Duyarlı yardım içeriğini görüntüle&lt;/b&gt;&lt;p&gt;Bu Nedir? modunda, Fare imleci soru işeretiyle beraber bir ok şeklindedir ve bir arayüz elemanı üzerinde tıklarsanız bu elemanın nasıl kullanılacağı ve hakkında kısa bilgi verir. bu özellik diyaloglarda başlık çubuğu üzerindeyken çıkarılan açılır menülerde de bulunmaktadır.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2918" />
       <source>Preferences</source>
       <translation type="unfinished">Seçenekler</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2920" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished">&amp;Seçenekler...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2925" />
+      <location filename="../QScintilla/MiniEditor.py" line="2926" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished">tercih edilen ayarları yapınız</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2927" />
+      <location filename="../QScintilla/MiniEditor.py" line="2928" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Tercihler&lt;/b&gt;&lt;p&gt;Uygulamanın ayarlama maddelerini tercih ettiğiniz değerlerle ayarlayınız.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2941" />
+      <location filename="../QScintilla/MiniEditor.py" line="2942" />
       <source>&amp;File</source>
       <translation>&amp;Dosya</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2953" />
+      <location filename="../QScintilla/MiniEditor.py" line="2954" />
       <source>&amp;Edit</source>
       <translation>Düz&amp;en</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2963" />
+      <location filename="../QScintilla/MiniEditor.py" line="2964" />
       <source>&amp;Search</source>
       <translation type="unfinished">A&amp;ra</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2974" />
       <source>&amp;View</source>
       <translation type="unfinished">&amp;Görünüm</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2979" />
+      <location filename="../QScintilla/MiniEditor.py" line="2980" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished">Ayar&amp;lar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2985" />
       <source>&amp;Help</source>
       <translation>&amp;Yardım</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2996" />
+      <location filename="../QScintilla/MiniEditor.py" line="2997" />
       <source>File</source>
       <translation>Dosya</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3008" />
+      <location filename="../QScintilla/MiniEditor.py" line="3009" />
       <source>Edit</source>
       <translation>Düzen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3017" />
+      <location filename="../QScintilla/MiniEditor.py" line="3018" />
       <source>Search</source>
       <translation type="unfinished">Ara</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3023" />
+      <location filename="../QScintilla/MiniEditor.py" line="3024" />
       <source>View</source>
       <translation type="unfinished">Görünüm</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3029" />
+      <location filename="../QScintilla/MiniEditor.py" line="3030" />
       <source>Settings</source>
       <translation type="unfinished">Ayarlar</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3032" />
+      <location filename="../QScintilla/MiniEditor.py" line="3033" />
       <source>Help</source>
       <translation>Yardım</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3045" />
+      <location filename="../QScintilla/MiniEditor.py" line="3046" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3055" />
+      <location filename="../QScintilla/MiniEditor.py" line="3056" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Durum çubuğununu bu parçası düzenleyicideki dosyanın yazılabilme durumunu işaret eder. &lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3064" />
+      <location filename="../QScintilla/MiniEditor.py" line="3065" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Durum çubuğununu bu parçası düzenleyicideki satır numarasını gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3073" />
+      <location filename="../QScintilla/MiniEditor.py" line="3074" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;Durum çubuğununu bu parçası düzenleyicideki imlecin konumunu gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3087" />
+      <location filename="../QScintilla/MiniEditor.py" line="3088" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3094" />
+      <location filename="../QScintilla/MiniEditor.py" line="3095" />
       <source>Ready</source>
       <translation>Hazır</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3169" />
-      <source>eric Mini Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <source>eric Mini Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3171" />
       <source>The document has unsaved changes.</source>
       <translation>Belgede kaydedilmemiş değişiklikler var.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3197" />
-      <source>Open File</source>
-      <translation>Dosya Aç</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <source>Open File</source>
+      <translation>Dosya Aç</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3199" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Dosya &lt;b&gt;{0}&lt;/b&gt; açılamıyor.&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3226" />
+      <location filename="../QScintilla/MiniEditor.py" line="3227" />
       <source>File loaded</source>
       <translation>Dosya Yüklendi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3307" />
-      <source>Save File</source>
-      <translation>Dosyayı Kaydet</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <source>Save File</source>
+      <translation>Dosyayı Kaydet</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3309" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;Dosya &lt;b&gt;{0}&lt;/b&gt; kaydedilemiyor.&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3314" />
+      <location filename="../QScintilla/MiniEditor.py" line="3315" />
       <source>File saved</source>
       <translation>Dosya Kaydedildi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>[*] - {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>Mini Editor</source>
       <translation>Mini Düzenleyici</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3683" />
-      <location filename="../QScintilla/MiniEditor.py" line="3654" />
-      <location filename="../QScintilla/MiniEditor.py" line="3338" />
+      <location filename="../QScintilla/MiniEditor.py" line="3684" />
+      <location filename="../QScintilla/MiniEditor.py" line="3655" />
+      <location filename="../QScintilla/MiniEditor.py" line="3339" />
       <source>Untitled</source>
       <translation>Başlıksız</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
       <source>{0}[*] - {1}</source>
       <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3649" />
+      <location filename="../QScintilla/MiniEditor.py" line="3650" />
       <source>Printing...</source>
       <translation>Yazılıyor...</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3665" />
+      <location filename="../QScintilla/MiniEditor.py" line="3666" />
       <source>Printing completed</source>
       <translation>Yazdırma tamalandı</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3667" />
+      <location filename="../QScintilla/MiniEditor.py" line="3668" />
       <source>Error while printing</source>
       <translation>Yazdırılırken hata</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3670" />
+      <location filename="../QScintilla/MiniEditor.py" line="3671" />
       <source>Printing aborted</source>
       <translation>Yazdırma iptal edildi</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3724" />
-      <source>Select all</source>
-      <translation>Hepsini seç</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <source>Select all</source>
+      <translation>Hepsini seç</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3726" />
       <source>Deselect all</source>
       <translation>Tüm seçimi iptal et</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3738" />
+      <location filename="../QScintilla/MiniEditor.py" line="3739" />
       <source>Languages</source>
       <translation>Diller</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3741" />
+      <location filename="../QScintilla/MiniEditor.py" line="3742" />
       <source>No Language</source>
       <translation>Dil Yok</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3763" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Guessed</source>
       <translation>Tahmin edilen</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3785" />
-      <location filename="../QScintilla/MiniEditor.py" line="3767" />
+      <location filename="../QScintilla/MiniEditor.py" line="3786" />
+      <location filename="../QScintilla/MiniEditor.py" line="3768" />
       <source>Alternatives</source>
       <translation>Alternatifler</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3783" />
       <source>Alternatives ({0})</source>
       <translation>Alternatifler ({0})</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3813" />
-      <source>Pygments Lexer</source>
-      <translation>Pygments Lexer</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <source>Pygments Lexer</source>
+      <translation>Pygments Lexer</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3815" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>Kullanmak için Pygment lexer seç.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4326" />
+      <location filename="../QScintilla/MiniEditor.py" line="4336" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4327" />
+      <location filename="../QScintilla/MiniEditor.py" line="4337" />
       <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" />
     </message>
   </context>
   <context>
+    <name>MipLocalInstaller</name>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="185" />
+      <source>Unable to find 'lib' in sys.path. Please enter a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="229" />
+      <source>
+
+Package may be partially installed.</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>MipPackageDialog</name>
     <message>
+      <location filename="../MicroPython/MipPackageDialog.py" line="34" />
+      <source>Enter the URL of the package index. Leave empty to use the default index ({0}).</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
       <source>Install Package</source>
       <translation type="unfinished" />
@@ -52410,6 +52436,21 @@
       <source>Install .mpy File</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Target Directory:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Enter the directory to install to (must be contained in sys.path). Leave empty to detect automatically.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Package Index:</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>MiscellaneousChecker</name>
@@ -53069,194 +53110,194 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="603" />
-      <location filename="../MultiProject/MultiProject.py" line="593" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="591" />
       <source>Multi Project Files (*.emj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="599" />
       <source>Save Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="617" />
+      <location filename="../MultiProject/MultiProject.py" line="615" />
       <source>Save File</source>
       <translation>Dosyayı Kaydet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="618" />
+      <location filename="../MultiProject/MultiProject.py" line="616" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="644" />
+      <location filename="../MultiProject/MultiProject.py" line="642" />
       <source>Close Multiproject</source>
       <translation>Çokluprojeyi Kapat</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="645" />
+      <location filename="../MultiProject/MultiProject.py" line="643" />
       <source>The current multiproject has unsaved changes.</source>
       <translation>Geçerli çokluprojede kaydedilmemiş değişiklikler var.</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="696" />
+      <source>New multiproject</source>
+      <translation>Yeni Çokluproje</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="698" />
-      <source>New multiproject</source>
-      <translation>Yeni Çokluproje</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>&amp;New...</source>
       <translation>Ye&amp;ni...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="704" />
+      <source>Generate a new multiproject</source>
+      <translation>Yeni bir Çokluproje üret</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="706" />
-      <source>Generate a new multiproject</source>
-      <translation>Yeni bir Çokluproje üret</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Yeni...&lt;/b&gt;&lt;p&gt;Bu yeni bir çokluproje için gerekli bilgilerin girileceği bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="716" />
+      <source>Open multiproject</source>
+      <translation>Çokluproje Aç</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="718" />
-      <source>Open multiproject</source>
-      <translation>Çokluproje Aç</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="720" />
       <source>&amp;Open...</source>
       <translation>&amp;Aç...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="724" />
+      <source>Open an existing multiproject</source>
+      <translation>Var olan Çokluprojeyi aç</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="726" />
-      <source>Open an existing multiproject</source>
-      <translation>Var olan Çokluprojeyi aç</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="728" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Aç...&lt;/b&gt;&lt;p&gt;Bu varolon bir projeyi açar.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="732" />
+      <source>Close multiproject</source>
+      <translation>Çokluprojeyi kapat</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="734" />
-      <source>Close multiproject</source>
-      <translation>Çokluprojeyi kapat</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&amp;Close</source>
       <translation>&amp;Kapat</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="740" />
+      <source>Close the current multiproject</source>
+      <translation>Geçerli çokluprojeyi kapat</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="742" />
-      <source>Close the current multiproject</source>
-      <translation>Geçerli çokluprojeyi kapat</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Kapat&lt;/b&gt;&lt;p&gt;Bu geçerli çokluprojeyi kapatır.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="748" />
+      <source>Save multiproject</source>
+      <translation>Çokluprojeyi kaydet</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="750" />
-      <source>Save multiproject</source>
-      <translation>Çokluprojeyi kaydet</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="752" />
       <source>&amp;Save</source>
       <translation>&amp;Kaydet</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="756" />
+      <source>Save the current multiproject</source>
+      <translation>Geçerli çokluprojeyi kaydet</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="758" />
-      <source>Save the current multiproject</source>
-      <translation>Geçerli çokluprojeyi kaydet</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="760" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Kaydet&lt;/b&gt;&lt;p&gt;Bu geçerli çokluprojeyi kaydeder.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <source>Save multiproject as</source>
+      <translation>Çokluprojeleri olarak kaydet</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="766" />
-      <source>Save multiproject as</source>
-      <translation>Çokluprojeleri olarak kaydet</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="768" />
       <source>Save &amp;as...</source>
       <translation>Farklı k&amp;aydet...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="775" />
+      <location filename="../MultiProject/MultiProject.py" line="773" />
       <source>Save the current multiproject to a new file</source>
       <translation>Geçerli çokluprojeyi yeni bir dosya olarak kaydet</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="778" />
+      <location filename="../MultiProject/MultiProject.py" line="776" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Farklı kaydet&lt;/b&gt;&lt;p&gt;Bu geçerli çokluprojeyi yeni bir dosyaya kaydeder.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="785" />
+      <source>Add project to multiproject</source>
+      <translation>Çokluprojeye proje ekle</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="787" />
-      <source>Add project to multiproject</source>
-      <translation>Çokluprojeye proje ekle</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="789" />
       <source>Add &amp;project...</source>
       <translation>&amp;Proje ekle...</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="796" />
+      <location filename="../MultiProject/MultiProject.py" line="794" />
       <source>Add a project to the current multiproject</source>
       <translation>Geçerli çokluprojeye bir proje ekle</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="799" />
+      <location filename="../MultiProject/MultiProject.py" line="797" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Proje ekle...&lt;/b&gt;&lt;p&gt;Bu geçerli çokluprojeye bir proje eklemek için diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="807" />
+      <source>Multiproject properties</source>
+      <translation>Çokluproje özellikleri</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="809" />
-      <source>Multiproject properties</source>
-      <translation>Çokluproje özellikleri</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="811" />
       <source>&amp;Properties...</source>
       <translation>&amp;Özellikler...</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="815" />
+      <source>Show the multiproject properties</source>
+      <translation>Çokluproje özelliklerini göster</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="817" />
-      <source>Show the multiproject properties</source>
-      <translation>Çokluproje özelliklerini göster</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Özellikler...&lt;/b&gt;&lt;p&gt;Bu çokluproje özelliklerini düzenlemek için sir diyalog gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="840" />
+      <location filename="../MultiProject/MultiProject.py" line="838" />
       <source>&amp;Multiproject</source>
       <translation>&amp;Çokluproje</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="841" />
+      <location filename="../MultiProject/MultiProject.py" line="839" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation>Geçmiş Çoklup&amp;rojeleri Aç</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="880" />
       <location filename="../MultiProject/MultiProject.py" line="878" />
+      <location filename="../MultiProject/MultiProject.py" line="876" />
       <source>Multiproject</source>
       <translation>Çokluproje</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="935" />
+      <location filename="../MultiProject/MultiProject.py" line="933" />
       <source>&amp;Clear</source>
       <translation>T&amp;emizle</translation>
     </message>
@@ -69439,7 +69480,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="417" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="415" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -69450,7 +69491,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="381" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="379" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="367" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="349" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="239" />
@@ -69488,42 +69529,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="380" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="378" />
       <source>'st-flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="400" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="398" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="401" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="399" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="416" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="444" />
       <source>unknown</source>
       <translation type="unfinished">bilinmeyen</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="460" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="462" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -69977,49 +70018,49 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="155" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="154" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="151" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="150" />
       <source>Find Next</source>
       <translation>Sonrakini Bul</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="168" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="167" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="164" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="163" />
       <source>Find Prev</source>
       <translation>Öncekini Bul</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="181" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="180" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="177" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="176" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="197" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="196" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="191" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="190" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="211" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="210" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="205" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="204" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1048" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1045" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="597" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="559" />
       <source>'{0}' was not found.</source>
       <translation>'{0}' bulunamadı.</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1201" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1198" />
       <source>Replaced {0} occurrences.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1207" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1204" />
       <source>Nothing replaced because '{0}' was not found.</source>
       <translation type="unfinished" />
     </message>
@@ -77756,50 +77797,50 @@
   <context>
     <name>SvnProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="734" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="591" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="594" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="547" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="394" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="593" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="546" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="596" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="549" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="399" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="210" />
       <source>Version Control</source>
       <translation>Sürüm Kontrol</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="750" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="607" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="753" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="610" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="224" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="758" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="761" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="415" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="226" />
       <source>Update from repository</source>
       <translation>Kaynak Havuzundan güncelle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="756" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="616" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="416" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="230" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="764" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="615" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="767" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="618" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="421" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="232" />
       <source>Commit changes to repository...</source>
       <translation>Yapılan değişiklekleri kaynak havuzuna teslim et...</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="763" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="620" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="623" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="423" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="237" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="622" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="625" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="428" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="239" />
       <source>Add to repository</source>
@@ -77814,90 +77855,90 @@
       <translation>Kaynak havuzuna dal ekle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="769" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="626" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="772" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="629" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="436" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="250" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="441" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="252" />
       <source>Remove from repository (and disk)</source>
       <translation>Kaynak havuzundan kaldır (ve diskten)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="634" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="255" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="257" />
       <source>Copy</source>
       <translation type="unfinished">Kopyala</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="257" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="259" />
       <source>Move</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="776" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="779" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="641" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="443" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="262" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="784" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="787" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="643" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="448" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="264" />
       <source>Add to Changelist</source>
       <translation>Değişiklik Listesine Ekle</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="780" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="783" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="645" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="266" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="788" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="647" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="452" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="268" />
       <source>Remove from Changelist</source>
       <translation>DEğişiklik listesinden çıkar</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="272" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="650" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="653" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="274" />
       <source>Show log browser</source>
       <translation>Kayıt gözatıcısını gösted</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="786" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="655" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="658" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="453" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="279" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="794" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="660" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="281" />
       <source>Show status</source>
       <translation>Durumu Göster</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="663" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="287" />
       <source>Show repository info</source>
       <translation>Kaynak havuzu bilgisini göster</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="793" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="662" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="665" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="801" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="670" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="673" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="465" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="294" />
       <source>Show differences</source>
@@ -77910,12 +77951,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="799" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="802" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="671" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="466" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="298" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="807" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="810" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="679" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="471" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="306" />
       <source>Show differences (extended)</source>
@@ -77928,12 +77969,12 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="805" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="472" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="310" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="813" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="685" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="477" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="318" />
       <source>Show differences (URLs)</source>
@@ -77946,34 +77987,34 @@
       <translation>Açıklama dosyalarını göster</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="812" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="681" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="815" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="684" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="479" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="319" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="820" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="689" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="823" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="692" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="484" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="327" />
       <source>Revert changes</source>
       <translation>Değişiklikleri başa döndür</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="818" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="690" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="826" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="829" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="333" />
       <source>Merge changes</source>
       <translation>Değişiklikleri birleştir</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="822" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="691" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="483" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="329" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="830" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="699" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="488" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="337" />
       <source>Conflicts resolved</source>
@@ -78012,106 +78053,106 @@
       <translation>Hırsızlık Kilidi</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="828" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="697" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="510" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="356" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="836" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="361" />
       <source>Set Property</source>
       <translation>Özellikleri Ayarla</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="827" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="830" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="699" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="358" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="835" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="838" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="707" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="363" />
       <source>List Properties</source>
       <translation>Özellikleri Listele</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="829" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="698" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="832" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="701" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="360" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="837" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="709" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="365" />
       <source>Delete Property</source>
       <translation>Özellikleri Sil</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="559" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="841" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="710" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="561" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
-      <source>Select all local file entries</source>
-      <translation>tüm yerel dosyalırın girişini seç</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="836" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="562" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="844" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="713" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
-      <source>Select all versioned file entries</source>
-      <translation>Giriş yapılan tüm dosyaları seç</translation>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
+      <source>Select all local file entries</source>
+      <translation>tüm yerel dosyalırın girişini seç</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="839" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="708" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="847" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="716" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="567" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
+      <source>Select all versioned file entries</source>
+      <translation>Giriş yapılan tüm dosyaları seç</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="842" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="570" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="526" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="375" />
       <source>Select all local directory entries</source>
       <translation>Tüm yerel dizin kalemlerini seç</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="843" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="712" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="846" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="715" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="572" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="528" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="374" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="851" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="720" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="571" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="854" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="723" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="574" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="379" />
       <source>Select all versioned directory entries</source>
       <translation>Giriş yapılan tüm dizinleri seç</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="847" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="576" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="532" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="378" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="855" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="724" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="575" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="858" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="727" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="578" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="534" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="383" />
       <source>Configure...</source>
@@ -90649,8 +90690,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
+      <location filename="../QScintilla/MiniEditor.py" line="1685" />
       <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/MiniEditor.py" line="1683" />
       <location filename="../QScintilla/ShellWindow.py" line="435" />
       <location filename="../QScintilla/ShellWindow.py" line="434" />
       <source>Delete current line</source>
@@ -90658,7 +90699,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
+      <location filename="../QScintilla/MiniEditor.py" line="1686" />
       <location filename="../QScintilla/ShellWindow.py" line="436" />
       <source>Ctrl+Shift+L</source>
       <translation>Ctrl+Shift+L</translation>
@@ -90666,8 +90707,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="1207" />
       <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/MiniEditor.py" line="1205" />
       <location filename="../QScintilla/ShellWindow.py" line="447" />
       <location filename="../QScintilla/ShellWindow.py" line="446" />
       <source>Indent one level</source>
@@ -90675,7 +90716,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
+      <location filename="../QScintilla/MiniEditor.py" line="1208" />
       <location filename="../QScintilla/ShellWindow.py" line="448" />
       <source>Tab</source>
       <translation>Tab</translation>
@@ -90683,8 +90724,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
+      <location filename="../QScintilla/MiniEditor.py" line="1673" />
       <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1671" />
       <location filename="../QScintilla/ShellWindow.py" line="459" />
       <location filename="../QScintilla/ShellWindow.py" line="458" />
       <source>Insert new line</source>
@@ -90692,14 +90733,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
+      <location filename="../QScintilla/MiniEditor.py" line="1674" />
       <location filename="../QScintilla/ShellWindow.py" line="460" />
       <source>Return</source>
       <translation>Return</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
+      <location filename="../QScintilla/MiniEditor.py" line="1675" />
       <location filename="../QScintilla/ShellWindow.py" line="461" />
       <source>Enter</source>
       <translation>Enter</translation>
@@ -90707,8 +90748,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
+      <location filename="../QScintilla/MiniEditor.py" line="1559" />
       <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1557" />
       <location filename="../QScintilla/ShellWindow.py" line="471" />
       <location filename="../QScintilla/ShellWindow.py" line="470" />
       <source>Delete previous character</source>
@@ -90716,21 +90757,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
+      <location filename="../QScintilla/MiniEditor.py" line="1560" />
       <location filename="../QScintilla/ShellWindow.py" line="472" />
       <source>Backspace</source>
       <translation>Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1566" />
+      <location filename="../QScintilla/MiniEditor.py" line="1567" />
       <location filename="../QScintilla/ShellWindow.py" line="479" />
       <source>Meta+H</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1571" />
+      <location filename="../QScintilla/MiniEditor.py" line="1572" />
       <location filename="../QScintilla/ShellWindow.py" line="484" />
       <source>Shift+Backspace</source>
       <translation>Shift+Backspace</translation>
@@ -90738,8 +90779,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
+      <location filename="../QScintilla/MiniEditor.py" line="1597" />
       <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1595" />
       <location filename="../QScintilla/ShellWindow.py" line="493" />
       <location filename="../QScintilla/ShellWindow.py" line="492" />
       <source>Delete current character</source>
@@ -90747,14 +90788,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
+      <location filename="../QScintilla/MiniEditor.py" line="1598" />
       <location filename="../QScintilla/ShellWindow.py" line="494" />
       <source>Del</source>
       <translation>Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1604" />
+      <location filename="../QScintilla/MiniEditor.py" line="1605" />
       <location filename="../QScintilla/ShellWindow.py" line="501" />
       <source>Meta+D</source>
       <translation type="unfinished" />
@@ -90762,8 +90803,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
+      <location filename="../QScintilla/MiniEditor.py" line="1613" />
       <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/MiniEditor.py" line="1611" />
       <location filename="../QScintilla/ShellWindow.py" line="509" />
       <location filename="../QScintilla/ShellWindow.py" line="508" />
       <source>Delete word to left</source>
@@ -90771,7 +90812,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1614" />
       <location filename="../QScintilla/ShellWindow.py" line="510" />
       <source>Ctrl+Backspace</source>
       <translation>Ctrl+Backspace</translation>
@@ -90779,8 +90820,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1625" />
       <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/MiniEditor.py" line="1623" />
       <location filename="../QScintilla/ShellWindow.py" line="521" />
       <location filename="../QScintilla/ShellWindow.py" line="520" />
       <source>Delete word to right</source>
@@ -90788,7 +90829,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
+      <location filename="../QScintilla/MiniEditor.py" line="1626" />
       <location filename="../QScintilla/ShellWindow.py" line="522" />
       <source>Ctrl+Del</source>
       <translation>Ctrl+Del</translation>
@@ -90796,8 +90837,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
+      <location filename="../QScintilla/MiniEditor.py" line="1637" />
       <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/MiniEditor.py" line="1635" />
       <location filename="../QScintilla/ShellWindow.py" line="533" />
       <location filename="../QScintilla/ShellWindow.py" line="532" />
       <source>Delete line to left</source>
@@ -90805,7 +90846,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1638" />
+      <location filename="../QScintilla/MiniEditor.py" line="1639" />
       <location filename="../QScintilla/ShellWindow.py" line="535" />
       <source>Ctrl+Shift+Backspace</source>
       <translation>Ctrl+Shift+Backspace</translation>
@@ -90813,8 +90854,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
+      <location filename="../QScintilla/MiniEditor.py" line="1651" />
       <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/MiniEditor.py" line="1649" />
       <location filename="../QScintilla/ShellWindow.py" line="547" />
       <location filename="../QScintilla/ShellWindow.py" line="546" />
       <source>Delete line to right</source>
@@ -90822,14 +90863,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1658" />
+      <location filename="../QScintilla/MiniEditor.py" line="1659" />
       <location filename="../QScintilla/ShellWindow.py" line="555" />
       <source>Meta+K</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1663" />
+      <location filename="../QScintilla/MiniEditor.py" line="1664" />
       <location filename="../QScintilla/ShellWindow.py" line="560" />
       <source>Ctrl+Shift+Del</source>
       <translation>Ctrl+Shift+Del</translation>
@@ -90837,8 +90878,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
+      <location filename="../QScintilla/MiniEditor.py" line="895" />
       <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/MiniEditor.py" line="893" />
       <location filename="../QScintilla/ShellWindow.py" line="569" />
       <location filename="../QScintilla/ShellWindow.py" line="568" />
       <source>Move left one character</source>
@@ -90846,14 +90887,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
+      <location filename="../QScintilla/MiniEditor.py" line="896" />
       <location filename="../QScintilla/ShellWindow.py" line="570" />
       <source>Left</source>
       <translation>Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="904" />
       <location filename="../QScintilla/ShellWindow.py" line="578" />
       <source>Meta+B</source>
       <translation type="unfinished" />
@@ -90861,8 +90902,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="911" />
       <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/MiniEditor.py" line="909" />
       <location filename="../QScintilla/ShellWindow.py" line="585" />
       <location filename="../QScintilla/ShellWindow.py" line="584" />
       <source>Move right one character</source>
@@ -90870,14 +90911,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
+      <location filename="../QScintilla/MiniEditor.py" line="912" />
       <location filename="../QScintilla/ShellWindow.py" line="586" />
       <source>Right</source>
       <translation>Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="918" />
+      <location filename="../QScintilla/MiniEditor.py" line="919" />
       <location filename="../QScintilla/ShellWindow.py" line="593" />
       <source>Meta+F</source>
       <translation type="unfinished" />
@@ -90885,8 +90926,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="991" />
       <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/MiniEditor.py" line="989" />
       <location filename="../QScintilla/ShellWindow.py" line="601" />
       <location filename="../QScintilla/ShellWindow.py" line="600" />
       <source>Move left one word</source>
@@ -90895,8 +90936,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="998" />
-      <location filename="../QScintilla/MiniEditor.py" line="966" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/MiniEditor.py" line="967" />
       <location filename="../QScintilla/ShellWindow.py" line="609" />
       <source>Alt+Left</source>
       <translation>Alt+Left</translation>
@@ -90904,8 +90945,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1058" />
-      <location filename="../QScintilla/MiniEditor.py" line="1002" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
+      <location filename="../QScintilla/MiniEditor.py" line="1003" />
       <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Ctrl+Left</source>
       <translation>Ctrl+Left</translation>
@@ -90913,8 +90954,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
+      <location filename="../QScintilla/MiniEditor.py" line="1011" />
       <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/MiniEditor.py" line="1009" />
       <location filename="../QScintilla/ShellWindow.py" line="621" />
       <location filename="../QScintilla/ShellWindow.py" line="620" />
       <source>Move right one word</source>
@@ -90923,8 +90964,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1812" />
-      <location filename="../QScintilla/MiniEditor.py" line="1022" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="1023" />
       <location filename="../QScintilla/ShellWindow.py" line="629" />
       <source>Ctrl+Right</source>
       <translation>Ctrl+Right</translation>
@@ -90932,8 +90973,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1032" />
-      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1033" />
+      <location filename="../QScintilla/MiniEditor.py" line="1030" />
       <location filename="../QScintilla/ShellWindow.py" line="639" />
       <location filename="../QScintilla/ShellWindow.py" line="636" />
       <source>Move to first visible character in document line</source>
@@ -90942,8 +90983,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2073" />
-      <location filename="../QScintilla/MiniEditor.py" line="1042" />
+      <location filename="../QScintilla/MiniEditor.py" line="2074" />
+      <location filename="../QScintilla/MiniEditor.py" line="1043" />
       <location filename="../QScintilla/ShellWindow.py" line="649" />
       <source>Home</source>
       <translation>Home</translation>
@@ -90951,8 +90992,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
+      <location filename="../QScintilla/MiniEditor.py" line="1071" />
       <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/MiniEditor.py" line="1069" />
       <location filename="../QScintilla/ShellWindow.py" line="657" />
       <location filename="../QScintilla/ShellWindow.py" line="656" />
       <source>Move to end of document line</source>
@@ -90960,7 +91001,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1078" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
       <location filename="../QScintilla/ShellWindow.py" line="665" />
       <source>Meta+E</source>
       <translation type="unfinished" />
@@ -90968,8 +91009,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1083" />
       <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>End</source>
       <translation>End</translation>
@@ -90977,8 +91018,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="927" />
       <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/MiniEditor.py" line="925" />
       <location filename="../QScintilla/ShellWindow.py" line="677" />
       <location filename="../QScintilla/ShellWindow.py" line="676" />
       <source>Move up one line</source>
@@ -90986,14 +91027,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
+      <location filename="../QScintilla/MiniEditor.py" line="928" />
       <location filename="../QScintilla/ShellWindow.py" line="678" />
       <source>Up</source>
       <translation>Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="934" />
+      <location filename="../QScintilla/MiniEditor.py" line="935" />
       <location filename="../QScintilla/ShellWindow.py" line="685" />
       <source>Meta+P</source>
       <translation type="unfinished" />
@@ -91001,8 +91042,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
+      <location filename="../QScintilla/MiniEditor.py" line="943" />
       <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/MiniEditor.py" line="941" />
       <location filename="../QScintilla/ShellWindow.py" line="693" />
       <location filename="../QScintilla/ShellWindow.py" line="692" />
       <source>Move down one line</source>
@@ -91010,14 +91051,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="944" />
       <location filename="../QScintilla/ShellWindow.py" line="694" />
       <source>Down</source>
       <translation>Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="950" />
+      <location filename="../QScintilla/MiniEditor.py" line="951" />
       <location filename="../QScintilla/ShellWindow.py" line="701" />
       <source>Meta+N</source>
       <translation type="unfinished" />
@@ -91025,8 +91066,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1194" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
+      <location filename="../QScintilla/MiniEditor.py" line="1092" />
       <location filename="../QScintilla/ShellWindow.py" line="710" />
       <source>Ctrl+Down</source>
       <translation>Ctrl+Down</translation>
@@ -91034,8 +91075,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1174" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
+      <location filename="../QScintilla/MiniEditor.py" line="1104" />
       <location filename="../QScintilla/ShellWindow.py" line="722" />
       <source>Ctrl+Up</source>
       <translation>Ctrl+Up</translation>
@@ -91043,8 +91084,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1139" />
       <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/MiniEditor.py" line="1137" />
       <location filename="../QScintilla/ShellWindow.py" line="733" />
       <location filename="../QScintilla/ShellWindow.py" line="732" />
       <source>Move up one page</source>
@@ -91052,7 +91093,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
+      <location filename="../QScintilla/MiniEditor.py" line="1140" />
       <location filename="../QScintilla/ShellWindow.py" line="734" />
       <source>PgUp</source>
       <translation>PgUp</translation>
@@ -91060,8 +91101,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
+      <location filename="../QScintilla/MiniEditor.py" line="1151" />
       <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1149" />
       <location filename="../QScintilla/ShellWindow.py" line="745" />
       <location filename="../QScintilla/ShellWindow.py" line="744" />
       <source>Move down one page</source>
@@ -91069,14 +91110,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1152" />
       <location filename="../QScintilla/ShellWindow.py" line="746" />
       <source>PgDown</source>
       <translation>PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1158" />
+      <location filename="../QScintilla/MiniEditor.py" line="1159" />
       <location filename="../QScintilla/ShellWindow.py" line="753" />
       <source>Meta+V</source>
       <translation type="unfinished" />
@@ -91084,8 +91125,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
+      <location filename="../QScintilla/MiniEditor.py" line="1859" />
       <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/MiniEditor.py" line="1857" />
       <location filename="../QScintilla/ShellWindow.py" line="761" />
       <location filename="../QScintilla/ShellWindow.py" line="760" />
       <source>Escape</source>
@@ -91093,7 +91134,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
+      <location filename="../QScintilla/MiniEditor.py" line="1860" />
       <location filename="../QScintilla/ShellWindow.py" line="762" />
       <source>Esc</source>
       <translation>Esc</translation>
@@ -91101,8 +91142,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1233" />
+      <location filename="../QScintilla/MiniEditor.py" line="1230" />
       <location filename="../QScintilla/ShellWindow.py" line="775" />
       <location filename="../QScintilla/ShellWindow.py" line="772" />
       <source>Extend selection left one character</source>
@@ -91110,14 +91151,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1235" />
+      <location filename="../QScintilla/MiniEditor.py" line="1236" />
       <location filename="../QScintilla/ShellWindow.py" line="778" />
       <source>Shift+Left</source>
       <translation>Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1242" />
+      <location filename="../QScintilla/MiniEditor.py" line="1243" />
       <location filename="../QScintilla/ShellWindow.py" line="785" />
       <source>Meta+Shift+B</source>
       <translation type="unfinished" />
@@ -91125,8 +91166,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1253" />
+      <location filename="../QScintilla/MiniEditor.py" line="1250" />
       <location filename="../QScintilla/ShellWindow.py" line="795" />
       <location filename="../QScintilla/ShellWindow.py" line="792" />
       <source>Extend selection right one character</source>
@@ -91134,14 +91175,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1255" />
+      <location filename="../QScintilla/MiniEditor.py" line="1256" />
       <location filename="../QScintilla/ShellWindow.py" line="798" />
       <source>Shift+Right</source>
       <translation>Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1262" />
+      <location filename="../QScintilla/MiniEditor.py" line="1263" />
       <location filename="../QScintilla/ShellWindow.py" line="805" />
       <source>Meta+Shift+F</source>
       <translation type="unfinished" />
@@ -91149,8 +91190,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
+      <location filename="../QScintilla/MiniEditor.py" line="1347" />
       <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/MiniEditor.py" line="1345" />
       <location filename="../QScintilla/ShellWindow.py" line="813" />
       <location filename="../QScintilla/ShellWindow.py" line="812" />
       <source>Extend selection left one word</source>
@@ -91159,8 +91200,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1355" />
-      <location filename="../QScintilla/MiniEditor.py" line="1315" />
+      <location filename="../QScintilla/MiniEditor.py" line="1356" />
+      <location filename="../QScintilla/MiniEditor.py" line="1316" />
       <location filename="../QScintilla/ShellWindow.py" line="822" />
       <source>Alt+Shift+Left</source>
       <translation>Alt+Shift+Left</translation>
@@ -91168,8 +91209,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2276" />
-      <location filename="../QScintilla/MiniEditor.py" line="1361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2277" />
+      <location filename="../QScintilla/MiniEditor.py" line="1362" />
       <location filename="../QScintilla/ShellWindow.py" line="828" />
       <source>Ctrl+Shift+Left</source>
       <translation>Ctrl+Shift+Left</translation>
@@ -91177,8 +91218,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1372" />
-      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1373" />
+      <location filename="../QScintilla/MiniEditor.py" line="1370" />
       <location filename="../QScintilla/ShellWindow.py" line="839" />
       <location filename="../QScintilla/ShellWindow.py" line="836" />
       <source>Extend selection right one word</source>
@@ -91188,9 +91229,9 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1383" />
-      <location filename="../QScintilla/MiniEditor.py" line="1337" />
+      <location filename="../QScintilla/MiniEditor.py" line="2151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1384" />
+      <location filename="../QScintilla/MiniEditor.py" line="1338" />
       <location filename="../QScintilla/ShellWindow.py" line="850" />
       <source>Alt+Shift+Right</source>
       <translation>Alt+Shift+Right</translation>
@@ -91198,8 +91239,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1837" />
-      <location filename="../QScintilla/MiniEditor.py" line="1389" />
+      <location filename="../QScintilla/MiniEditor.py" line="1838" />
+      <location filename="../QScintilla/MiniEditor.py" line="1390" />
       <location filename="../QScintilla/ShellWindow.py" line="856" />
       <source>Ctrl+Shift+Right</source>
       <translation>Ctrl+Shift+Right</translation>
@@ -91207,8 +91248,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1401" />
-      <location filename="../QScintilla/MiniEditor.py" line="1397" />
+      <location filename="../QScintilla/MiniEditor.py" line="1402" />
+      <location filename="../QScintilla/MiniEditor.py" line="1398" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
       <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
@@ -91216,7 +91257,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1412" />
+      <location filename="../QScintilla/MiniEditor.py" line="1413" />
       <location filename="../QScintilla/ShellWindow.py" line="879" />
       <source>Shift+Home</source>
       <translation>Shift+Home</translation>
@@ -91224,8 +91265,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1422" />
-      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1423" />
+      <location filename="../QScintilla/MiniEditor.py" line="1420" />
       <location filename="../QScintilla/ShellWindow.py" line="889" />
       <location filename="../QScintilla/ShellWindow.py" line="886" />
       <source>Extend selection to end of document line</source>
@@ -91233,14 +91274,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1432" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
       <location filename="../QScintilla/ShellWindow.py" line="899" />
       <source>Meta+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1437" />
       <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Shift+End</source>
       <translation>Shift+End</translation>
@@ -91249,21 +91290,21 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2532" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
       <location filename="../QScintilla/ShellWindow.py" line="917" />
       <source>Search</source>
       <translation>Ara</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2534" />
+      <location filename="../QScintilla/MiniEditor.py" line="2535" />
       <location filename="../QScintilla/ShellWindow.py" line="919" />
       <source>&amp;Search...</source>
       <translation>A&amp;ra...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2536" />
+      <location filename="../QScintilla/MiniEditor.py" line="2537" />
       <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
@@ -91271,7 +91312,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2543" />
+      <location filename="../QScintilla/MiniEditor.py" line="2544" />
       <location filename="../QScintilla/ShellWindow.py" line="928" />
       <source>Search for a text</source>
       <translation>Metin olarak ara</translation>
@@ -91283,21 +91324,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
       <location filename="../QScintilla/ShellWindow.py" line="943" />
       <source>Search next</source>
       <translation>Sonrakini ara</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2560" />
+      <location filename="../QScintilla/MiniEditor.py" line="2561" />
       <location filename="../QScintilla/ShellWindow.py" line="945" />
       <source>Search &amp;next</source>
       <translation>So&amp;nrakini ara</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2562" />
+      <location filename="../QScintilla/MiniEditor.py" line="2563" />
       <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>F3</source>
       <comment>Search|Search next</comment>
@@ -91305,7 +91346,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2569" />
+      <location filename="../QScintilla/MiniEditor.py" line="2570" />
       <location filename="../QScintilla/ShellWindow.py" line="954" />
       <source>Search next occurrence of text</source>
       <translation type="unfinished" />
@@ -91317,21 +91358,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2584" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
       <location filename="../QScintilla/ShellWindow.py" line="971" />
       <source>Search previous</source>
       <translation>Öncekini ara</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2586" />
+      <location filename="../QScintilla/MiniEditor.py" line="2587" />
       <location filename="../QScintilla/ShellWindow.py" line="973" />
       <source>Search &amp;previous</source>
       <translation>Öncekini a&amp;ra</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2588" />
+      <location filename="../QScintilla/MiniEditor.py" line="2589" />
       <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
@@ -91339,7 +91380,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2597" />
+      <location filename="../QScintilla/MiniEditor.py" line="2598" />
       <location filename="../QScintilla/ShellWindow.py" line="984" />
       <source>Search previous occurrence of text</source>
       <translation type="unfinished" />
@@ -91351,21 +91392,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2757" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
       <location filename="../QScintilla/ShellWindow.py" line="1010" />
       <source>Zoom in</source>
       <translation>Büyüt</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2759" />
+      <location filename="../QScintilla/MiniEditor.py" line="2760" />
       <location filename="../QScintilla/ShellWindow.py" line="1012" />
       <source>Zoom &amp;in</source>
       <translation>Bü&amp;yült</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/MiniEditor.py" line="2762" />
       <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
@@ -91373,7 +91414,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2764" />
+      <location filename="../QScintilla/MiniEditor.py" line="2765" />
       <location filename="../QScintilla/ShellWindow.py" line="1017" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
@@ -91381,35 +91422,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/MiniEditor.py" line="2771" />
       <location filename="../QScintilla/ShellWindow.py" line="1023" />
       <source>Zoom in on the text</source>
       <translation>MEtni Büyüt</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2773" />
+      <location filename="../QScintilla/MiniEditor.py" line="2774" />
       <location filename="../QScintilla/ShellWindow.py" line="1026" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Büyüt&lt;/b&gt;&lt;p&gt;Metin içinde büyüt. Bu metni daha  büyük yapar.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2783" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
       <location filename="../QScintilla/ShellWindow.py" line="1036" />
       <source>Zoom out</source>
       <translation>Küçült</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2785" />
+      <location filename="../QScintilla/MiniEditor.py" line="2786" />
       <location filename="../QScintilla/ShellWindow.py" line="1038" />
       <source>Zoom &amp;out</source>
       <translation>Küçü&amp;lt</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/MiniEditor.py" line="2788" />
       <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
@@ -91417,7 +91458,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2790" />
+      <location filename="../QScintilla/MiniEditor.py" line="2791" />
       <location filename="../QScintilla/ShellWindow.py" line="1043" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
@@ -91425,35 +91466,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/MiniEditor.py" line="2797" />
       <location filename="../QScintilla/ShellWindow.py" line="1049" />
       <source>Zoom out on the text</source>
       <translation>Metin üzerinde küçült</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2799" />
+      <location filename="../QScintilla/MiniEditor.py" line="2800" />
       <location filename="../QScintilla/ShellWindow.py" line="1052" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;Küçült&lt;/b&gt;&lt;p&gt;Metin üzerinde küçült. Bu metni daha küçük yapar.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2809" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
       <location filename="../QScintilla/ShellWindow.py" line="1062" />
       <source>Zoom reset</source>
       <translation type="unfinished">Büyütmeyi sıfırla</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2811" />
+      <location filename="../QScintilla/MiniEditor.py" line="2812" />
       <location filename="../QScintilla/ShellWindow.py" line="1064" />
       <source>Zoom &amp;reset</source>
       <translation type="unfinished">Büyütmeyi sıfı&amp;rla</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2813" />
+      <location filename="../QScintilla/MiniEditor.py" line="2814" />
       <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
@@ -91461,42 +91502,42 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/MiniEditor.py" line="2821" />
       <location filename="../QScintilla/ShellWindow.py" line="1073" />
       <source>Reset the zoom of the text</source>
       <translation type="unfinished">Metin büyütme durumunu sıfırla</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2823" />
+      <location filename="../QScintilla/MiniEditor.py" line="2824" />
       <location filename="../QScintilla/ShellWindow.py" line="1076" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;Büyütmeyi başa döndür&lt;/b&gt;&lt;p&gt;Metin büyütmesini sıfırla. Bu büyütme katsayısını 100% e ayarlar.&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2834" />
+      <location filename="../QScintilla/MiniEditor.py" line="2835" />
       <location filename="../QScintilla/ShellWindow.py" line="1087" />
       <source>Zoom</source>
       <translation>Büyüt</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2836" />
+      <location filename="../QScintilla/MiniEditor.py" line="2837" />
       <location filename="../QScintilla/ShellWindow.py" line="1089" />
       <source>&amp;Zoom</source>
       <translation>Büyü&amp;t</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/MiniEditor.py" line="2844" />
       <location filename="../QScintilla/ShellWindow.py" line="1096" />
       <source>Zoom the text</source>
       <translation>Metni büyüt</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2846" />
+      <location filename="../QScintilla/MiniEditor.py" line="2847" />
       <location filename="../QScintilla/ShellWindow.py" line="1099" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation type="unfinished" />
@@ -91504,984 +91545,984 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="804" />
       <location filename="../ViewManager/ViewManager.py" line="802" />
-      <location filename="../QScintilla/MiniEditor.py" line="740" />
+      <location filename="../QScintilla/MiniEditor.py" line="741" />
       <source>Print Preview</source>
       <translation>Baskı Öngörünümü</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
+      <location filename="../QScintilla/MiniEditor.py" line="959" />
       <location filename="../QScintilla/MiniEditor.py" line="958" />
-      <location filename="../QScintilla/MiniEditor.py" line="957" />
       <source>Move left one word part</source>
       <translation>Bir kelime parçası sola taşı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
+      <location filename="../QScintilla/MiniEditor.py" line="975" />
       <location filename="../QScintilla/MiniEditor.py" line="974" />
-      <location filename="../QScintilla/MiniEditor.py" line="973" />
       <source>Move right one word part</source>
       <translation>bir kelime parçası sağa taşı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2128" />
-      <location filename="../QScintilla/MiniEditor.py" line="1018" />
-      <location filename="../QScintilla/MiniEditor.py" line="982" />
+      <location filename="../QScintilla/MiniEditor.py" line="2129" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/MiniEditor.py" line="983" />
       <source>Alt+Right</source>
       <translation>Alt+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1051" />
       <location filename="../QScintilla/MiniEditor.py" line="1050" />
-      <location filename="../QScintilla/MiniEditor.py" line="1049" />
       <source>Move to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="1063" />
       <source>Alt+Home</source>
       <translation>Alt+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
+      <location filename="../QScintilla/MiniEditor.py" line="1091" />
       <location filename="../QScintilla/MiniEditor.py" line="1090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1089" />
       <source>Scroll view down one line</source>
       <translation>Görüntüyü bir satır aşağı kaydır</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
+      <location filename="../QScintilla/MiniEditor.py" line="1103" />
       <location filename="../QScintilla/MiniEditor.py" line="1102" />
-      <location filename="../QScintilla/MiniEditor.py" line="1101" />
       <source>Scroll view up one line</source>
       <translation>Görüntüyü bir satır yukarı kaydır</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
+      <location filename="../QScintilla/MiniEditor.py" line="1115" />
       <location filename="../QScintilla/MiniEditor.py" line="1114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1113" />
       <source>Move up one paragraph</source>
       <translation>Bir paragraf yukarı taşı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
+      <location filename="../QScintilla/MiniEditor.py" line="1116" />
       <source>Alt+Up</source>
       <translation>Alt+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
+      <location filename="../QScintilla/MiniEditor.py" line="1127" />
       <location filename="../QScintilla/MiniEditor.py" line="1126" />
-      <location filename="../QScintilla/MiniEditor.py" line="1125" />
       <source>Move down one paragraph</source>
       <translation>Bir paragraf aşağı taşı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
+      <location filename="../QScintilla/MiniEditor.py" line="1128" />
       <source>Alt+Down</source>
       <translation>Alt+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
+      <location filename="../QScintilla/MiniEditor.py" line="1167" />
       <location filename="../QScintilla/MiniEditor.py" line="1166" />
-      <location filename="../QScintilla/MiniEditor.py" line="1165" />
       <source>Move to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1178" />
+      <location filename="../QScintilla/MiniEditor.py" line="1179" />
       <source>Ctrl+Home</source>
       <translation>Ctrl+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
+      <location filename="../QScintilla/MiniEditor.py" line="1187" />
       <location filename="../QScintilla/MiniEditor.py" line="1186" />
-      <location filename="../QScintilla/MiniEditor.py" line="1185" />
       <source>Move to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1198" />
+      <location filename="../QScintilla/MiniEditor.py" line="1199" />
       <source>Ctrl+End</source>
       <translation>Ctrl+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
+      <location filename="../QScintilla/MiniEditor.py" line="1219" />
       <location filename="../QScintilla/MiniEditor.py" line="1218" />
-      <location filename="../QScintilla/MiniEditor.py" line="1217" />
       <source>Unindent one level</source>
       <translation>Girintisiz birinci seviye</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
+      <location filename="../QScintilla/MiniEditor.py" line="1220" />
       <source>Shift+Tab</source>
       <translation>Shift+Tab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
+      <location filename="../QScintilla/MiniEditor.py" line="1271" />
       <location filename="../QScintilla/MiniEditor.py" line="1270" />
-      <location filename="../QScintilla/MiniEditor.py" line="1269" />
       <source>Extend selection up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
+      <location filename="../QScintilla/MiniEditor.py" line="1272" />
       <source>Shift+Up</source>
       <translation>Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1278" />
+      <location filename="../QScintilla/MiniEditor.py" line="1279" />
       <source>Meta+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
+      <location filename="../QScintilla/MiniEditor.py" line="1287" />
       <location filename="../QScintilla/MiniEditor.py" line="1286" />
-      <location filename="../QScintilla/MiniEditor.py" line="1285" />
       <source>Extend selection down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
+      <location filename="../QScintilla/MiniEditor.py" line="1288" />
       <source>Shift+Down</source>
       <translation>Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1294" />
+      <location filename="../QScintilla/MiniEditor.py" line="1295" />
       <source>Meta+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1304" />
-      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1305" />
+      <location filename="../QScintilla/MiniEditor.py" line="1302" />
       <source>Extend selection left one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1326" />
-      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1327" />
+      <location filename="../QScintilla/MiniEditor.py" line="1324" />
       <source>Extend selection right one word part</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1446" />
-      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1447" />
+      <location filename="../QScintilla/MiniEditor.py" line="1444" />
       <source>Extend selection up one paragraph</source>
       <translation>Seçimi bir paragraf yukarı genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1449" />
+      <location filename="../QScintilla/MiniEditor.py" line="1450" />
       <source>Alt+Shift+Up</source>
       <translation>Alt+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1462" />
-      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1463" />
+      <location filename="../QScintilla/MiniEditor.py" line="1460" />
       <source>Extend selection down one paragraph</source>
       <translation>Seçimi bir paragraf aşağı genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1465" />
+      <location filename="../QScintilla/MiniEditor.py" line="1466" />
       <source>Alt+Shift+Down</source>
       <translation>Alt+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1477" />
       <location filename="../QScintilla/MiniEditor.py" line="1476" />
-      <location filename="../QScintilla/MiniEditor.py" line="1475" />
       <source>Extend selection up one page</source>
       <translation>Seçimi bir sayfa yukarı genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
+      <location filename="../QScintilla/MiniEditor.py" line="1478" />
       <source>Shift+PgUp</source>
       <translation>Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="1489" />
       <location filename="../QScintilla/MiniEditor.py" line="1488" />
-      <location filename="../QScintilla/MiniEditor.py" line="1487" />
       <source>Extend selection down one page</source>
       <translation>Seçimi bir sayfa aşağı genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
+      <location filename="../QScintilla/MiniEditor.py" line="1490" />
       <source>Shift+PgDown</source>
       <translation>Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1496" />
+      <location filename="../QScintilla/MiniEditor.py" line="1497" />
       <source>Meta+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1506" />
-      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1507" />
+      <location filename="../QScintilla/MiniEditor.py" line="1504" />
       <source>Extend selection to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1516" />
+      <location filename="../QScintilla/MiniEditor.py" line="1517" />
       <source>Ctrl+Shift+Up</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1521" />
+      <location filename="../QScintilla/MiniEditor.py" line="1522" />
       <source>Ctrl+Shift+Home</source>
       <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1533" />
+      <location filename="../QScintilla/MiniEditor.py" line="1530" />
       <source>Extend selection to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1543" />
+      <location filename="../QScintilla/MiniEditor.py" line="1544" />
       <source>Ctrl+Shift+Down</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1549" />
+      <location filename="../QScintilla/MiniEditor.py" line="1550" />
       <source>Ctrl+Shift+End</source>
       <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1583" />
+      <location filename="../QScintilla/MiniEditor.py" line="1580" />
       <source>Delete previous character if not at start of line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1697" />
       <location filename="../QScintilla/MiniEditor.py" line="1696" />
-      <location filename="../QScintilla/MiniEditor.py" line="1695" />
       <source>Duplicate current line</source>
       <translation>Geçerli satırı çiftle</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
+      <location filename="../QScintilla/MiniEditor.py" line="1698" />
       <source>Ctrl+D</source>
       <translation>Ctrl+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1710" />
-      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1711" />
+      <location filename="../QScintilla/MiniEditor.py" line="1708" />
       <source>Swap current and previous lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1713" />
+      <location filename="../QScintilla/MiniEditor.py" line="1714" />
       <source>Ctrl+T</source>
       <translation>Ctrl+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="1725" />
       <location filename="../QScintilla/MiniEditor.py" line="1724" />
-      <location filename="../QScintilla/MiniEditor.py" line="1723" />
       <source>Reverse selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
+      <location filename="../QScintilla/MiniEditor.py" line="1726" />
       <source>Meta+Alt+R</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
+      <location filename="../QScintilla/MiniEditor.py" line="1737" />
       <location filename="../QScintilla/MiniEditor.py" line="1736" />
-      <location filename="../QScintilla/MiniEditor.py" line="1735" />
       <source>Cut current line</source>
       <translation>Geçerli satırı kes</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
+      <location filename="../QScintilla/MiniEditor.py" line="1738" />
       <source>Alt+Shift+L</source>
       <translation>Alt+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
+      <location filename="../QScintilla/MiniEditor.py" line="1749" />
       <location filename="../QScintilla/MiniEditor.py" line="1748" />
-      <location filename="../QScintilla/MiniEditor.py" line="1747" />
       <source>Copy current line</source>
       <translation>Geçerli satırı kopyala</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="1750" />
       <source>Ctrl+Shift+T</source>
       <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
+      <location filename="../QScintilla/MiniEditor.py" line="1761" />
       <location filename="../QScintilla/MiniEditor.py" line="1760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1759" />
       <source>Toggle insert/overtype</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
+      <location filename="../QScintilla/MiniEditor.py" line="1762" />
       <source>Ins</source>
       <translation>Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1775" />
+      <location filename="../QScintilla/MiniEditor.py" line="1772" />
       <source>Convert selection to lower case</source>
       <translation>Seçimi küçük olürük değiştir</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1777" />
+      <location filename="../QScintilla/MiniEditor.py" line="1778" />
       <source>Alt+Shift+U</source>
       <translation>Alt+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1791" />
+      <location filename="../QScintilla/MiniEditor.py" line="1788" />
       <source>Convert selection to upper case</source>
       <translation>Seçimi büyük olarak değiştir</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1793" />
+      <location filename="../QScintilla/MiniEditor.py" line="1794" />
       <source>Ctrl+Shift+U</source>
       <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
+      <location filename="../QScintilla/MiniEditor.py" line="1805" />
       <location filename="../QScintilla/MiniEditor.py" line="1804" />
-      <location filename="../QScintilla/MiniEditor.py" line="1803" />
       <source>Move to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1816" />
+      <location filename="../QScintilla/MiniEditor.py" line="1817" />
       <source>Alt+End</source>
       <translation>Alt+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1827" />
+      <location filename="../QScintilla/MiniEditor.py" line="1824" />
       <source>Extend selection to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
+      <location filename="../QScintilla/MiniEditor.py" line="1847" />
       <location filename="../QScintilla/MiniEditor.py" line="1846" />
-      <location filename="../QScintilla/MiniEditor.py" line="1845" />
       <source>Formfeed</source>
       <translation>Süreklibaskı kağıdı</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1872" />
-      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1873" />
+      <location filename="../QScintilla/MiniEditor.py" line="1870" />
       <source>Extend rectangular selection down one line</source>
       <translation>Köşeli seçimi bir sayfa aşağı genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1875" />
+      <location filename="../QScintilla/MiniEditor.py" line="1876" />
       <source>Alt+Ctrl+Down</source>
       <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1883" />
+      <location filename="../QScintilla/MiniEditor.py" line="1884" />
       <source>Meta+Alt+Shift+N</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1894" />
-      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1895" />
+      <location filename="../QScintilla/MiniEditor.py" line="1892" />
       <source>Extend rectangular selection up one line</source>
       <translation>Köşeli seçimi bir satır yukarı genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1897" />
+      <location filename="../QScintilla/MiniEditor.py" line="1898" />
       <source>Alt+Ctrl+Up</source>
       <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1905" />
+      <location filename="../QScintilla/MiniEditor.py" line="1906" />
       <source>Meta+Alt+Shift+P</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1916" />
-      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1917" />
+      <location filename="../QScintilla/MiniEditor.py" line="1914" />
       <source>Extend rectangular selection left one character</source>
       <translation>Köşeli seçimi bir karakter sola genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1919" />
+      <location filename="../QScintilla/MiniEditor.py" line="1920" />
       <source>Alt+Ctrl+Left</source>
       <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1927" />
+      <location filename="../QScintilla/MiniEditor.py" line="1928" />
       <source>Meta+Alt+Shift+B</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1938" />
-      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1939" />
+      <location filename="../QScintilla/MiniEditor.py" line="1936" />
       <source>Extend rectangular selection right one character</source>
       <translation>Köşeli seçimi bir karakter sağa genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1941" />
+      <location filename="../QScintilla/MiniEditor.py" line="1942" />
       <source>Alt+Ctrl+Right</source>
       <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1949" />
+      <location filename="../QScintilla/MiniEditor.py" line="1950" />
       <source>Meta+Alt+Shift+F</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1962" />
-      <location filename="../QScintilla/MiniEditor.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1963" />
+      <location filename="../QScintilla/MiniEditor.py" line="1958" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1975" />
+      <location filename="../QScintilla/MiniEditor.py" line="1976" />
       <source>Alt+Shift+Home</source>
       <translation>Alt+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1986" />
-      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1987" />
+      <location filename="../QScintilla/MiniEditor.py" line="1984" />
       <source>Extend rectangular selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1997" />
+      <location filename="../QScintilla/MiniEditor.py" line="1998" />
       <source>Meta+Alt+Shift+E</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2002" />
+      <location filename="../QScintilla/MiniEditor.py" line="2003" />
       <source>Alt+Shift+End</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2012" />
-      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2013" />
+      <location filename="../QScintilla/MiniEditor.py" line="2010" />
       <source>Extend rectangular selection up one page</source>
       <translation>Köşeli seçimi bir sayfa yukarı genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2015" />
+      <location filename="../QScintilla/MiniEditor.py" line="2016" />
       <source>Alt+Shift+PgUp</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2028" />
-      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2029" />
+      <location filename="../QScintilla/MiniEditor.py" line="2026" />
       <source>Extend rectangular selection down one page</source>
       <translation>Köşeli seçimi bir sayfa aşağı genişlet</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2031" />
+      <location filename="../QScintilla/MiniEditor.py" line="2032" />
       <source>Alt+Shift+PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2039" />
+      <location filename="../QScintilla/MiniEditor.py" line="2040" />
       <source>Meta+Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2515" />
       <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2513" />
+      <location filename="../QScintilla/MiniEditor.py" line="2049" />
       <location filename="../QScintilla/MiniEditor.py" line="2048" />
-      <location filename="../QScintilla/MiniEditor.py" line="2047" />
       <source>Duplicate current selection</source>
       <translation>Geçerli seçimi çoğalt</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2516" />
+      <location filename="../QScintilla/MiniEditor.py" line="2050" />
       <source>Ctrl+Shift+D</source>
       <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2063" />
-      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2061" />
       <source>Scroll to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
+      <location filename="../QScintilla/MiniEditor.py" line="2083" />
       <location filename="../QScintilla/MiniEditor.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="2081" />
       <source>Scroll to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2101" />
-      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2102" />
+      <location filename="../QScintilla/MiniEditor.py" line="2099" />
       <source>Scroll vertically to center current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2111" />
+      <location filename="../QScintilla/MiniEditor.py" line="2112" />
       <source>Meta+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
+      <location filename="../QScintilla/MiniEditor.py" line="2121" />
       <location filename="../QScintilla/MiniEditor.py" line="2120" />
-      <location filename="../QScintilla/MiniEditor.py" line="2119" />
       <source>Move to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2139" />
-      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2140" />
+      <location filename="../QScintilla/MiniEditor.py" line="2137" />
       <source>Extend selection to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2162" />
-      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2163" />
+      <location filename="../QScintilla/MiniEditor.py" line="2160" />
       <source>Move to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2179" />
-      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2180" />
+      <location filename="../QScintilla/MiniEditor.py" line="2177" />
       <source>Extend selection to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2196" />
-      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2197" />
+      <location filename="../QScintilla/MiniEditor.py" line="2194" />
       <source>Move to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2206" />
+      <location filename="../QScintilla/MiniEditor.py" line="2207" />
       <source>Meta+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2218" />
+      <location filename="../QScintilla/MiniEditor.py" line="2215" />
       <source>Extend selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2228" />
+      <location filename="../QScintilla/MiniEditor.py" line="2229" />
       <source>Meta+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2241" />
-      <location filename="../QScintilla/MiniEditor.py" line="2237" />
+      <location filename="../QScintilla/MiniEditor.py" line="2242" />
+      <location filename="../QScintilla/MiniEditor.py" line="2238" />
       <source>Extend rectangular selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2253" />
+      <location filename="../QScintilla/MiniEditor.py" line="2254" />
       <source>Meta+Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2265" />
-      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2266" />
+      <location filename="../QScintilla/MiniEditor.py" line="2263" />
       <source>Extend selection to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2288" />
-      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2289" />
+      <location filename="../QScintilla/MiniEditor.py" line="2286" />
       <source>Move to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2306" />
-      <location filename="../QScintilla/MiniEditor.py" line="2302" />
+      <location filename="../QScintilla/MiniEditor.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="2303" />
       <source>Extend selection to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2325" />
-      <location filename="../QScintilla/MiniEditor.py" line="2321" />
+      <location filename="../QScintilla/MiniEditor.py" line="2326" />
+      <location filename="../QScintilla/MiniEditor.py" line="2322" />
       <source>Move to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2345" />
-      <location filename="../QScintilla/MiniEditor.py" line="2340" />
+      <location filename="../QScintilla/MiniEditor.py" line="2346" />
+      <location filename="../QScintilla/MiniEditor.py" line="2341" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2364" />
-      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2365" />
+      <location filename="../QScintilla/MiniEditor.py" line="2362" />
       <source>Move to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2381" />
-      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2382" />
+      <location filename="../QScintilla/MiniEditor.py" line="2379" />
       <source>Extend selection to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="2397" />
       <location filename="../QScintilla/MiniEditor.py" line="2396" />
-      <location filename="../QScintilla/MiniEditor.py" line="2395" />
       <source>Stuttered move up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2411" />
-      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2412" />
+      <location filename="../QScintilla/MiniEditor.py" line="2409" />
       <source>Stuttered extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2428" />
-      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2429" />
+      <location filename="../QScintilla/MiniEditor.py" line="2426" />
       <source>Stuttered move down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2446" />
+      <location filename="../QScintilla/MiniEditor.py" line="2443" />
       <source>Stuttered extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2462" />
-      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2463" />
+      <location filename="../QScintilla/MiniEditor.py" line="2460" />
       <source>Delete right to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2472" />
+      <location filename="../QScintilla/MiniEditor.py" line="2473" />
       <source>Alt+Del</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2484" />
+      <location filename="../QScintilla/MiniEditor.py" line="2481" />
       <source>Move selected lines up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2500" />
-      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2501" />
+      <location filename="../QScintilla/MiniEditor.py" line="2498" />
       <source>Move selected lines down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2546" />
+      <location filename="../QScintilla/MiniEditor.py" line="2547" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2572" />
+      <location filename="../QScintilla/MiniEditor.py" line="2573" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2602" />
+      <location filename="../QScintilla/MiniEditor.py" line="2603" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2616" />
-      <location filename="../QScintilla/MiniEditor.py" line="2614" />
+      <location filename="../QScintilla/MiniEditor.py" line="2617" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Clear search markers</source>
       <translation>Arama işaretlerini temizle</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2618" />
+      <location filename="../QScintilla/MiniEditor.py" line="2619" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation>Ctrl+3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2627" />
+      <location filename="../QScintilla/MiniEditor.py" line="2628" />
       <source>Clear all displayed search markers</source>
       <translation>Gösterilen tüm arama işaretlerin temizle</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2632" />
+      <location filename="../QScintilla/MiniEditor.py" line="2633" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2642" />
+      <location filename="../QScintilla/MiniEditor.py" line="2643" />
       <source>Replace</source>
       <translation>Yerdeğiştir</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2644" />
       <source>&amp;Replace...</source>
       <translation>&amp;Yerdeğiştir...</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2645" />
+      <location filename="../QScintilla/MiniEditor.py" line="2646" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation>Ctrl+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2652" />
+      <location filename="../QScintilla/MiniEditor.py" line="2653" />
       <source>Replace some text</source>
       <translation>Bazı metinleri değiştir</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2655" />
+      <location filename="../QScintilla/MiniEditor.py" line="2656" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2669" />
-      <location filename="../QScintilla/MiniEditor.py" line="2667" />
+      <location filename="../QScintilla/MiniEditor.py" line="2670" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Replace and Search</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2671" />
+      <location filename="../QScintilla/MiniEditor.py" line="2672" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2680" />
+      <location filename="../QScintilla/MiniEditor.py" line="2681" />
       <source>Replace the found text and search the next occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2685" />
+      <location filename="../QScintilla/MiniEditor.py" line="2686" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2701" />
-      <location filename="../QScintilla/MiniEditor.py" line="2699" />
+      <location filename="../QScintilla/MiniEditor.py" line="2702" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2703" />
+      <location filename="../QScintilla/MiniEditor.py" line="2704" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2712" />
+      <location filename="../QScintilla/MiniEditor.py" line="2713" />
       <source>Replace the found text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2715" />
+      <location filename="../QScintilla/MiniEditor.py" line="2716" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2728" />
-      <location filename="../QScintilla/MiniEditor.py" line="2726" />
+      <location filename="../QScintilla/MiniEditor.py" line="2729" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Replace All</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2730" />
+      <location filename="../QScintilla/MiniEditor.py" line="2731" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2739" />
+      <location filename="../QScintilla/MiniEditor.py" line="2740" />
       <source>Replace search text occurrences</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2742" />
+      <location filename="../QScintilla/MiniEditor.py" line="2743" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
--- a/src/eric7/i18n/eric7_zh_CN.ts	Sat Apr 15 11:12:30 2023 +0200
+++ b/src/eric7/i18n/eric7_zh_CN.ts	Sat Apr 15 18:22:09 2023 +0200
@@ -1819,77 +1819,77 @@
   <context>
     <name>BaseDevice</name>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="190" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="196" />
       <source>Device Data Not Available</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="191" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="197" />
       <source>&lt;p&gt;The device data is not available. Try to connect to the device again. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="244" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="250" />
       <source>Unsupported Device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="254" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="260" />
       <source>REPL is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="273" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="279" />
       <source>Plotter is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="292" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="298" />
       <source>Running scripts is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="311" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="317" />
       <source>File Manager is not supported by this device.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="366" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="372" />
       <source>Select Device Directory</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="367" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="373" />
       <source>Select the directory for the connected device:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="513" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="519" />
       <source>Detected an error without indications.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1400" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1464" />
       <source>Operation not supported.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>Yes</source>
       <translation type="unfinished">是</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1708" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1772" />
       <source>No</source>
       <translation type="unfinished">否</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>yes</source>
       <translation type="unfinished">是</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/DeviceBase.py" line="1710" />
+      <location filename="../MicroPython/Devices/DeviceBase.py" line="1774" />
       <source>no</source>
       <translation type="unfinished">否</translation>
     </message>
@@ -4071,17 +4071,17 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="141" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
       <source>WIZnet 5x00 Ethernet</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="142" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="143" />
       <source>&lt;p&gt;Support for &lt;b&gt;WIZnet 5x00&lt;/b&gt; Ethernet boards could not be detected. Is the module &lt;b&gt;adafruit_wiznet5k&lt;/b&gt; installed?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="176" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="177" />
       <source>CircuitPython</source>
       <translation>CircuitPython</translation>
     </message>
@@ -4249,114 +4249,114 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1127" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="864" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1128" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="865" />
       <source>unknown ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1576" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1499" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1039" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="960" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1577" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1500" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1040" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="961" />
       <source>The device volume is not available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1003" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="975" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
       <source>Write WiFi Credentials</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1539" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1005" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="977" />
+      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1546" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1012" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="984" />
+      <source>Aborted</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1195" />
+      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1266" />
+      <source>CircuitPython does not support reporting of connected clients.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
+      <source>Active</source>
+      <translation type="unfinished">活动的</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
+      <source>Connected</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
+      <source>IPv4 Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
+      <source>Netmask</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
+      <source>Gateway</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
+      <source>DNS</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1677" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
+      <source>MAC-Address</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
+      <source>Chip Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1358" />
+      <source>max. Sockets</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1538" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1004" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="976" />
-      <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be replaced?&lt;/p&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1545" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1011" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="983" />
-      <source>Aborted</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1194" />
-      <source>CircuitPython does not support setting the IPv4 parameters of the WiFi access point.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1265" />
-      <source>CircuitPython does not support reporting of connected clients.</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1674" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1349" />
-      <source>Active</source>
-      <translation type="unfinished">活动的</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1680" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1350" />
-      <source>Connected</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1351" />
-      <source>IPv4 Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1352" />
-      <source>Netmask</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1353" />
-      <source>Gateway</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1354" />
-      <source>DNS</source>
+      <source>Write Connect Script</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1676" />
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1355" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1356" />
-      <source>Chip Type</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1357" />
-      <source>max. Sockets</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1537" />
-      <source>Write Connect Script</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1675" />
       <source>Name</source>
       <translation type="unfinished">名称</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1678" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1679" />
       <source>Address Type</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1681" />
+      <location filename="../MicroPython/Devices/CircuitPythonDevices.py" line="1682" />
       <source>Advertising</source>
       <translation type="unfinished" />
     </message>
@@ -10429,12 +10429,12 @@
       <translation type="unfinished">&lt;p&gt;调试器后端无法启动。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1378" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1380" />
       <source>Debug Protocol Error</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Debugger/DebuggerInterfacePython.py" line="1379" />
+      <location filename="../Debugger/DebuggerInterfacePython.py" line="1381" />
       <source>&lt;p&gt;The response received from the debugger backend could not be decoded. Please report this issue with the received data to the eric bugs email address.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;&lt;p&gt;Data:&lt;br/&gt;{1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -12274,7 +12274,7 @@
       <translation>取消注释</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="9146" />
+      <location filename="../QScintilla/Editor.py" line="9154" />
       <location filename="../QScintilla/Editor.py" line="932" />
       <source>Generate Docstring</source>
       <translation type="unfinished" />
@@ -12547,7 +12547,7 @@
       <translation type="unfinished">拼写法</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8264" />
+      <location filename="../QScintilla/Editor.py" line="8272" />
       <location filename="../QScintilla/Editor.py" line="1328" />
       <source>Check spelling...</source>
       <translation>正在进行拼写检查…</translation>
@@ -12608,7 +12608,7 @@
       <translation>编辑断点…</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5923" />
+      <location filename="../QScintilla/Editor.py" line="5932" />
       <location filename="../QScintilla/Editor.py" line="1413" />
       <source>Enable breakpoint</source>
       <translation>允许断点</translation>
@@ -12842,356 +12842,356 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5097" />
+      <location filename="../QScintilla/Editor.py" line="5106" />
       <source>Autocompletion</source>
       <translation>自动完成</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5098" />
+      <location filename="../QScintilla/Editor.py" line="5107" />
       <source>Autocompletion is not available because there is no autocompletion source set.</source>
       <translation>自动完成无效,没有设定自动完成源。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5226" />
+      <location filename="../QScintilla/Editor.py" line="5235" />
       <source>Auto-Completion Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5227" />
+      <location filename="../QScintilla/Editor.py" line="5236" />
       <source>The completion list provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5519" />
+      <location filename="../QScintilla/Editor.py" line="5528" />
       <source>Call-Tips Provider</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5520" />
+      <location filename="../QScintilla/Editor.py" line="5529" />
       <source>The call-tips provider '{0}' was already registered. Ignoring duplicate request.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="5927" />
+      <location filename="../QScintilla/Editor.py" line="5936" />
       <source>Disable breakpoint</source>
       <translation>去除断点</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6307" />
+      <location filename="../QScintilla/Editor.py" line="6315" />
       <source>Code Coverage</source>
       <translation>代码覆盖率</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6308" />
+      <location filename="../QScintilla/Editor.py" line="6316" />
       <source>Please select a coverage file</source>
       <translation>请选择一个覆盖率文件</translation>
     </message>
     <message>
+      <location filename="../QScintilla/Editor.py" line="6391" />
       <location filename="../QScintilla/Editor.py" line="6383" />
-      <location filename="../QScintilla/Editor.py" line="6375" />
       <source>Show Code Coverage Annotations</source>
       <translation>显示代码覆盖率注解</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6376" />
-      <source>All lines have been covered.</source>
-      <translation>所有行均被已覆盖。</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/Editor.py" line="6384" />
+      <source>All lines have been covered.</source>
+      <translation>所有行均被已覆盖。</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/Editor.py" line="6392" />
       <source>There is no coverage file available.</source>
       <translation>没有有效的覆盖率文件。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6488" />
+      <location filename="../QScintilla/Editor.py" line="6496" />
       <source>Profile Data</source>
       <translation>剖析数据</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6489" />
+      <location filename="../QScintilla/Editor.py" line="6497" />
       <source>Please select a profile file</source>
       <translation>请选择一个剖析文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6650" />
-      <location filename="../QScintilla/Editor.py" line="6644" />
+      <location filename="../QScintilla/Editor.py" line="6658" />
+      <location filename="../QScintilla/Editor.py" line="6652" />
       <source>Syntax Error</source>
       <translation>语法错误</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6651" />
+      <location filename="../QScintilla/Editor.py" line="6659" />
       <source>No syntax error message available.</source>
       <translation>语法错误消息无效。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
-      <location filename="../QScintilla/Editor.py" line="6856" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
+      <location filename="../QScintilla/Editor.py" line="6864" />
       <source>Warning</source>
       <translation>警告</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6862" />
+      <location filename="../QScintilla/Editor.py" line="6870" />
       <source>No warning messages available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6926" />
+      <location filename="../QScintilla/Editor.py" line="6934" />
       <source>Style: {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6929" />
+      <location filename="../QScintilla/Editor.py" line="6937" />
       <source>Warning: {0}</source>
       <translation>警告:{0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="6936" />
+      <location filename="../QScintilla/Editor.py" line="6944" />
       <source>Error: {0}</source>
       <translation>错误:{0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Macro Name</source>
       <translation>宏名称</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7043" />
+      <location filename="../QScintilla/Editor.py" line="7051" />
       <source>Select a macro name:</source>
       <translation>选择一个宏名称:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7069" />
+      <location filename="../QScintilla/Editor.py" line="7077" />
       <source>Load macro file</source>
       <translation>输入宏文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7115" />
-      <location filename="../QScintilla/Editor.py" line="7071" />
+      <location filename="../QScintilla/Editor.py" line="7123" />
+      <location filename="../QScintilla/Editor.py" line="7079" />
       <source>Macro files (*.macro)</source>
       <translation>宏文件 (*.macro)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7093" />
-      <location filename="../QScintilla/Editor.py" line="7083" />
+      <location filename="../QScintilla/Editor.py" line="7101" />
+      <location filename="../QScintilla/Editor.py" line="7091" />
       <source>Error loading macro</source>
       <translation>载入宏文件出错</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7084" />
+      <location filename="../QScintilla/Editor.py" line="7092" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7094" />
+      <location filename="../QScintilla/Editor.py" line="7102" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7113" />
+      <location filename="../QScintilla/Editor.py" line="7121" />
       <source>Save macro file</source>
       <translation>保存宏文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7131" />
+      <location filename="../QScintilla/Editor.py" line="7139" />
       <source>Save macro</source>
       <translation>保存宏</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7132" />
+      <location filename="../QScintilla/Editor.py" line="7140" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation>&lt;p&gt;宏文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7147" />
+      <location filename="../QScintilla/Editor.py" line="7155" />
       <source>Error saving macro</source>
       <translation>保存宏出错</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7148" />
+      <location filename="../QScintilla/Editor.py" line="7156" />
       <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7161" />
+      <location filename="../QScintilla/Editor.py" line="7169" />
       <source>Start Macro Recording</source>
       <translation>开始宏录制</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7162" />
+      <location filename="../QScintilla/Editor.py" line="7170" />
       <source>Macro recording is already active. Start new?</source>
       <translation>宏录制已激活。开始录制新宏?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7188" />
+      <location filename="../QScintilla/Editor.py" line="7196" />
       <source>Macro Recording</source>
       <translation>宏录制</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7189" />
+      <location filename="../QScintilla/Editor.py" line="7197" />
       <source>Enter name of the macro:</source>
       <translation>输入宏名称:</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7340" />
+      <location filename="../QScintilla/Editor.py" line="7348" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7346" />
+      <location filename="../QScintilla/Editor.py" line="7354" />
       <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
       <translation>&lt;br&gt;&lt;b&gt;警告:&lt;/b&gt;您在重新打开时将丢失所有更改。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7353" />
+      <location filename="../QScintilla/Editor.py" line="7361" />
       <source>File changed</source>
       <translation>文件已改变</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7403" />
+      <location filename="../QScintilla/Editor.py" line="7411" />
       <source>{0} (ro)</source>
       <translation>{0}(只读)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7708" />
+      <location filename="../QScintilla/Editor.py" line="7716" />
       <source>Drop Error</source>
       <translation>降落误差</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7709" />
+      <location filename="../QScintilla/Editor.py" line="7717" />
       <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
       <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; 不是一个文件。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7729" />
+      <location filename="../QScintilla/Editor.py" line="7737" />
       <source>Resources</source>
       <translation>资源</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7731" />
+      <location filename="../QScintilla/Editor.py" line="7739" />
       <source>Add file...</source>
       <translation>添加文件…</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7732" />
+      <location filename="../QScintilla/Editor.py" line="7740" />
       <source>Add files...</source>
       <translation>添加文件…</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7733" />
+      <location filename="../QScintilla/Editor.py" line="7741" />
       <source>Add aliased file...</source>
       <translation>添加别名文件…</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7735" />
+      <location filename="../QScintilla/Editor.py" line="7743" />
       <source>Add localized resource...</source>
       <translation>添加本地资源…</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7738" />
+      <location filename="../QScintilla/Editor.py" line="7746" />
       <source>Add resource frame</source>
       <translation>添加资源结构</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7757" />
+      <location filename="../QScintilla/Editor.py" line="7765" />
       <source>Add file resource</source>
       <translation>添加文件资源</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7771" />
+      <location filename="../QScintilla/Editor.py" line="7779" />
       <source>Add file resources</source>
       <translation>添加多个文件资源</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7795" />
-      <location filename="../QScintilla/Editor.py" line="7789" />
+      <location filename="../QScintilla/Editor.py" line="7803" />
+      <location filename="../QScintilla/Editor.py" line="7797" />
       <source>Add aliased file resource</source>
       <translation>添加别名文件资源</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7796" />
+      <location filename="../QScintilla/Editor.py" line="7804" />
       <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7871" />
+      <location filename="../QScintilla/Editor.py" line="7879" />
       <source>Package Diagram</source>
       <translation>程序包图</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7872" />
+      <location filename="../QScintilla/Editor.py" line="7880" />
       <source>Include class attributes?</source>
       <translation>包含类属性?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7892" />
+      <location filename="../QScintilla/Editor.py" line="7900" />
       <source>Imports Diagram</source>
       <translation>引用图</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7893" />
+      <location filename="../QScintilla/Editor.py" line="7901" />
       <source>Include imports from external modules?</source>
       <translation>从外部模块包含引用?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7912" />
+      <location filename="../QScintilla/Editor.py" line="7920" />
       <source>Application Diagram</source>
       <translation>应用程序图</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="7913" />
+      <location filename="../QScintilla/Editor.py" line="7921" />
       <source>Include module names?</source>
       <translation>包含模块名?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8268" />
+      <location filename="../QScintilla/Editor.py" line="8276" />
       <source>Add to dictionary</source>
       <translation>添加到文件夹</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8270" />
+      <location filename="../QScintilla/Editor.py" line="8278" />
       <source>Ignore All</source>
       <translation>全部忽略</translation>
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8688" />
+      <location filename="../QScintilla/Editor.py" line="8696" />
       <source>Sort Lines</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8689" />
+      <location filename="../QScintilla/Editor.py" line="8697" />
       <source>The selection contains illegal data for a numerical sort.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8782" />
+      <location filename="../QScintilla/Editor.py" line="8790" />
       <source>Register Mouse Click Handler</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8783" />
+      <location filename="../QScintilla/Editor.py" line="8791" />
       <source>A mouse click handler for "{0}" was already registered by "{1}". Aborting request by "{2}"...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8879" />
+      <location filename="../QScintilla/Editor.py" line="8887" />
       <source>{0:4d}    {1}</source>
       <comment>line number, source code</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8885" />
+      <location filename="../QScintilla/Editor.py" line="8893" />
       <source>{0:4d}    {1}
     =&gt;  {2}</source>
       <comment>line number, source code, file name</comment>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8953" />
+      <location filename="../QScintilla/Editor.py" line="8961" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/Editor.py" line="8954" />
+      <location filename="../QScintilla/Editor.py" line="8962" />
       <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" />
     </message>
@@ -18255,12 +18255,12 @@
   <context>
     <name>EricApplication</name>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="222" />
+      <location filename="../EricWidgets/EricApplication.py" line="226" />
       <source>Loading Style Sheet</source>
       <translation type="unfinished">样式表载入中</translation>
     </message>
     <message>
-      <location filename="../EricWidgets/EricApplication.py" line="225" />
+      <location filename="../EricWidgets/EricApplication.py" line="229" />
       <source>&lt;p&gt;The Qt Style Sheet file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
@@ -23184,7 +23184,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2719" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2721" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="1639" />
       <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
       <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
@@ -23247,370 +23247,370 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2277" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2279" />
       <source>Branching in the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2319" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2321" />
       <source>Delete Remote Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2340" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2342" />
       <source>Current Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2341" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2343" />
       <source>&lt;p&gt;The current branch is &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2405" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2387" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2369" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2407" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
       <source>Create Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2371" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2373" />
       <source>Git Bundle Files (*.bundle)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2388" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2390" />
       <source>&lt;p&gt;The Git bundle file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2434" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2423" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2436" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
       <source>Verify Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2569" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2522" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2456" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2427" />
+      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
+      <source>List Bundle Heads</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2567" />
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2520" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2454" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2425" />
-      <source>Git Bundle Files (*.bundle);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2452" />
-      <source>List Bundle Heads</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2518" />
       <source>Apply Bundle</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2539" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2588" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2541" />
       <source>Applying a bundle file (fetch)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2622" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2624" />
       <source>Bisect subcommand ({0}) invalid.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2821" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2823" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2667" />
       <source>Git Bisect ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2718" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2720" />
       <source>Process Generation Error</source>
       <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2764" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2747" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2729" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2766" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2749" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
       <source>Create Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2731" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2733" />
       <source>Git Bisect Replay Files (*.replay)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2748" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2750" />
       <source>&lt;p&gt;The Git bisect replay file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2765" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2767" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2784" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
       <source>Edit Bisect Replay File</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2788" />
+      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2812" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2786" />
-      <source>Git Bisect Replay Files (*.replay);;All Files (*)</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2810" />
       <source>Bisect Replay</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3154" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2984" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3156" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="2986" />
       <source>Show Remote Info</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3040" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3042" />
       <source>Rename Remote Repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3041" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3043" />
       <source>Enter new name for remote repository:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3176" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3178" />
       <source>Show Shortlog</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3233" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3235" />
       <source>Cherry-pick</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3264" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3266" />
       <source>Copy Changesets (Continue)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3287" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3289" />
       <source>Copy Changesets (Quit)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3311" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3313" />
       <source>Copy Changesets (Cancel)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3389" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3391" />
       <source>Saving stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3591" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3429" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3593" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3431" />
       <source>Show Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3592" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3552" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3503" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3463" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3430" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3594" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3554" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3505" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3465" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3432" />
       <source>Select a stash (empty for latest stash):</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3502" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3462" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3504" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3464" />
       <source>Restore Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3516" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3518" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3478" />
       <source>Restoring stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3551" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3553" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3542" />
       <source>Create Branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3541" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3543" />
       <source>Enter a branch name to restore a stash to:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3566" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3568" />
       <source>Creating branch</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3602" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3604" />
       <source>Delete Stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3603" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3605" />
       <source>Do you really want to delete the stash &lt;b&gt;{0}&lt;/b&gt;?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3613" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3615" />
       <source>Deleting stash</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3633" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3635" />
       <source>Delete All Stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3634" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3636" />
       <source>Do you really want to delete all stashes?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3640" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3642" />
       <source>Deleting all stashes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3700" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3702" />
       <source>Showing the combined configuration settings</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3722" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3724" />
       <source>Verifying the integrity of the Git repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3743" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3745" />
       <source>Performing Repository Housekeeping</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3784" />
-      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3786" />
+      <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Statistics&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3788" />
       <source>&lt;tr&gt;&lt;td&gt;Number of loose objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3791" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3793" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by loose objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3797" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3799" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packed objects: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3803" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3805" />
       <source>&lt;tr&gt;&lt;td&gt;Number of packs: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3808" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3810" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by packed objects: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3814" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3816" />
       <source>&lt;tr&gt;&lt;td&gt;Packed objects waiting for pruning: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3820" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3822" />
       <source>&lt;tr&gt;&lt;td&gt;Garbage files: &lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3825" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3827" />
       <source>&lt;tr&gt;&lt;td&gt;Disk space used by garbage files: &lt;/td&gt;&lt;td&gt;{0} KiB&lt;/td&gt;&lt;/tr&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3832" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3834" />
       <source>&lt;p&gt;&lt;b&gt;No statistics available.&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3898" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3900" />
       <source>Creating Archive</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3938" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="3940" />
       <source>Add Submodule</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4004" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4006" />
       <source>List Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4005" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4007" />
       <source>No submodules defined for the project.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4018" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4020" />
       <source>All</source>
       <translation type="unfinished">全部</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4022" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4024" />
       <source>Submodule Path</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4023" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4025" />
       <source>Select a submodule path:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4072" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4074" />
       <source>Initialize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4105" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4107" />
       <source>Unregister Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4175" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4136" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4177" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4138" />
       <source>Update Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4205" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4207" />
       <source>Synchronize Submodules</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4259" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/git.py" line="4261" />
       <source>Submodules Summary</source>
       <translation type="unfinished" />
     </message>
@@ -25941,83 +25941,83 @@
   <context>
     <name>GitProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="586" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="473" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="426" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="589" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="476" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="429" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="324" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="184" />
       <source>Version Control</source>
       <translation type="unfinished">版本控制</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="602" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="489" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="605" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="492" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="340" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="200" />
       <source>Commit changes to repository...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="609" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="496" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="612" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="499" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="347" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="207" />
       <source>Add/Stage to repository</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="614" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="501" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="617" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="504" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="352" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="212" />
       <source>Unstage changes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="621" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="508" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="624" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="511" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="359" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="219" />
       <source>Remove from repository (and disk)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="365" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="225" />
       <source>Remove from repository only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="513" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="230" />
       <source>Copy</source>
       <translation type="unfinished">复制</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="515" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="518" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="232" />
       <source>Move</source>
       <translation type="unfinished">移动</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="523" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="237" />
       <source>Show log browser</source>
       <translation type="unfinished">显示日志浏览器</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="628" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="527" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="372" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="244" />
       <source>Show status</source>
       <translation type="unfinished">显示状态</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="635" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="534" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="537" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="379" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="251" />
       <source>Show differences</source>
@@ -26029,8 +26029,8 @@
       <translation type="unfinished">并排显示差异</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="641" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="540" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="543" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="385" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="263" />
       <source>Show differences (extended)</source>
@@ -26057,71 +26057,71 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="648" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="547" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="651" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="550" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="392" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="289" />
       <source>Revert changes</source>
       <translation type="unfinished">还原改变</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="656" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="555" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="441" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
-      <source>Select all local file entries</source>
-      <translation type="unfinished">选择所有本地文件条目</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="558" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="444" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
-      <source>Select all versioned file entries</source>
-      <translation type="unfinished">选择所有版本化的文件条目</translation>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="400" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="295" />
+      <source>Select all local file entries</source>
+      <translation type="unfinished">选择所有本地文件条目</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="662" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="561" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="447" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="403" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="298" />
+      <source>Select all versioned file entries</source>
+      <translation type="unfinished">选择所有版本化的文件条目</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="665" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="564" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="450" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="406" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="301" />
       <source>Select all local directory entries</source>
       <translation type="unfinished">选择所有本地文件夹条目</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="666" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="451" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="454" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="305" />
       <source>Select all versioned directory entries</source>
       <translation type="unfinished">选择所有版本化的文件夹条目</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="569" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="455" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="572" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="414" />
       <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="309" />
       <source>Configure...</source>
       <translation type="unfinished">配置…</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="709" />
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="712" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="699" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="839" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="842" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsGit/ProjectBrowserHelper.py" line="843" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
@@ -30426,27 +30426,27 @@
   <context>
     <name>Globals</name>
     <message>
-      <location filename="../Globals/__init__.py" line="198" />
+      <location filename="../Globals/__init__.py" line="199" />
       <source>{0:4.2f} Bytes</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="201" />
+      <location filename="../Globals/__init__.py" line="202" />
       <source>{0:4.2f} KiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="204" />
+      <location filename="../Globals/__init__.py" line="205" />
       <source>{0:4.2f} MiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="207" />
+      <location filename="../Globals/__init__.py" line="208" />
       <source>{0:4.2f} GiB</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Globals/__init__.py" line="210" />
+      <location filename="../Globals/__init__.py" line="211" />
       <source>{0:4.2f} TiB</source>
       <translation type="unfinished" />
     </message>
@@ -36645,75 +36645,75 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="692" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="579" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="532" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="582" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="535" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="431" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="289" />
       <source>Version Control</source>
       <translation>版本控制</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="708" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="595" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="598" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="305" />
       <source>Commit changes to repository...</source>
       <translation>将更改提交到仓库中…</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="603" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="606" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="455" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="313" />
       <source>Add to repository</source>
       <translation>添加到仓库</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="722" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="725" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="461" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="319" />
       <source>Remove from repository (and disk)</source>
       <translation>从仓库(和磁盘)中移除</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="986" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="973" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="989" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="976" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="467" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="325" />
       <source>Remove from repository only</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="614" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="617" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="330" />
       <source>Copy</source>
       <translation type="unfinished">复制</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="616" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="619" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="332" />
       <source>Move</source>
       <translation type="unfinished">移动</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="621" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="624" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="337" />
       <source>Show log browser</source>
       <translation>显示日志浏览器</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="729" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="732" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="474" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="344" />
       <source>Show status</source>
       <translation>显示状态</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="736" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="739" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="481" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="351" />
       <source>Show differences</source>
@@ -36725,8 +36725,8 @@
       <translation type="unfinished">并排显示差异</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="641" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="644" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="487" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="363" />
       <source>Show differences (extended)</source>
@@ -36753,95 +36753,95 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="749" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="752" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="494" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="389" />
       <source>Revert changes</source>
       <translation type="unfinished">还原改变</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="753" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="652" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="756" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="655" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="498" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="393" />
       <source>Conflicts resolved</source>
       <translation type="unfinished">冲突已解决</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="755" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="654" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="758" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="657" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="500" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="395" />
       <source>Conflicts unresolved</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="757" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="656" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="760" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="659" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="502" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="397" />
       <source>Re-Merge</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="761" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="660" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="547" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
-      <source>Select all local file entries</source>
-      <translation type="unfinished">选择所有本地文件条目</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="764" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="663" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="550" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
-      <source>Select all versioned file entries</source>
-      <translation type="unfinished">选择所有版本化的文件条目</translation>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="506" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="401" />
+      <source>Select all local file entries</source>
+      <translation type="unfinished">选择所有本地文件条目</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="767" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="553" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="509" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="404" />
+      <source>Select all versioned file entries</source>
+      <translation type="unfinished">选择所有版本化的文件条目</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="770" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="669" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="556" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="407" />
       <source>Select all local directory entries</source>
       <translation type="unfinished">选择所有本地文件夹条目</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="670" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="557" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="673" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="560" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="411" />
       <source>Select all versioned directory entries</source>
       <translation type="unfinished">选择所有版本化的文件夹条目</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="775" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="674" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="561" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="778" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="677" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="564" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="520" />
       <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="415" />
       <source>Configure...</source>
       <translation>配置…</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="890" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="893" />
       <source>Create {0} file</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="891" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="894" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="987" />
-      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="974" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="990" />
+      <location filename="../Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py" line="977" />
       <source>Do you really want to remove these files from the repository?</source>
       <translation type="unfinished" />
     </message>
@@ -51045,43 +51045,43 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="594" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="592" />
       <source>Clear</source>
       <translation type="unfinished">清除</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="599" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="597" />
       <source>Copy</source>
       <translation type="unfinished">复制</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="603" />
       <source>Paste</source>
       <translation type="unfinished">粘贴</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="612" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="610" />
       <source>Select All</source>
       <translation type="unfinished">全选</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="638" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="636" />
       <source>Press to disconnect the current device</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.ui" line="0" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="643" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="641" />
       <source>Press to connect the selected device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="675" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="673" />
       <source>No device attached</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="674" />
       <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -51090,90 +51090,90 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="705" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="703" />
       <source>Start REPL</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="706" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="704" />
       <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1234" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1223" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1232" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1221" />
       <source>Serial Device Connect</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1224" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1222" />
       <source>&lt;p&gt;The device at serial port &lt;b&gt;{0}&lt;/b&gt; does not respond. It may not have a MicroPython firmware flashed.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1235" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1233" />
       <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1293" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1284" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1275" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1291" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1282" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1273" />
       <source>Run Script</source>
       <translation type="unfinished">运行脚本</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1276" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1274" />
       <source>There is no editor open. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1285" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1283" />
       <source>The current editor does not contain a script. Abort...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1294" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1292" />
       <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1330" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1328" />
       <source>Start Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1331" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1329" />
       <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1346" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1344" />
       <source>µPy Chart</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1363" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1361" />
       <source>Unsaved Chart Data</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1364" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1362" />
       <source>The chart contains unsaved data.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1412" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1410" />
       <source>Start File Manager</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1413" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1411" />
       <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1433" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1431" />
       <source>µPy Files</source>
       <translation type="unfinished" />
     </message>
@@ -51198,7 +51198,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1731" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1735" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1554" />
       <source>Synchronize Time</source>
       <translation type="unfinished" />
@@ -51224,207 +51224,213 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2138" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2144" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1578" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1570" />
       <source>Install Package</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2150" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2147" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2183" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2180" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1574" />
       <source>Install Packages</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1955" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1580" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1959" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
       <source>Compile Python File</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1979" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1970" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1584" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1983" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1974" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1588" />
       <source>Compile Current Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1605" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1609" />
       <source>Download Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1612" />
-      <source>Show Documentation</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1615" />
-      <source>Convert To UF2</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1616" />
-      <source>Flash UF2 Device</source>
+      <source>Show Documentation</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/MicroPythonWidget.py" line="1619" />
+      <source>Convert To UF2</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1620" />
+      <source>Flash UF2 Device</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1623" />
       <source>Manage Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1622" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1626" />
       <source>Ignored Serial Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1625" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1629" />
       <source>Configure</source>
       <translation type="unfinished">配置</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1634" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1638" />
       <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1649" />
       <location filename="../MicroPython/MicroPythonWidget.py" line="1645" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1641" />
       <source>Device Version Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1646" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1650" />
       <source>No version information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1670" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1662" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1674" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1666" />
       <source>unknown</source>
       <translation type="unfinished">未知</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1676" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1680" />
       <source> ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1692" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1683" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1696" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1687" />
       <source>Device Implementation Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1684" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1688" />
       <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}{2}&lt;/b&gt;.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1693" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1697" />
       <source>No device implementation information available.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1732" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1736" />
       <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1754" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1758" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1762" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1766" />
       <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1778" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1782" />
       <source>Device Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1790" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1794" />
       <source>Local Date and Time</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1791" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1795" />
       <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1832" />
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1815" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1836" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1819" />
       <source>Date and Time</source>
       <translation type="unfinished">日期和时间</translation>
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1816" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1820" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{0}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align='center'&gt;{1}&lt;/td&gt;&lt;td align='center'&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1833" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1837" />
       <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align='center'&gt;{0} {1}&lt;/td&gt;&lt;td align='center'&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1857" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1861" />
       <source>Error handling device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1858" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1862" />
       <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1900" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1904" />
       <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1926" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1930" />
       <source>Python Files (*.py);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1936" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1940" />
       <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1945" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1949" />
       <source>'mpy-cross' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="1971" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="1975" />
       <source>The current editor does not contain a Python file. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2063" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2067" />
       <source>Add Unknown Devices</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2064" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2068" />
       <source>Select the devices to be added:</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2113" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2117" />
       <source>Plus any modules on the filesystem.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/MicroPythonWidget.py" line="2151" />
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2169" />
+      <source>Package '{0}' was installed successfully.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MicroPythonWidget.py" line="2184" />
       <source>Enter the packages to be installed separated by whitespace:</source>
       <translation type="unfinished" />
     </message>
@@ -51477,198 +51483,198 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="108" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="110" />
       <source>BBC micro:bit</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="111" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="113" />
       <source>Calliope mini</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="208" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="210" />
       <source>BBC micro:bit/Calliope Functions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="421" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="409" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="392" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="211" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="423" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="411" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="394" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="213" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="215" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="217" />
       <source>Flash MicroPython</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="218" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="220" />
       <source>Flash Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="496" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="222" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="498" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="224" />
       <source>Save Script as 'main.py'</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="225" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="227" />
       <source>Save the current script as 'main.py' on the connected device</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="229" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="231" />
       <source>Reset {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="375" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="366" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="352" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="335" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="322" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="302" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="377" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="354" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="337" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="324" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="304" />
       <source>Flash MicroPython/Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="303" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="305" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed and plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;See the &lt;a href="https://microbit.org/guide/firmware/"&gt;micro:bit web site&lt;/a&gt; for details.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="323" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="325" />
       <source>&lt;p&gt;The BBC micro:bit is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MICROBIT is available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="336" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="338" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the DAPLink firmware. Follow these instructions. &lt;/p&gt;&lt;ul&gt;&lt;li&gt;unplug USB cable and any batteries&lt;/li&gt;&lt;li&gt;keep RESET button pressed an plug USB cable back in&lt;/li&gt;&lt;li&gt;a drive called MAINTENANCE should be available&lt;/li&gt;&lt;/ul&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="353" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="355" />
       <source>&lt;p&gt;The "Calliope mini" is not ready for flashing the MicroPython firmware. Please make sure, that a drive called MINI is available.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="368" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="370" />
       <source>MicroPython/Firmware Files (*.hex *.bin);;All Files (*)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="376" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="378" />
       <source>There are multiple devices ready for flashing. Please make sure, that only one device is prepared.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="393" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="395" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython or CircuitPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="410" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="412" />
       <source>&lt;p&gt;The BBC micro:bit generation cannot be determined. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="422" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="424" />
       <source>&lt;p&gt;The firmware URL for the device type &lt;b&gt;{0}&lt;/b&gt; is not known. Aborting...&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="450" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="452" />
       <source>unknown</source>
       <translation type="unfinished">未知</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="466" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="468" />
       <source>Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="469" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="471" />
       <source>&lt;h4&gt;{0} Version Information&lt;br/&gt;(BBC micro:bit v{1})&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="478" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="480" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="482" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="484" />
       <source>{0} Version</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="502" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="504" />
       <source>The current editor does not contain a Python script. Write it anyway?</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="513" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="515" />
       <source>The script is empty. Aborting.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="567" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="569" />
       <source>MicroPython Firmware for BBC micro:bit V1</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="599" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="586" />
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="571" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="601" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="588" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="573" />
       <source>DAPLink Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="578" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="580" />
       <source>MicroPython Firmware for BBC micro:bit V2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="582" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="584" />
       <source>CircuitPython Firmware for BBC micro:bit V2</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="595" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="597" />
       <source>MicroPython Firmware</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="818" />
-      <source>Active</source>
-      <translation type="unfinished">活动的</translation>
-    </message>
-    <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="819" />
-      <source>Name</source>
-      <translation type="unfinished">名称</translation>
-    </message>
-    <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="820" />
-      <source>MAC-Address</source>
-      <translation type="unfinished" />
+      <source>Active</source>
+      <translation type="unfinished">活动的</translation>
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="821" />
+      <source>Name</source>
+      <translation type="unfinished">名称</translation>
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="822" />
-      <source>Address Type</source>
+      <source>MAC-Address</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../MicroPython/Devices/MicrobitDevices.py" line="824" />
+      <source>Address Type</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="826" />
       <source>Connected</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="825" />
+      <location filename="../MicroPython/Devices/MicrobitDevices.py" line="827" />
       <source>Advertising</source>
       <translation type="unfinished" />
     </message>
@@ -51786,720 +51792,740 @@
   <context>
     <name>MiniEditor</name>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="459" />
+      <location filename="../QScintilla/MiniEditor.py" line="460" />
       <source>About eric Mini Editor</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="460" />
+      <location filename="../QScintilla/MiniEditor.py" line="461" />
       <source>The eric Mini Editor is an editor component based on QScintilla. It may be used for simple editing tasks, that don't need the power of a full blown editor.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="529" />
+      <location filename="../QScintilla/MiniEditor.py" line="530" />
       <source>Line: {0:5}</source>
       <translation>行:{0:5}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="533" />
+      <location filename="../QScintilla/MiniEditor.py" line="534" />
       <source>Pos: {0:5}</source>
       <translation>列:{0:5}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="547" />
+      <location filename="../QScintilla/MiniEditor.py" line="548" />
       <source>Language: {0}</source>
       <translation type="unfinished">语言:{0}</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="609" />
+      <location filename="../QScintilla/MiniEditor.py" line="610" />
       <source>New</source>
       <translation>新建</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="611" />
-      <source>&amp;New</source>
-      <translation>新建(&amp;N)</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="612" />
+      <source>&amp;New</source>
+      <translation>新建(&amp;N)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="613" />
       <source>Ctrl+N</source>
       <comment>File|New</comment>
       <translation>Ctrl+N</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="617" />
+      <location filename="../QScintilla/MiniEditor.py" line="618" />
       <source>Open an empty editor window</source>
       <translation>打开一个空白编辑器窗口</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="619" />
+      <location filename="../QScintilla/MiniEditor.py" line="620" />
       <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;An empty editor window will be created.&lt;/p&gt;</source>
       <translation>&lt;b&gt;新建&lt;/b&gt;&lt;p&gt;创建一个空白编辑器窗口。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="625" />
+      <location filename="../QScintilla/MiniEditor.py" line="626" />
       <source>Open</source>
       <translation>打开</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="627" />
-      <source>&amp;Open...</source>
-      <translation>打开(&amp;O)…</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="628" />
+      <source>&amp;Open...</source>
+      <translation>打开(&amp;O)…</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="629" />
       <source>Ctrl+O</source>
       <comment>File|Open</comment>
       <translation>Ctrl+O</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="633" />
+      <location filename="../QScintilla/MiniEditor.py" line="634" />
       <source>Open a file</source>
       <translation>打开一个文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="635" />
+      <location filename="../QScintilla/MiniEditor.py" line="636" />
       <source>&lt;b&gt;Open a file&lt;/b&gt;&lt;p&gt;You will be asked for the name of a file to be opened.&lt;/p&gt;</source>
       <translation>&lt;b&gt;打开一个文件&lt;/b&gt;&lt;p&gt;将询问要打开的文件名称。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="644" />
+      <location filename="../QScintilla/MiniEditor.py" line="645" />
       <source>Save</source>
       <translation>保存</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="646" />
-      <source>&amp;Save</source>
-      <translation>保存(&amp;S)</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="647" />
+      <source>&amp;Save</source>
+      <translation>保存(&amp;S)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="648" />
       <source>Ctrl+S</source>
       <comment>File|Save</comment>
       <translation>Ctrl+S</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="652" />
+      <location filename="../QScintilla/MiniEditor.py" line="653" />
       <source>Save the current file</source>
       <translation>保存当前文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="654" />
+      <location filename="../QScintilla/MiniEditor.py" line="655" />
       <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of current editor window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;保存文件&lt;/b&gt;&lt;p&gt;保存当前编辑器窗口的内容。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="663" />
+      <location filename="../QScintilla/MiniEditor.py" line="664" />
       <source>Save as</source>
       <translation>另存为</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="665" />
-      <source>Save &amp;as...</source>
-      <translation>另存为(&amp;A)…</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="666" />
+      <source>Save &amp;as...</source>
+      <translation>另存为(&amp;A)…</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="667" />
       <source>Shift+Ctrl+S</source>
       <comment>File|Save As</comment>
       <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="671" />
+      <location filename="../QScintilla/MiniEditor.py" line="672" />
       <source>Save the current file to a new one</source>
       <translation>将当前文件保存到一个新文件中</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="673" />
+      <location filename="../QScintilla/MiniEditor.py" line="674" />
       <source>&lt;b&gt;Save File as&lt;/b&gt;&lt;p&gt;Save the contents of current editor window to a new file. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;文件另存为&lt;/b&gt;&lt;p&gt;将当前编辑器窗口的内容保存到一个新文件中。可以在文件选择对话框中输入该文件。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="683" />
+      <location filename="../QScintilla/MiniEditor.py" line="684" />
       <source>Save Copy</source>
       <translation>保存副本</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="685" />
+      <location filename="../QScintilla/MiniEditor.py" line="686" />
       <source>Save &amp;Copy...</source>
       <translation>保存副本(&amp;C)…</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="691" />
+      <location filename="../QScintilla/MiniEditor.py" line="692" />
       <source>Save a copy of the current file</source>
       <translation>保存当前文件的一个副本</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="693" />
+      <location filename="../QScintilla/MiniEditor.py" line="694" />
       <source>&lt;b&gt;Save Copy&lt;/b&gt;&lt;p&gt;Save a copy of the contents of current editor window. The file can be entered in a file selection dialog.&lt;/p&gt;</source>
       <translation>&lt;b&gt;保存副本&lt;/b&gt;保存当前编辑器窗口内容的一个副本。文件可以在文件选择对话框中输入。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="703" />
+      <location filename="../QScintilla/MiniEditor.py" line="704" />
       <source>Close</source>
       <translation>关闭</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="705" />
-      <source>&amp;Close</source>
-      <translation>关闭(&amp;C)</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="706" />
+      <source>&amp;Close</source>
+      <translation>关闭(&amp;C)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="707" />
       <source>Ctrl+W</source>
       <comment>File|Close</comment>
       <translation>Ctrl+W</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="711" />
+      <location filename="../QScintilla/MiniEditor.py" line="712" />
       <source>Close the editor window</source>
       <translation>关闭编辑器窗口</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="713" />
+      <location filename="../QScintilla/MiniEditor.py" line="714" />
       <source>&lt;b&gt;Close Window&lt;/b&gt;&lt;p&gt;Close the current window.&lt;/p&gt;</source>
       <translation>&lt;b&gt;关闭窗口&lt;/b&gt;&lt;p&gt;关闭当前窗口。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="719" />
+      <location filename="../QScintilla/MiniEditor.py" line="720" />
       <source>Print</source>
       <translation>打印</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="721" />
-      <source>&amp;Print</source>
-      <translation>打印(&amp;P)</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="722" />
+      <source>&amp;Print</source>
+      <translation>打印(&amp;P)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="723" />
       <source>Ctrl+P</source>
       <comment>File|Print</comment>
       <translation>Ctrl+P</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="727" />
+      <location filename="../QScintilla/MiniEditor.py" line="728" />
       <source>Print the current file</source>
       <translation>打印当前文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="729" />
+      <location filename="../QScintilla/MiniEditor.py" line="730" />
       <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of the current file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;打印文件&lt;/b&gt;&lt;p&gt;打印当前文件的内容。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="738" />
+      <location filename="../QScintilla/MiniEditor.py" line="739" />
       <source>Print Preview</source>
       <translation>打印预览</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="746" />
+      <location filename="../QScintilla/MiniEditor.py" line="747" />
       <source>Print preview of the current file</source>
       <translation>当前文件的打印预览</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="748" />
+      <location filename="../QScintilla/MiniEditor.py" line="749" />
       <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;打印预览&lt;/b&gt;&lt;p&gt;当前文件的打印预览。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="761" />
+      <location filename="../QScintilla/MiniEditor.py" line="762" />
       <source>Undo</source>
       <translation>撤消</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="763" />
-      <source>&amp;Undo</source>
-      <translation>撤消(&amp;U)</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="764" />
+      <source>&amp;Undo</source>
+      <translation>撤消(&amp;U)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="765" />
       <source>Ctrl+Z</source>
       <comment>Edit|Undo</comment>
       <translation>Ctrl+Z</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="765" />
+      <location filename="../QScintilla/MiniEditor.py" line="766" />
       <source>Alt+Backspace</source>
       <comment>Edit|Undo</comment>
       <translation>Alt+Backspace</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="769" />
+      <location filename="../QScintilla/MiniEditor.py" line="770" />
       <source>Undo the last change</source>
       <translation>撤消最后一次更改</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="771" />
+      <location filename="../QScintilla/MiniEditor.py" line="772" />
       <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;撤消&lt;/b&gt;&lt;p&gt;在当前编辑器中撤消最后一次更改。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="780" />
+      <location filename="../QScintilla/MiniEditor.py" line="781" />
       <source>Redo</source>
       <translation>重做</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="782" />
-      <source>&amp;Redo</source>
-      <translation>重做(&amp;R)</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="783" />
+      <source>&amp;Redo</source>
+      <translation>重做(&amp;R)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="784" />
       <source>Ctrl+Shift+Z</source>
       <comment>Edit|Redo</comment>
       <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="788" />
+      <location filename="../QScintilla/MiniEditor.py" line="789" />
       <source>Redo the last change</source>
       <translation>重做最后一次更改</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="790" />
+      <location filename="../QScintilla/MiniEditor.py" line="791" />
       <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done in the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;重做&lt;/b&gt;&lt;p&gt;在当前编辑器中重做最后一次更改。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="799" />
+      <location filename="../QScintilla/MiniEditor.py" line="800" />
       <source>Cut</source>
       <translation>剪切</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="801" />
-      <source>Cu&amp;t</source>
-      <translation>剪切(&amp;t)</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="802" />
+      <source>Cu&amp;t</source>
+      <translation>剪切(&amp;t)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="803" />
       <source>Ctrl+X</source>
       <comment>Edit|Cut</comment>
       <translation>Ctrl+X</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="803" />
+      <location filename="../QScintilla/MiniEditor.py" line="804" />
       <source>Shift+Del</source>
       <comment>Edit|Cut</comment>
       <translation>Shift+Del</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="807" />
+      <location filename="../QScintilla/MiniEditor.py" line="808" />
       <source>Cut the selection</source>
       <translation>剪切所选内容</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="809" />
+      <location filename="../QScintilla/MiniEditor.py" line="810" />
       <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
       <translation>&lt;b&gt;剪切&lt;/b&gt;&lt;p&gt;将当前编辑器所选内容剪切到剪贴板中。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="819" />
+      <location filename="../QScintilla/MiniEditor.py" line="820" />
       <source>Copy</source>
       <translation>复制</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="821" />
-      <source>&amp;Copy</source>
-      <translation>复制(&amp;C)</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="822" />
-      <source>Ctrl+C</source>
-      <comment>Edit|Copy</comment>
-      <translation>Ctrl+C</translation>
+      <source>&amp;Copy</source>
+      <translation>复制(&amp;C)</translation>
     </message>
     <message>
       <location filename="../QScintilla/MiniEditor.py" line="823" />
+      <source>Ctrl+C</source>
+      <comment>Edit|Copy</comment>
+      <translation>Ctrl+C</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="824" />
       <source>Ctrl+Ins</source>
       <comment>Edit|Copy</comment>
       <translation>Ctrl+Ins</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="827" />
+      <location filename="../QScintilla/MiniEditor.py" line="828" />
       <source>Copy the selection</source>
       <translation>复制所选内容</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="829" />
+      <location filename="../QScintilla/MiniEditor.py" line="830" />
       <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text of the current editor to the clipboard.&lt;/p&gt;</source>
       <translation>&lt;b&gt;复制&lt;/b&gt;&lt;p&gt;将当前编辑器所选内容复制到剪贴板中。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="839" />
+      <location filename="../QScintilla/MiniEditor.py" line="840" />
       <source>Paste</source>
       <translation>粘贴</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="841" />
-      <source>&amp;Paste</source>
-      <translation>粘贴(&amp;P)</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="842" />
+      <source>&amp;Paste</source>
+      <translation>粘贴(&amp;P)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="843" />
       <source>Ctrl+V</source>
       <comment>Edit|Paste</comment>
       <translation>Ctrl+V</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="843" />
+      <location filename="../QScintilla/MiniEditor.py" line="844" />
       <source>Shift+Ins</source>
       <comment>Edit|Paste</comment>
       <translation>Shift+Ins</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="847" />
+      <location filename="../QScintilla/MiniEditor.py" line="848" />
       <source>Paste the last cut/copied text</source>
       <translation>粘贴最近剪切或复制的文本</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="849" />
+      <location filename="../QScintilla/MiniEditor.py" line="850" />
       <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the last cut/copied text from the clipboard to the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;粘贴&lt;/b&gt;&lt;p&gt;将最近剪切或复制的文本从剪贴板粘贴到当前编辑器中。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="859" />
+      <location filename="../QScintilla/MiniEditor.py" line="860" />
       <source>Clear</source>
       <translation>清除</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="861" />
-      <source>Cl&amp;ear</source>
-      <translation>清除(&amp;E)</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="862" />
+      <source>Cl&amp;ear</source>
+      <translation>清除(&amp;E)</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="863" />
       <source>Alt+Shift+C</source>
       <comment>Edit|Clear</comment>
       <translation>Alt+Shift+C</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="867" />
+      <location filename="../QScintilla/MiniEditor.py" line="868" />
       <source>Clear all text</source>
       <translation>清除所有文本</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="869" />
+      <location filename="../QScintilla/MiniEditor.py" line="870" />
       <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Delete all text of the current editor.&lt;/p&gt;</source>
       <translation>&lt;b&gt;清除&lt;/b&gt;&lt;p&gt;删除当前编辑器中的所有文本。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>About</source>
       <translation>关于</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2861" />
+      <location filename="../QScintilla/MiniEditor.py" line="2862" />
       <source>&amp;About</source>
       <translation>关于(&amp;A)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2863" />
+      <location filename="../QScintilla/MiniEditor.py" line="2864" />
       <source>Display information about this software</source>
       <translation>显示软件信息</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2865" />
+      <location filename="../QScintilla/MiniEditor.py" line="2866" />
       <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
       <translation>&lt;b&gt;关于&lt;/b&gt;&lt;p&gt;显示与本软件有关的部分信息。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About Qt</source>
       <translation>关于 Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2874" />
+      <location filename="../QScintilla/MiniEditor.py" line="2875" />
       <source>About &amp;Qt</source>
       <translation>关于 &amp;Qt</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2877" />
+      <location filename="../QScintilla/MiniEditor.py" line="2878" />
       <source>Display information about the Qt toolkit</source>
       <translation>显示 Qt 工具包信息</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2880" />
+      <location filename="../QScintilla/MiniEditor.py" line="2881" />
       <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
       <translation>&lt;b&gt;关于 Qt&lt;/b&gt;&lt;p&gt;显示 Qt 工具包的部分相关信息。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2889" />
+      <location filename="../QScintilla/MiniEditor.py" line="2890" />
       <source>What's This?</source>
       <translation>这是什么?</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2891" />
-      <source>&amp;What's This?</source>
-      <translation>这是什么(&amp;W)?</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="2892" />
+      <source>&amp;What's This?</source>
+      <translation>这是什么(&amp;W)?</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="2893" />
       <source>Shift+F1</source>
       <comment>Help|What's This?'</comment>
       <translation>Shift+F1</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2897" />
+      <location filename="../QScintilla/MiniEditor.py" line="2898" />
       <source>Context sensitive help</source>
       <translation>背景帮助</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2899" />
+      <location filename="../QScintilla/MiniEditor.py" line="2900" />
       <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
       <translation>&lt;b&gt;显示背景帮助&lt;/b&gt;&lt;p&gt;在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2917" />
+      <location filename="../QScintilla/MiniEditor.py" line="2918" />
       <source>Preferences</source>
       <translation type="unfinished">首选项</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2919" />
+      <location filename="../QScintilla/MiniEditor.py" line="2920" />
       <source>&amp;Preferences...</source>
       <translation type="unfinished">首选项(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2925" />
+      <location filename="../QScintilla/MiniEditor.py" line="2926" />
       <source>Set the prefered configuration</source>
       <translation type="unfinished">设定偏好配置</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2927" />
+      <location filename="../QScintilla/MiniEditor.py" line="2928" />
       <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
       <translation type="unfinished">&lt;b&gt;首选项&lt;/b&gt;&lt;p&gt;将应用程序的配置项设定为你喜欢的值。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2941" />
+      <location filename="../QScintilla/MiniEditor.py" line="2942" />
       <source>&amp;File</source>
       <translation>文件(&amp;F)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2953" />
+      <location filename="../QScintilla/MiniEditor.py" line="2954" />
       <source>&amp;Edit</source>
       <translation>编辑(&amp;E)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2963" />
+      <location filename="../QScintilla/MiniEditor.py" line="2964" />
       <source>&amp;Search</source>
       <translation type="unfinished">搜索(&amp;S)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2973" />
+      <location filename="../QScintilla/MiniEditor.py" line="2974" />
       <source>&amp;View</source>
       <translation type="unfinished">视图(&amp;V)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2979" />
+      <location filename="../QScintilla/MiniEditor.py" line="2980" />
       <source>Se&amp;ttings</source>
       <translation type="unfinished">设置(&amp;T)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2984" />
+      <location filename="../QScintilla/MiniEditor.py" line="2985" />
       <source>&amp;Help</source>
       <translation>帮助(&amp;H)</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="2996" />
+      <location filename="../QScintilla/MiniEditor.py" line="2997" />
       <source>File</source>
       <translation>文件</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3008" />
+      <location filename="../QScintilla/MiniEditor.py" line="3009" />
       <source>Edit</source>
       <translation>编辑</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3017" />
+      <location filename="../QScintilla/MiniEditor.py" line="3018" />
       <source>Search</source>
       <translation type="unfinished">搜索</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3023" />
+      <location filename="../QScintilla/MiniEditor.py" line="3024" />
       <source>View</source>
       <translation type="unfinished">视图</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3029" />
+      <location filename="../QScintilla/MiniEditor.py" line="3030" />
       <source>Settings</source>
       <translation type="unfinished">设置</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3032" />
+      <location filename="../QScintilla/MiniEditor.py" line="3033" />
       <source>Help</source>
       <translation>帮助</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3045" />
+      <location filename="../QScintilla/MiniEditor.py" line="3046" />
       <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3055" />
+      <location filename="../QScintilla/MiniEditor.py" line="3056" />
       <source>&lt;p&gt;This part of the status bar displays an indication of the editors files writability.&lt;/p&gt;</source>
       <translation>&lt;p&gt;状态条的这一部分显示编辑器文件是否为可写。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3064" />
+      <location filename="../QScintilla/MiniEditor.py" line="3065" />
       <source>&lt;p&gt;This part of the status bar displays the line number of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;状态条的这一部分显示编辑器的行号。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3073" />
+      <location filename="../QScintilla/MiniEditor.py" line="3074" />
       <source>&lt;p&gt;This part of the status bar displays the cursor position of the editor.&lt;/p&gt;</source>
       <translation>&lt;p&gt;状态条的这一部分显示编辑的光标位置。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3087" />
+      <location filename="../QScintilla/MiniEditor.py" line="3088" />
       <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3094" />
+      <location filename="../QScintilla/MiniEditor.py" line="3095" />
       <source>Ready</source>
       <translation>就绪</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3169" />
-      <source>eric Mini Editor</source>
-      <translation type="unfinished" />
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3170" />
+      <source>eric Mini Editor</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3171" />
       <source>The document has unsaved changes.</source>
       <translation>文档有未保存的更改。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3197" />
-      <source>Open File</source>
-      <translation>打开文件</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3198" />
+      <source>Open File</source>
+      <translation>打开文件</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3199" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 无法打开。&lt;/p&gt;&lt;p&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3226" />
+      <location filename="../QScintilla/MiniEditor.py" line="3227" />
       <source>File loaded</source>
       <translation>文件已载入</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3307" />
-      <source>Save File</source>
-      <translation>保存文件</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3308" />
+      <source>Save File</source>
+      <translation>保存文件</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3309" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
       <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 无法保存。&lt;br /&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3314" />
+      <location filename="../QScintilla/MiniEditor.py" line="3315" />
       <source>File saved</source>
       <translation>文件已保存</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>[*] - {0}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
-      <location filename="../QScintilla/MiniEditor.py" line="3326" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
+      <location filename="../QScintilla/MiniEditor.py" line="3327" />
       <source>Mini Editor</source>
       <translation>迷你编辑器</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3683" />
-      <location filename="../QScintilla/MiniEditor.py" line="3654" />
-      <location filename="../QScintilla/MiniEditor.py" line="3338" />
+      <location filename="../QScintilla/MiniEditor.py" line="3684" />
+      <location filename="../QScintilla/MiniEditor.py" line="3655" />
+      <location filename="../QScintilla/MiniEditor.py" line="3339" />
       <source>Untitled</source>
       <translation>未命名</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3344" />
+      <location filename="../QScintilla/MiniEditor.py" line="3345" />
       <source>{0}[*] - {1}</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3649" />
+      <location filename="../QScintilla/MiniEditor.py" line="3650" />
       <source>Printing...</source>
       <translation>打印中…</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3665" />
+      <location filename="../QScintilla/MiniEditor.py" line="3666" />
       <source>Printing completed</source>
       <translation>打印已完成</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3667" />
+      <location filename="../QScintilla/MiniEditor.py" line="3668" />
       <source>Error while printing</source>
       <translation>打印时出错</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3670" />
+      <location filename="../QScintilla/MiniEditor.py" line="3671" />
       <source>Printing aborted</source>
       <translation>打印失败</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3724" />
-      <source>Select all</source>
-      <translation>全选</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3725" />
+      <source>Select all</source>
+      <translation>全选</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3726" />
       <source>Deselect all</source>
       <translation>全部取消选择</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3738" />
+      <location filename="../QScintilla/MiniEditor.py" line="3739" />
       <source>Languages</source>
       <translation>语言</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3741" />
+      <location filename="../QScintilla/MiniEditor.py" line="3742" />
       <source>No Language</source>
       <translation>无语言</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3763" />
+      <location filename="../QScintilla/MiniEditor.py" line="3764" />
       <source>Guessed</source>
       <translation>猜测</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3785" />
-      <location filename="../QScintilla/MiniEditor.py" line="3767" />
+      <location filename="../QScintilla/MiniEditor.py" line="3786" />
+      <location filename="../QScintilla/MiniEditor.py" line="3768" />
       <source>Alternatives</source>
       <translation>备选</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3782" />
+      <location filename="../QScintilla/MiniEditor.py" line="3783" />
       <source>Alternatives ({0})</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="3813" />
-      <source>Pygments Lexer</source>
-      <translation>Pygments 词法分析器</translation>
-    </message>
-    <message>
       <location filename="../QScintilla/MiniEditor.py" line="3814" />
+      <source>Pygments Lexer</source>
+      <translation>Pygments 词法分析器</translation>
+    </message>
+    <message>
+      <location filename="../QScintilla/MiniEditor.py" line="3815" />
       <source>Select the Pygments lexer to apply.</source>
       <translation>选择要应用的 Pygments 词法分析器。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4326" />
+      <location filename="../QScintilla/MiniEditor.py" line="4336" />
       <source>EditorConfig Properties</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/MiniEditor.py" line="4327" />
+      <location filename="../QScintilla/MiniEditor.py" line="4337" />
       <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" />
     </message>
   </context>
   <context>
+    <name>MipLocalInstaller</name>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="185" />
+      <source>Unable to find 'lib' in sys.path. Please enter a target.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipLocalInstaller.py" line="229" />
+      <source>
+
+Package may be partially installed.</source>
+      <translation type="unfinished" />
+    </message>
+  </context>
+  <context>
     <name>MipPackageDialog</name>
     <message>
+      <location filename="../MicroPython/MipPackageDialog.py" line="34" />
+      <source>Enter the URL of the package index. Leave empty to use the default index ({0}).</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
       <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
       <source>Install Package</source>
       <translation type="unfinished" />
@@ -52534,6 +52560,21 @@
       <source>Install .mpy File</source>
       <translation type="unfinished" />
     </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Target Directory:</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Enter the directory to install to (must be contained in sys.path). Leave empty to detect automatically.</source>
+      <translation type="unfinished" />
+    </message>
+    <message>
+      <location filename="../MicroPython/MipPackageDialog.ui" line="0" />
+      <source>Package Index:</source>
+      <translation type="unfinished" />
+    </message>
   </context>
   <context>
     <name>MiscellaneousChecker</name>
@@ -53193,194 +53234,194 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="603" />
-      <location filename="../MultiProject/MultiProject.py" line="593" />
+      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="591" />
       <source>Multi Project Files (*.emj)</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="601" />
+      <location filename="../MultiProject/MultiProject.py" line="599" />
       <source>Save Multiproject</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="617" />
+      <location filename="../MultiProject/MultiProject.py" line="615" />
       <source>Save File</source>
       <translation>保存文件</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="618" />
+      <location filename="../MultiProject/MultiProject.py" line="616" />
       <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
       <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="644" />
+      <location filename="../MultiProject/MultiProject.py" line="642" />
       <source>Close Multiproject</source>
       <translation>关闭多重项目</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="645" />
+      <location filename="../MultiProject/MultiProject.py" line="643" />
       <source>The current multiproject has unsaved changes.</source>
       <translation>当前多重项目的更改未保存。</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="696" />
+      <source>New multiproject</source>
+      <translation>新建多重项目</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="698" />
-      <source>New multiproject</source>
-      <translation>新建多重项目</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="700" />
       <source>&amp;New...</source>
       <translation>新建(&amp;N)…</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="704" />
+      <source>Generate a new multiproject</source>
+      <translation>生成一个新多重项目</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="706" />
-      <source>Generate a new multiproject</source>
-      <translation>生成一个新多重项目</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="708" />
       <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;新建…&lt;/b&gt;&lt;p&gt;打开一个对话框为新多重项目输入信息。&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="716" />
+      <source>Open multiproject</source>
+      <translation>打开多重项目</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="718" />
-      <source>Open multiproject</source>
-      <translation>打开多重项目</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="720" />
       <source>&amp;Open...</source>
       <translation>打开(&amp;O)…</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="724" />
+      <source>Open an existing multiproject</source>
+      <translation>打开一个存在的多重项目</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="726" />
-      <source>Open an existing multiproject</source>
-      <translation>打开一个存在的多重项目</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="728" />
       <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;打开….&lt;/b&gt;&lt;p&gt;打开一个存在的多重项目。&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="732" />
+      <source>Close multiproject</source>
+      <translation>关闭多重项目</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="734" />
-      <source>Close multiproject</source>
-      <translation>关闭多重项目</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="736" />
       <source>&amp;Close</source>
       <translation>关闭(&amp;C)</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="740" />
+      <source>Close the current multiproject</source>
+      <translation>关闭当前多重项目</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="742" />
-      <source>Close the current multiproject</source>
-      <translation>关闭当前多重项目</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="744" />
       <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;关闭&lt;/b&gt;&lt;p&gt;关闭当前多重项目。&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="748" />
+      <source>Save multiproject</source>
+      <translation>保存多重项目</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="750" />
-      <source>Save multiproject</source>
-      <translation>保存多重项目</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="752" />
       <source>&amp;Save</source>
       <translation>保存(&amp;S)</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="756" />
+      <source>Save the current multiproject</source>
+      <translation>保存当前多重项目</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="758" />
-      <source>Save the current multiproject</source>
-      <translation>保存当前多重项目</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="760" />
       <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;保存&lt;/b&gt;&lt;p&gt;保存当前多重项目。&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="764" />
+      <source>Save multiproject as</source>
+      <translation>多重项目另存为</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="766" />
-      <source>Save multiproject as</source>
-      <translation>多重项目另存为</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="768" />
       <source>Save &amp;as...</source>
       <translation>另存为(&amp;A)…</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="775" />
+      <location filename="../MultiProject/MultiProject.py" line="773" />
       <source>Save the current multiproject to a new file</source>
       <translation>将当前多重项目保存到一个新文件中</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="778" />
+      <location filename="../MultiProject/MultiProject.py" line="776" />
       <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current multiproject to a new file.&lt;/p&gt;</source>
       <translation>&lt;b&gt;另存为&lt;/b&gt;&lt;p&gt;将当前多重项目保存到一个新文件中。&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="785" />
+      <source>Add project to multiproject</source>
+      <translation>为多重项目添加项目</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="787" />
-      <source>Add project to multiproject</source>
-      <translation>为多重项目添加项目</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="789" />
       <source>Add &amp;project...</source>
       <translation type="unfinished">添加项目(&amp;P)…</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="796" />
+      <location filename="../MultiProject/MultiProject.py" line="794" />
       <source>Add a project to the current multiproject</source>
       <translation>将项目添加到当前多重项目中</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="799" />
+      <location filename="../MultiProject/MultiProject.py" line="797" />
       <source>&lt;b&gt;Add project...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a project to the current multiproject.&lt;/p&gt;</source>
       <translation>&lt;b&gt;添加项目…&lt;/b&gt;&lt;p&gt;打开一个对话框将项目添加到当前多重项目中。&lt;/p&gt;</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="807" />
+      <source>Multiproject properties</source>
+      <translation>多重项目属性</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="809" />
-      <source>Multiproject properties</source>
-      <translation>多重项目属性</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="811" />
       <source>&amp;Properties...</source>
       <translation>属性(&amp;P)…</translation>
     </message>
     <message>
+      <location filename="../MultiProject/MultiProject.py" line="815" />
+      <source>Show the multiproject properties</source>
+      <translation>显示多重项目属性</translation>
+    </message>
+    <message>
       <location filename="../MultiProject/MultiProject.py" line="817" />
-      <source>Show the multiproject properties</source>
-      <translation>显示多重项目属性</translation>
-    </message>
-    <message>
-      <location filename="../MultiProject/MultiProject.py" line="819" />
       <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the multiproject properties.&lt;/p&gt;</source>
       <translation>&lt;b&gt;属性…&lt;/b&gt;&lt;p&gt;显示一个对话框编辑多重项目属性。&lt;/p&gt;</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="840" />
+      <location filename="../MultiProject/MultiProject.py" line="838" />
       <source>&amp;Multiproject</source>
       <translation>多重项目(&amp;M)</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="841" />
+      <location filename="../MultiProject/MultiProject.py" line="839" />
       <source>Open &amp;Recent Multiprojects</source>
       <translation>打开最近的多重项目(&amp;R)</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="880" />
       <location filename="../MultiProject/MultiProject.py" line="878" />
+      <location filename="../MultiProject/MultiProject.py" line="876" />
       <source>Multiproject</source>
       <translation>多重项目</translation>
     </message>
     <message>
-      <location filename="../MultiProject/MultiProject.py" line="935" />
+      <location filename="../MultiProject/MultiProject.py" line="933" />
       <source>&amp;Clear</source>
       <translation>清除(&amp;C)</translation>
     </message>
@@ -69697,7 +69738,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="417" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="415" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="231" />
       <source>Show MicroPython Versions</source>
       <translation type="unfinished" />
@@ -69708,7 +69749,7 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="381" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="379" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="367" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="349" />
       <location filename="../MicroPython/Devices/STLinkDevices.py" line="239" />
@@ -69746,42 +69787,42 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="380" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="378" />
       <source>'st-flash' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="400" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="398" />
       <source>'st-info' Output</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="401" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="399" />
       <source>STLink Device Information</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="418" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="416" />
       <source>The firmware of the connected device cannot be determined or the board does not run MicroPython. Aborting...</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="446" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="444" />
       <source>unknown</source>
       <translation type="unfinished">未知</translation>
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="452" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="450" />
       <source>&lt;h4&gt;MicroPython Version Information&lt;/h4&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Installed:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Available:&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="460" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="458" />
       <source>&lt;p&gt;&lt;b&gt;Update available!&lt;/b&gt;&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../MicroPython/Devices/STLinkDevices.py" line="464" />
+      <location filename="../MicroPython/Devices/STLinkDevices.py" line="462" />
       <source>MicroPython Version</source>
       <translation type="unfinished" />
     </message>
@@ -70235,49 +70276,49 @@
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="155" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="154" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="151" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="150" />
       <source>Find Next</source>
       <translation>查找下一个</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="168" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="167" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="164" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="163" />
       <source>Find Prev</source>
       <translation>查找上一个</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="181" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="180" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="177" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="176" />
       <source>Replace and Search</source>
       <translation>替换和搜索</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="197" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="196" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="191" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="190" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="211" />
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="210" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="205" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="204" />
       <source>Replace All</source>
       <translation>替换全部</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1048" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1045" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="597" />
       <location filename="../QScintilla/SearchReplaceWidget.py" line="559" />
       <source>'{0}' was not found.</source>
       <translation>“{0}”未找到。</translation>
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1201" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1198" />
       <source>Replaced {0} occurrences.</source>
       <translation type="unfinished" />
     </message>
     <message>
-      <location filename="../QScintilla/SearchReplaceWidget.py" line="1207" />
+      <location filename="../QScintilla/SearchReplaceWidget.py" line="1204" />
       <source>Nothing replaced because '{0}' was not found.</source>
       <translation type="unfinished" />
     </message>
@@ -78065,50 +78106,50 @@
   <context>
     <name>SvnProjectBrowserHelper</name>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="734" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="591" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="544" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="737" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="594" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="547" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="394" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="208" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="742" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="593" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="546" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="745" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="596" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="549" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="399" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="210" />
       <source>Version Control</source>
       <translation>版本控制</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="750" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="607" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="753" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="610" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="410" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="224" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="758" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="609" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="761" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="612" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="415" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="226" />
       <source>Update from repository</source>
       <translation>从仓库更新</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="756" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="613" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="759" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="616" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="416" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="230" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="764" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="615" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="767" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="618" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="421" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="232" />
       <source>Commit changes to repository...</source>
       <translation>将更改提交到仓库中…</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="763" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="620" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="766" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="623" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="423" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="237" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="771" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="622" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="774" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="625" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="428" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="239" />
       <source>Add to repository</source>
@@ -78123,90 +78164,90 @@
       <translation>添加树到仓库</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="769" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="626" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="772" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="629" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="436" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="250" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="777" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="628" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="780" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="631" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="441" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="252" />
       <source>Remove from repository (and disk)</source>
       <translation>从仓库(和磁盘)中移除</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="631" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="634" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="255" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="257" />
       <source>Copy</source>
       <translation>复制</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="633" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="636" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="257" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="635" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="638" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="259" />
       <source>Move</source>
       <translation>移动</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="776" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="638" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="779" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="641" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="443" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="262" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="784" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="640" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="787" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="643" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="448" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="264" />
       <source>Add to Changelist</source>
       <translation>添加更改列表</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="780" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="642" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="783" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="645" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="447" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="266" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="788" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="644" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="791" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="647" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="452" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="268" />
       <source>Remove from Changelist</source>
       <translation>从更改列表中移除</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="648" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="651" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="272" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="650" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="653" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="274" />
       <source>Show log browser</source>
       <translation>显示日志浏览器</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="786" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="655" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="789" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="658" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="453" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="279" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="794" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="657" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="797" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="660" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="458" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="281" />
       <source>Show status</source>
       <translation>显示状态</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="663" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="666" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="287" />
       <source>Show repository info</source>
       <translation>显示仓库信息</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="793" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="662" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="796" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="665" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="460" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="286" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="801" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="670" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="804" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="673" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="465" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="294" />
       <source>Show differences</source>
@@ -78219,12 +78260,12 @@
       <translation>并排显示差异</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="799" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="668" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="802" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="671" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="466" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="298" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="807" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="676" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="810" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="679" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="471" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="306" />
       <source>Show differences (extended)</source>
@@ -78237,12 +78278,12 @@
       <translation>并排显示差异(扩展)</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="805" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="674" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="808" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="677" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="472" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="310" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="813" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="682" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="816" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="685" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="477" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="318" />
       <source>Show differences (URLs)</source>
@@ -78255,34 +78296,34 @@
       <translation>显示有注释的文件</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="812" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="681" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="815" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="684" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="479" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="319" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="820" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="689" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="823" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="692" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="484" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="327" />
       <source>Revert changes</source>
       <translation>还原改变</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="818" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="687" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="821" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="690" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="325" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="826" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="695" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="829" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="698" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="333" />
       <source>Merge changes</source>
       <translation>合并更改</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="822" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="691" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="483" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="329" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="830" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="699" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="488" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="337" />
       <source>Conflicts resolved</source>
@@ -78321,106 +78362,106 @@
       <translation>Steal Lock</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="825" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="694" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="828" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="697" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="510" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="356" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="702" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="836" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="361" />
       <source>Set Property</source>
       <translation>设置属性</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="827" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="696" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="830" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="699" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="512" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="358" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="835" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="704" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="838" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="707" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="363" />
       <source>List Properties</source>
       <translation>列出属性</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="829" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="698" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="832" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="701" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="514" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="360" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="837" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="706" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="840" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="709" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="516" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="365" />
       <source>Delete Property</source>
       <translation>删除属性</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="833" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="702" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="559" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="841" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="710" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="561" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
-      <source>Select all local file entries</source>
-      <translation>选择所有本地文件条目</translation>
-    </message>
-    <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="836" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="705" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="562" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="518" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="364" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="844" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="713" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="564" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
-      <source>Select all versioned file entries</source>
-      <translation>选择所有版本化的文件条目</translation>
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="520" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="369" />
+      <source>Select all local file entries</source>
+      <translation>选择所有本地文件条目</translation>
     </message>
     <message>
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="839" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="708" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="565" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="521" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="367" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="847" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="716" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="567" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="523" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="372" />
+      <source>Select all versioned file entries</source>
+      <translation>选择所有版本化的文件条目</translation>
+    </message>
+    <message>
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="842" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="711" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="568" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="524" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="370" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="570" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="526" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="375" />
       <source>Select all local directory entries</source>
       <translation>选择所有本地文件夹条目</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="843" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="712" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="569" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="846" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="715" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="572" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="528" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="374" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="851" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="720" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="571" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="854" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="723" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="574" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="530" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="379" />
       <source>Select all versioned directory entries</source>
       <translation>选择所有版本化的文件夹条目</translation>
     </message>
     <message>
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="847" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="716" />
-      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="573" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="850" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="719" />
+      <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="576" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="532" />
       <location filename="../Plugins/VcsPlugins/vcsSubversion/ProjectBrowserHelper.py" line="378" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="855" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="724" />
-      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="575" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="858" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="727" />
+      <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="578" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="534" />
       <location filename="../Plugins/VcsPlugins/vcsPySvn/ProjectBrowserHelper.py" line="383" />
       <source>Configure...</source>
@@ -90995,8 +91036,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2519" />
       <location filename="../ViewManager/ViewManager.py" line="2518" />
+      <location filename="../QScintilla/MiniEditor.py" line="1685" />
       <location filename="../QScintilla/MiniEditor.py" line="1684" />
-      <location filename="../QScintilla/MiniEditor.py" line="1683" />
       <location filename="../QScintilla/ShellWindow.py" line="435" />
       <location filename="../QScintilla/ShellWindow.py" line="434" />
       <source>Delete current line</source>
@@ -91004,7 +91045,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2520" />
-      <location filename="../QScintilla/MiniEditor.py" line="1685" />
+      <location filename="../QScintilla/MiniEditor.py" line="1686" />
       <location filename="../QScintilla/ShellWindow.py" line="436" />
       <source>Ctrl+Shift+L</source>
       <translation>Ctrl+Shift+L</translation>
@@ -91012,8 +91053,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2026" />
       <location filename="../ViewManager/ViewManager.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="1207" />
       <location filename="../QScintilla/MiniEditor.py" line="1206" />
-      <location filename="../QScintilla/MiniEditor.py" line="1205" />
       <location filename="../QScintilla/ShellWindow.py" line="447" />
       <location filename="../QScintilla/ShellWindow.py" line="446" />
       <source>Indent one level</source>
@@ -91021,7 +91062,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2027" />
-      <location filename="../QScintilla/MiniEditor.py" line="1207" />
+      <location filename="../QScintilla/MiniEditor.py" line="1208" />
       <location filename="../QScintilla/ShellWindow.py" line="448" />
       <source>Tab</source>
       <translation>Tab 键</translation>
@@ -91029,8 +91070,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2492" />
       <location filename="../ViewManager/ViewManager.py" line="2491" />
+      <location filename="../QScintilla/MiniEditor.py" line="1673" />
       <location filename="../QScintilla/MiniEditor.py" line="1672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1671" />
       <location filename="../QScintilla/ShellWindow.py" line="459" />
       <location filename="../QScintilla/ShellWindow.py" line="458" />
       <source>Insert new line</source>
@@ -91038,14 +91079,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2493" />
-      <location filename="../QScintilla/MiniEditor.py" line="1673" />
+      <location filename="../QScintilla/MiniEditor.py" line="1674" />
       <location filename="../QScintilla/ShellWindow.py" line="460" />
       <source>Return</source>
       <translation>Return</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2494" />
-      <location filename="../QScintilla/MiniEditor.py" line="1674" />
+      <location filename="../QScintilla/MiniEditor.py" line="1675" />
       <location filename="../QScintilla/ShellWindow.py" line="461" />
       <source>Enter</source>
       <translation>Enter</translation>
@@ -91053,8 +91094,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2378" />
       <location filename="../ViewManager/ViewManager.py" line="2377" />
+      <location filename="../QScintilla/MiniEditor.py" line="1559" />
       <location filename="../QScintilla/MiniEditor.py" line="1558" />
-      <location filename="../QScintilla/MiniEditor.py" line="1557" />
       <location filename="../QScintilla/ShellWindow.py" line="471" />
       <location filename="../QScintilla/ShellWindow.py" line="470" />
       <source>Delete previous character</source>
@@ -91062,21 +91103,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2379" />
-      <location filename="../QScintilla/MiniEditor.py" line="1559" />
+      <location filename="../QScintilla/MiniEditor.py" line="1560" />
       <location filename="../QScintilla/ShellWindow.py" line="472" />
       <source>Backspace</source>
       <translation>Backspace</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2386" />
-      <location filename="../QScintilla/MiniEditor.py" line="1566" />
+      <location filename="../QScintilla/MiniEditor.py" line="1567" />
       <location filename="../QScintilla/ShellWindow.py" line="479" />
       <source>Meta+H</source>
       <translation>Meta+H</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2391" />
-      <location filename="../QScintilla/MiniEditor.py" line="1571" />
+      <location filename="../QScintilla/MiniEditor.py" line="1572" />
       <location filename="../QScintilla/ShellWindow.py" line="484" />
       <source>Shift+Backspace</source>
       <translation>Shift+Backspace</translation>
@@ -91084,8 +91125,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2416" />
       <location filename="../ViewManager/ViewManager.py" line="2415" />
+      <location filename="../QScintilla/MiniEditor.py" line="1597" />
       <location filename="../QScintilla/MiniEditor.py" line="1596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1595" />
       <location filename="../QScintilla/ShellWindow.py" line="493" />
       <location filename="../QScintilla/ShellWindow.py" line="492" />
       <source>Delete current character</source>
@@ -91093,14 +91134,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2417" />
-      <location filename="../QScintilla/MiniEditor.py" line="1597" />
+      <location filename="../QScintilla/MiniEditor.py" line="1598" />
       <location filename="../QScintilla/ShellWindow.py" line="494" />
       <source>Del</source>
       <translation>Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2424" />
-      <location filename="../QScintilla/MiniEditor.py" line="1604" />
+      <location filename="../QScintilla/MiniEditor.py" line="1605" />
       <location filename="../QScintilla/ShellWindow.py" line="501" />
       <source>Meta+D</source>
       <translation>Meta+D</translation>
@@ -91108,8 +91149,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2432" />
       <location filename="../ViewManager/ViewManager.py" line="2431" />
+      <location filename="../QScintilla/MiniEditor.py" line="1613" />
       <location filename="../QScintilla/MiniEditor.py" line="1612" />
-      <location filename="../QScintilla/MiniEditor.py" line="1611" />
       <location filename="../QScintilla/ShellWindow.py" line="509" />
       <location filename="../QScintilla/ShellWindow.py" line="508" />
       <source>Delete word to left</source>
@@ -91117,7 +91158,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2433" />
-      <location filename="../QScintilla/MiniEditor.py" line="1613" />
+      <location filename="../QScintilla/MiniEditor.py" line="1614" />
       <location filename="../QScintilla/ShellWindow.py" line="510" />
       <source>Ctrl+Backspace</source>
       <translation>Ctrl+Backspace</translation>
@@ -91125,8 +91166,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2444" />
       <location filename="../ViewManager/ViewManager.py" line="2443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1625" />
       <location filename="../QScintilla/MiniEditor.py" line="1624" />
-      <location filename="../QScintilla/MiniEditor.py" line="1623" />
       <location filename="../QScintilla/ShellWindow.py" line="521" />
       <location filename="../QScintilla/ShellWindow.py" line="520" />
       <source>Delete word to right</source>
@@ -91134,7 +91175,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="1625" />
+      <location filename="../QScintilla/MiniEditor.py" line="1626" />
       <location filename="../QScintilla/ShellWindow.py" line="522" />
       <source>Ctrl+Del</source>
       <translation>Ctrl+Del</translation>
@@ -91142,8 +91183,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2456" />
       <location filename="../ViewManager/ViewManager.py" line="2455" />
+      <location filename="../QScintilla/MiniEditor.py" line="1637" />
       <location filename="../QScintilla/MiniEditor.py" line="1636" />
-      <location filename="../QScintilla/MiniEditor.py" line="1635" />
       <location filename="../QScintilla/ShellWindow.py" line="533" />
       <location filename="../QScintilla/ShellWindow.py" line="532" />
       <source>Delete line to left</source>
@@ -91151,7 +91192,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2458" />
-      <location filename="../QScintilla/MiniEditor.py" line="1638" />
+      <location filename="../QScintilla/MiniEditor.py" line="1639" />
       <location filename="../QScintilla/ShellWindow.py" line="535" />
       <source>Ctrl+Shift+Backspace</source>
       <translation>Ctrl+Shift+Backspace</translation>
@@ -91159,8 +91200,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2470" />
       <location filename="../ViewManager/ViewManager.py" line="2469" />
+      <location filename="../QScintilla/MiniEditor.py" line="1651" />
       <location filename="../QScintilla/MiniEditor.py" line="1650" />
-      <location filename="../QScintilla/MiniEditor.py" line="1649" />
       <location filename="../QScintilla/ShellWindow.py" line="547" />
       <location filename="../QScintilla/ShellWindow.py" line="546" />
       <source>Delete line to right</source>
@@ -91168,14 +91209,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2478" />
-      <location filename="../QScintilla/MiniEditor.py" line="1658" />
+      <location filename="../QScintilla/MiniEditor.py" line="1659" />
       <location filename="../QScintilla/ShellWindow.py" line="555" />
       <source>Meta+K</source>
       <translation>Meta+K</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="1663" />
+      <location filename="../QScintilla/MiniEditor.py" line="1664" />
       <location filename="../QScintilla/ShellWindow.py" line="560" />
       <source>Ctrl+Shift+Del</source>
       <translation>Ctrl+Shift+Del</translation>
@@ -91183,8 +91224,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1718" />
       <location filename="../ViewManager/ViewManager.py" line="1717" />
+      <location filename="../QScintilla/MiniEditor.py" line="895" />
       <location filename="../QScintilla/MiniEditor.py" line="894" />
-      <location filename="../QScintilla/MiniEditor.py" line="893" />
       <location filename="../QScintilla/ShellWindow.py" line="569" />
       <location filename="../QScintilla/ShellWindow.py" line="568" />
       <source>Move left one character</source>
@@ -91192,14 +91233,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1719" />
-      <location filename="../QScintilla/MiniEditor.py" line="895" />
+      <location filename="../QScintilla/MiniEditor.py" line="896" />
       <location filename="../QScintilla/ShellWindow.py" line="570" />
       <source>Left</source>
       <translation>Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1727" />
-      <location filename="../QScintilla/MiniEditor.py" line="903" />
+      <location filename="../QScintilla/MiniEditor.py" line="904" />
       <location filename="../QScintilla/ShellWindow.py" line="578" />
       <source>Meta+B</source>
       <translation>Meta+B</translation>
@@ -91207,8 +91248,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1734" />
       <location filename="../ViewManager/ViewManager.py" line="1733" />
+      <location filename="../QScintilla/MiniEditor.py" line="911" />
       <location filename="../QScintilla/MiniEditor.py" line="910" />
-      <location filename="../QScintilla/MiniEditor.py" line="909" />
       <location filename="../QScintilla/ShellWindow.py" line="585" />
       <location filename="../QScintilla/ShellWindow.py" line="584" />
       <source>Move right one character</source>
@@ -91216,14 +91257,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1735" />
-      <location filename="../QScintilla/MiniEditor.py" line="911" />
+      <location filename="../QScintilla/MiniEditor.py" line="912" />
       <location filename="../QScintilla/ShellWindow.py" line="586" />
       <source>Right</source>
       <translation>Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1742" />
-      <location filename="../QScintilla/MiniEditor.py" line="918" />
+      <location filename="../QScintilla/MiniEditor.py" line="919" />
       <location filename="../QScintilla/ShellWindow.py" line="593" />
       <source>Meta+F</source>
       <translation>Meta+F</translation>
@@ -91231,8 +91272,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1814" />
       <location filename="../ViewManager/ViewManager.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="991" />
       <location filename="../QScintilla/MiniEditor.py" line="990" />
-      <location filename="../QScintilla/MiniEditor.py" line="989" />
       <location filename="../QScintilla/ShellWindow.py" line="601" />
       <location filename="../QScintilla/ShellWindow.py" line="600" />
       <source>Move left one word</source>
@@ -91241,8 +91282,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1822" />
       <location filename="../ViewManager/ViewManager.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="998" />
-      <location filename="../QScintilla/MiniEditor.py" line="966" />
+      <location filename="../QScintilla/MiniEditor.py" line="999" />
+      <location filename="../QScintilla/MiniEditor.py" line="967" />
       <location filename="../QScintilla/ShellWindow.py" line="609" />
       <source>Alt+Left</source>
       <translation>Alt+Left</translation>
@@ -91250,8 +91291,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1878" />
       <location filename="../ViewManager/ViewManager.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1058" />
-      <location filename="../QScintilla/MiniEditor.py" line="1002" />
+      <location filename="../QScintilla/MiniEditor.py" line="1059" />
+      <location filename="../QScintilla/MiniEditor.py" line="1003" />
       <location filename="../QScintilla/ShellWindow.py" line="613" />
       <source>Ctrl+Left</source>
       <translation>Ctrl+Left</translation>
@@ -91259,8 +91300,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1834" />
       <location filename="../ViewManager/ViewManager.py" line="1833" />
+      <location filename="../QScintilla/MiniEditor.py" line="1011" />
       <location filename="../QScintilla/MiniEditor.py" line="1010" />
-      <location filename="../QScintilla/MiniEditor.py" line="1009" />
       <location filename="../QScintilla/ShellWindow.py" line="621" />
       <location filename="../QScintilla/ShellWindow.py" line="620" />
       <source>Move right one word</source>
@@ -91269,8 +91310,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2615" />
       <location filename="../ViewManager/ViewManager.py" line="1842" />
-      <location filename="../QScintilla/MiniEditor.py" line="1812" />
-      <location filename="../QScintilla/MiniEditor.py" line="1022" />
+      <location filename="../QScintilla/MiniEditor.py" line="1813" />
+      <location filename="../QScintilla/MiniEditor.py" line="1023" />
       <location filename="../QScintilla/ShellWindow.py" line="629" />
       <source>Ctrl+Right</source>
       <translation>Ctrl+Right</translation>
@@ -91278,8 +91319,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1852" />
       <location filename="../ViewManager/ViewManager.py" line="1849" />
-      <location filename="../QScintilla/MiniEditor.py" line="1032" />
-      <location filename="../QScintilla/MiniEditor.py" line="1029" />
+      <location filename="../QScintilla/MiniEditor.py" line="1033" />
+      <location filename="../QScintilla/MiniEditor.py" line="1030" />
       <location filename="../QScintilla/ShellWindow.py" line="639" />
       <location filename="../QScintilla/ShellWindow.py" line="636" />
       <source>Move to first visible character in document line</source>
@@ -91288,8 +91329,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2876" />
       <location filename="../ViewManager/ViewManager.py" line="1862" />
-      <location filename="../QScintilla/MiniEditor.py" line="2073" />
-      <location filename="../QScintilla/MiniEditor.py" line="1042" />
+      <location filename="../QScintilla/MiniEditor.py" line="2074" />
+      <location filename="../QScintilla/MiniEditor.py" line="1043" />
       <location filename="../QScintilla/ShellWindow.py" line="649" />
       <source>Home</source>
       <translation>Home</translation>
@@ -91297,8 +91338,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1890" />
       <location filename="../ViewManager/ViewManager.py" line="1889" />
+      <location filename="../QScintilla/MiniEditor.py" line="1071" />
       <location filename="../QScintilla/MiniEditor.py" line="1070" />
-      <location filename="../QScintilla/MiniEditor.py" line="1069" />
       <location filename="../QScintilla/ShellWindow.py" line="657" />
       <location filename="../QScintilla/ShellWindow.py" line="656" />
       <source>Move to end of document line</source>
@@ -91306,7 +91347,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1898" />
-      <location filename="../QScintilla/MiniEditor.py" line="1078" />
+      <location filename="../QScintilla/MiniEditor.py" line="1079" />
       <location filename="../QScintilla/ShellWindow.py" line="665" />
       <source>Meta+E</source>
       <translation>Meta+E</translation>
@@ -91314,8 +91355,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2893" />
       <location filename="../ViewManager/ViewManager.py" line="1902" />
-      <location filename="../QScintilla/MiniEditor.py" line="2090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1082" />
+      <location filename="../QScintilla/MiniEditor.py" line="2091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1083" />
       <location filename="../QScintilla/ShellWindow.py" line="669" />
       <source>End</source>
       <translation>End</translation>
@@ -91323,8 +91364,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1750" />
       <location filename="../ViewManager/ViewManager.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="927" />
       <location filename="../QScintilla/MiniEditor.py" line="926" />
-      <location filename="../QScintilla/MiniEditor.py" line="925" />
       <location filename="../QScintilla/ShellWindow.py" line="677" />
       <location filename="../QScintilla/ShellWindow.py" line="676" />
       <source>Move up one line</source>
@@ -91332,14 +91373,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1751" />
-      <location filename="../QScintilla/MiniEditor.py" line="927" />
+      <location filename="../QScintilla/MiniEditor.py" line="928" />
       <location filename="../QScintilla/ShellWindow.py" line="678" />
       <source>Up</source>
       <translation>Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1758" />
-      <location filename="../QScintilla/MiniEditor.py" line="934" />
+      <location filename="../QScintilla/MiniEditor.py" line="935" />
       <location filename="../QScintilla/ShellWindow.py" line="685" />
       <source>Meta+P</source>
       <translation>Meta+P</translation>
@@ -91347,8 +91388,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1766" />
       <location filename="../ViewManager/ViewManager.py" line="1765" />
+      <location filename="../QScintilla/MiniEditor.py" line="943" />
       <location filename="../QScintilla/MiniEditor.py" line="942" />
-      <location filename="../QScintilla/MiniEditor.py" line="941" />
       <location filename="../QScintilla/ShellWindow.py" line="693" />
       <location filename="../QScintilla/ShellWindow.py" line="692" />
       <source>Move down one line</source>
@@ -91356,14 +91397,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1767" />
-      <location filename="../QScintilla/MiniEditor.py" line="943" />
+      <location filename="../QScintilla/MiniEditor.py" line="944" />
       <location filename="../QScintilla/ShellWindow.py" line="694" />
       <source>Down</source>
       <translation>Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="950" />
+      <location filename="../QScintilla/MiniEditor.py" line="951" />
       <location filename="../QScintilla/ShellWindow.py" line="701" />
       <source>Meta+N</source>
       <translation>Meta+N</translation>
@@ -91371,8 +91412,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2014" />
       <location filename="../ViewManager/ViewManager.py" line="1911" />
-      <location filename="../QScintilla/MiniEditor.py" line="1194" />
-      <location filename="../QScintilla/MiniEditor.py" line="1091" />
+      <location filename="../QScintilla/MiniEditor.py" line="1195" />
+      <location filename="../QScintilla/MiniEditor.py" line="1092" />
       <location filename="../QScintilla/ShellWindow.py" line="710" />
       <source>Ctrl+Down</source>
       <translation>Ctrl+Down</translation>
@@ -91380,8 +91421,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1994" />
       <location filename="../ViewManager/ViewManager.py" line="1923" />
-      <location filename="../QScintilla/MiniEditor.py" line="1174" />
-      <location filename="../QScintilla/MiniEditor.py" line="1103" />
+      <location filename="../QScintilla/MiniEditor.py" line="1175" />
+      <location filename="../QScintilla/MiniEditor.py" line="1104" />
       <location filename="../QScintilla/ShellWindow.py" line="722" />
       <source>Ctrl+Up</source>
       <translation>Ctrl+Up</translation>
@@ -91389,8 +91430,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1958" />
       <location filename="../ViewManager/ViewManager.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1139" />
       <location filename="../QScintilla/MiniEditor.py" line="1138" />
-      <location filename="../QScintilla/MiniEditor.py" line="1137" />
       <location filename="../QScintilla/ShellWindow.py" line="733" />
       <location filename="../QScintilla/ShellWindow.py" line="732" />
       <source>Move up one page</source>
@@ -91398,7 +91439,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1959" />
-      <location filename="../QScintilla/MiniEditor.py" line="1139" />
+      <location filename="../QScintilla/MiniEditor.py" line="1140" />
       <location filename="../QScintilla/ShellWindow.py" line="734" />
       <source>PgUp</source>
       <translation>PgUp</translation>
@@ -91406,8 +91447,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1970" />
       <location filename="../ViewManager/ViewManager.py" line="1969" />
+      <location filename="../QScintilla/MiniEditor.py" line="1151" />
       <location filename="../QScintilla/MiniEditor.py" line="1150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1149" />
       <location filename="../QScintilla/ShellWindow.py" line="745" />
       <location filename="../QScintilla/ShellWindow.py" line="744" />
       <source>Move down one page</source>
@@ -91415,14 +91456,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1971" />
-      <location filename="../QScintilla/MiniEditor.py" line="1151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1152" />
       <location filename="../QScintilla/ShellWindow.py" line="746" />
       <source>PgDown</source>
       <translation>PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1978" />
-      <location filename="../QScintilla/MiniEditor.py" line="1158" />
+      <location filename="../QScintilla/MiniEditor.py" line="1159" />
       <location filename="../QScintilla/ShellWindow.py" line="753" />
       <source>Meta+V</source>
       <translation>Meta+V</translation>
@@ -91430,8 +91471,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2661" />
       <location filename="../ViewManager/ViewManager.py" line="2660" />
+      <location filename="../QScintilla/MiniEditor.py" line="1859" />
       <location filename="../QScintilla/MiniEditor.py" line="1858" />
-      <location filename="../QScintilla/MiniEditor.py" line="1857" />
       <location filename="../QScintilla/ShellWindow.py" line="761" />
       <location filename="../QScintilla/ShellWindow.py" line="760" />
       <source>Escape</source>
@@ -91439,7 +91480,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2662" />
-      <location filename="../QScintilla/MiniEditor.py" line="1859" />
+      <location filename="../QScintilla/MiniEditor.py" line="1860" />
       <location filename="../QScintilla/ShellWindow.py" line="762" />
       <source>Esc</source>
       <translation>Esc</translation>
@@ -91447,8 +91488,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2052" />
       <location filename="../ViewManager/ViewManager.py" line="2049" />
-      <location filename="../QScintilla/MiniEditor.py" line="1232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1229" />
+      <location filename="../QScintilla/MiniEditor.py" line="1233" />
+      <location filename="../QScintilla/MiniEditor.py" line="1230" />
       <location filename="../QScintilla/ShellWindow.py" line="775" />
       <location filename="../QScintilla/ShellWindow.py" line="772" />
       <source>Extend selection left one character</source>
@@ -91456,14 +91497,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2055" />
-      <location filename="../QScintilla/MiniEditor.py" line="1235" />
+      <location filename="../QScintilla/MiniEditor.py" line="1236" />
       <location filename="../QScintilla/ShellWindow.py" line="778" />
       <source>Shift+Left</source>
       <translation>Shift+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2062" />
-      <location filename="../QScintilla/MiniEditor.py" line="1242" />
+      <location filename="../QScintilla/MiniEditor.py" line="1243" />
       <location filename="../QScintilla/ShellWindow.py" line="785" />
       <source>Meta+Shift+B</source>
       <translation>Meta+Shift+B</translation>
@@ -91471,8 +91512,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2072" />
       <location filename="../ViewManager/ViewManager.py" line="2069" />
-      <location filename="../QScintilla/MiniEditor.py" line="1252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1249" />
+      <location filename="../QScintilla/MiniEditor.py" line="1253" />
+      <location filename="../QScintilla/MiniEditor.py" line="1250" />
       <location filename="../QScintilla/ShellWindow.py" line="795" />
       <location filename="../QScintilla/ShellWindow.py" line="792" />
       <source>Extend selection right one character</source>
@@ -91480,14 +91521,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2075" />
-      <location filename="../QScintilla/MiniEditor.py" line="1255" />
+      <location filename="../QScintilla/MiniEditor.py" line="1256" />
       <location filename="../QScintilla/ShellWindow.py" line="798" />
       <source>Shift+Right</source>
       <translation>Shift+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="1262" />
+      <location filename="../QScintilla/MiniEditor.py" line="1263" />
       <location filename="../QScintilla/ShellWindow.py" line="805" />
       <source>Meta+Shift+F</source>
       <translation>Meta+Shift+F</translation>
@@ -91495,8 +91536,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2166" />
       <location filename="../ViewManager/ViewManager.py" line="2165" />
+      <location filename="../QScintilla/MiniEditor.py" line="1347" />
       <location filename="../QScintilla/MiniEditor.py" line="1346" />
-      <location filename="../QScintilla/MiniEditor.py" line="1345" />
       <location filename="../QScintilla/ShellWindow.py" line="813" />
       <location filename="../QScintilla/ShellWindow.py" line="812" />
       <source>Extend selection left one word</source>
@@ -91505,8 +91546,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2175" />
       <location filename="../ViewManager/ViewManager.py" line="2135" />
-      <location filename="../QScintilla/MiniEditor.py" line="1355" />
-      <location filename="../QScintilla/MiniEditor.py" line="1315" />
+      <location filename="../QScintilla/MiniEditor.py" line="1356" />
+      <location filename="../QScintilla/MiniEditor.py" line="1316" />
       <location filename="../QScintilla/ShellWindow.py" line="822" />
       <source>Alt+Shift+Left</source>
       <translation>Alt+Shift+Left</translation>
@@ -91514,8 +91555,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3079" />
       <location filename="../ViewManager/ViewManager.py" line="2181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2276" />
-      <location filename="../QScintilla/MiniEditor.py" line="1361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2277" />
+      <location filename="../QScintilla/MiniEditor.py" line="1362" />
       <location filename="../QScintilla/ShellWindow.py" line="828" />
       <source>Ctrl+Shift+Left</source>
       <translation>Ctrl+Shift+Left</translation>
@@ -91523,8 +91564,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2192" />
       <location filename="../ViewManager/ViewManager.py" line="2189" />
-      <location filename="../QScintilla/MiniEditor.py" line="1372" />
-      <location filename="../QScintilla/MiniEditor.py" line="1369" />
+      <location filename="../QScintilla/MiniEditor.py" line="1373" />
+      <location filename="../QScintilla/MiniEditor.py" line="1370" />
       <location filename="../QScintilla/ShellWindow.py" line="839" />
       <location filename="../QScintilla/ShellWindow.py" line="836" />
       <source>Extend selection right one word</source>
@@ -91534,9 +91575,9 @@
       <location filename="../ViewManager/ViewManager.py" line="2953" />
       <location filename="../ViewManager/ViewManager.py" line="2203" />
       <location filename="../ViewManager/ViewManager.py" line="2157" />
-      <location filename="../QScintilla/MiniEditor.py" line="2150" />
-      <location filename="../QScintilla/MiniEditor.py" line="1383" />
-      <location filename="../QScintilla/MiniEditor.py" line="1337" />
+      <location filename="../QScintilla/MiniEditor.py" line="2151" />
+      <location filename="../QScintilla/MiniEditor.py" line="1384" />
+      <location filename="../QScintilla/MiniEditor.py" line="1338" />
       <location filename="../QScintilla/ShellWindow.py" line="850" />
       <source>Alt+Shift+Right</source>
       <translation>Alt+Shift+Right</translation>
@@ -91544,8 +91585,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2640" />
       <location filename="../ViewManager/ViewManager.py" line="2209" />
-      <location filename="../QScintilla/MiniEditor.py" line="1837" />
-      <location filename="../QScintilla/MiniEditor.py" line="1389" />
+      <location filename="../QScintilla/MiniEditor.py" line="1838" />
+      <location filename="../QScintilla/MiniEditor.py" line="1390" />
       <location filename="../QScintilla/ShellWindow.py" line="856" />
       <source>Ctrl+Shift+Right</source>
       <translation>Ctrl+Shift+Right</translation>
@@ -91553,8 +91594,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2221" />
       <location filename="../ViewManager/ViewManager.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="1401" />
-      <location filename="../QScintilla/MiniEditor.py" line="1397" />
+      <location filename="../QScintilla/MiniEditor.py" line="1402" />
+      <location filename="../QScintilla/MiniEditor.py" line="1398" />
       <location filename="../QScintilla/ShellWindow.py" line="868" />
       <location filename="../QScintilla/ShellWindow.py" line="864" />
       <source>Extend selection to first visible character in document line</source>
@@ -91562,7 +91603,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2232" />
-      <location filename="../QScintilla/MiniEditor.py" line="1412" />
+      <location filename="../QScintilla/MiniEditor.py" line="1413" />
       <location filename="../QScintilla/ShellWindow.py" line="879" />
       <source>Shift+Home</source>
       <translation>Shift+Home</translation>
@@ -91570,8 +91611,8 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2242" />
       <location filename="../ViewManager/ViewManager.py" line="2239" />
-      <location filename="../QScintilla/MiniEditor.py" line="1422" />
-      <location filename="../QScintilla/MiniEditor.py" line="1419" />
+      <location filename="../QScintilla/MiniEditor.py" line="1423" />
+      <location filename="../QScintilla/MiniEditor.py" line="1420" />
       <location filename="../QScintilla/ShellWindow.py" line="889" />
       <location filename="../QScintilla/ShellWindow.py" line="886" />
       <source>Extend selection to end of document line</source>
@@ -91579,14 +91620,14 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2252" />
-      <location filename="../QScintilla/MiniEditor.py" line="1432" />
+      <location filename="../QScintilla/MiniEditor.py" line="1433" />
       <location filename="../QScintilla/ShellWindow.py" line="899" />
       <source>Meta+Shift+E</source>
       <translation>Meta+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2256" />
-      <location filename="../QScintilla/MiniEditor.py" line="1436" />
+      <location filename="../QScintilla/MiniEditor.py" line="1437" />
       <location filename="../QScintilla/ShellWindow.py" line="903" />
       <source>Shift+End</source>
       <translation>Shift+End</translation>
@@ -91595,21 +91636,21 @@
       <location filename="../ViewManager/ViewManager.py" line="4024" />
       <location filename="../ViewManager/ViewManager.py" line="4022" />
       <location filename="../ViewManager/ViewManager.py" line="3455" />
-      <location filename="../QScintilla/MiniEditor.py" line="2532" />
+      <location filename="../QScintilla/MiniEditor.py" line="2533" />
       <location filename="../QScintilla/ShellWindow.py" line="917" />
       <source>Search</source>
       <translation>搜索</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3457" />
-      <location filename="../QScintilla/MiniEditor.py" line="2534" />
+      <location filename="../QScintilla/MiniEditor.py" line="2535" />
       <location filename="../QScintilla/ShellWindow.py" line="919" />
       <source>&amp;Search...</source>
       <translation>搜索(&amp;S)…</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3459" />
-      <location filename="../QScintilla/MiniEditor.py" line="2536" />
+      <location filename="../QScintilla/MiniEditor.py" line="2537" />
       <location filename="../QScintilla/ShellWindow.py" line="921" />
       <source>Ctrl+F</source>
       <comment>Search|Search</comment>
@@ -91617,7 +91658,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3466" />
-      <location filename="../QScintilla/MiniEditor.py" line="2543" />
+      <location filename="../QScintilla/MiniEditor.py" line="2544" />
       <location filename="../QScintilla/ShellWindow.py" line="928" />
       <source>Search for a text</source>
       <translation>搜索文本</translation>
@@ -91629,21 +91670,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3481" />
-      <location filename="../QScintilla/MiniEditor.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="2559" />
       <location filename="../QScintilla/ShellWindow.py" line="943" />
       <source>Search next</source>
       <translation>搜索下一个</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2560" />
+      <location filename="../QScintilla/MiniEditor.py" line="2561" />
       <location filename="../QScintilla/ShellWindow.py" line="945" />
       <source>Search &amp;next</source>
       <translation>搜索下一个(&amp;N)</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3485" />
-      <location filename="../QScintilla/MiniEditor.py" line="2562" />
+      <location filename="../QScintilla/MiniEditor.py" line="2563" />
       <location filename="../QScintilla/ShellWindow.py" line="947" />
       <source>F3</source>
       <comment>Search|Search next</comment>
@@ -91651,7 +91692,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3492" />
-      <location filename="../QScintilla/MiniEditor.py" line="2569" />
+      <location filename="../QScintilla/MiniEditor.py" line="2570" />
       <location filename="../QScintilla/ShellWindow.py" line="954" />
       <source>Search next occurrence of text</source>
       <translation>搜索下一处文本</translation>
@@ -91663,21 +91704,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3507" />
-      <location filename="../QScintilla/MiniEditor.py" line="2584" />
+      <location filename="../QScintilla/MiniEditor.py" line="2585" />
       <location filename="../QScintilla/ShellWindow.py" line="971" />
       <source>Search previous</source>
       <translation>搜索上一个</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3509" />
-      <location filename="../QScintilla/MiniEditor.py" line="2586" />
+      <location filename="../QScintilla/MiniEditor.py" line="2587" />
       <location filename="../QScintilla/ShellWindow.py" line="973" />
       <source>Search &amp;previous</source>
       <translation>搜索上一个(&amp;P)</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3511" />
-      <location filename="../QScintilla/MiniEditor.py" line="2588" />
+      <location filename="../QScintilla/MiniEditor.py" line="2589" />
       <location filename="../QScintilla/ShellWindow.py" line="975" />
       <source>Shift+F3</source>
       <comment>Search|Search previous</comment>
@@ -91685,7 +91726,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3520" />
-      <location filename="../QScintilla/MiniEditor.py" line="2597" />
+      <location filename="../QScintilla/MiniEditor.py" line="2598" />
       <location filename="../QScintilla/ShellWindow.py" line="984" />
       <source>Search previous occurrence of text</source>
       <translation>搜索上一处文本</translation>
@@ -91697,21 +91738,21 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2757" />
+      <location filename="../QScintilla/MiniEditor.py" line="2758" />
       <location filename="../QScintilla/ShellWindow.py" line="1010" />
       <source>Zoom in</source>
       <translation>放大</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4067" />
-      <location filename="../QScintilla/MiniEditor.py" line="2759" />
+      <location filename="../QScintilla/MiniEditor.py" line="2760" />
       <location filename="../QScintilla/ShellWindow.py" line="1012" />
       <source>Zoom &amp;in</source>
       <translation>放大(&amp;I)</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4069" />
-      <location filename="../QScintilla/MiniEditor.py" line="2761" />
+      <location filename="../QScintilla/MiniEditor.py" line="2762" />
       <location filename="../QScintilla/ShellWindow.py" line="1014" />
       <source>Ctrl++</source>
       <comment>View|Zoom in</comment>
@@ -91719,7 +91760,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4072" />
-      <location filename="../QScintilla/MiniEditor.py" line="2764" />
+      <location filename="../QScintilla/MiniEditor.py" line="2765" />
       <location filename="../QScintilla/ShellWindow.py" line="1017" />
       <source>Zoom In</source>
       <comment>View|Zoom in</comment>
@@ -91727,35 +91768,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4078" />
-      <location filename="../QScintilla/MiniEditor.py" line="2770" />
+      <location filename="../QScintilla/MiniEditor.py" line="2771" />
       <location filename="../QScintilla/ShellWindow.py" line="1023" />
       <source>Zoom in on the text</source>
       <translation>放大显示文本</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4081" />
-      <location filename="../QScintilla/MiniEditor.py" line="2773" />
+      <location filename="../QScintilla/MiniEditor.py" line="2774" />
       <location filename="../QScintilla/ShellWindow.py" line="1026" />
       <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
       <translation>&lt;b&gt;放大&lt;/b&gt;&lt;p&gt;放大显示文本。将使文本变大。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4091" />
-      <location filename="../QScintilla/MiniEditor.py" line="2783" />
+      <location filename="../QScintilla/MiniEditor.py" line="2784" />
       <location filename="../QScintilla/ShellWindow.py" line="1036" />
       <source>Zoom out</source>
       <translation>缩小</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4093" />
-      <location filename="../QScintilla/MiniEditor.py" line="2785" />
+      <location filename="../QScintilla/MiniEditor.py" line="2786" />
       <location filename="../QScintilla/ShellWindow.py" line="1038" />
       <source>Zoom &amp;out</source>
       <translation>缩小(&amp;O)</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4095" />
-      <location filename="../QScintilla/MiniEditor.py" line="2787" />
+      <location filename="../QScintilla/MiniEditor.py" line="2788" />
       <location filename="../QScintilla/ShellWindow.py" line="1040" />
       <source>Ctrl+-</source>
       <comment>View|Zoom out</comment>
@@ -91763,7 +91804,7 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4098" />
-      <location filename="../QScintilla/MiniEditor.py" line="2790" />
+      <location filename="../QScintilla/MiniEditor.py" line="2791" />
       <location filename="../QScintilla/ShellWindow.py" line="1043" />
       <source>Zoom Out</source>
       <comment>View|Zoom out</comment>
@@ -91771,35 +91812,35 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4104" />
-      <location filename="../QScintilla/MiniEditor.py" line="2796" />
+      <location filename="../QScintilla/MiniEditor.py" line="2797" />
       <location filename="../QScintilla/ShellWindow.py" line="1049" />
       <source>Zoom out on the text</source>
       <translation>缩小显示文本</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4107" />
-      <location filename="../QScintilla/MiniEditor.py" line="2799" />
+      <location filename="../QScintilla/MiniEditor.py" line="2800" />
       <location filename="../QScintilla/ShellWindow.py" line="1052" />
       <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
       <translation>&lt;b&gt;缩小&lt;/b&gt;&lt;p&gt;缩小显示文本。将使文本变小。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4117" />
-      <location filename="../QScintilla/MiniEditor.py" line="2809" />
+      <location filename="../QScintilla/MiniEditor.py" line="2810" />
       <location filename="../QScintilla/ShellWindow.py" line="1062" />
       <source>Zoom reset</source>
       <translation>重置缩放</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4119" />
-      <location filename="../QScintilla/MiniEditor.py" line="2811" />
+      <location filename="../QScintilla/MiniEditor.py" line="2812" />
       <location filename="../QScintilla/ShellWindow.py" line="1064" />
       <source>Zoom &amp;reset</source>
       <translation>重置缩放(&amp;R)</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4121" />
-      <location filename="../QScintilla/MiniEditor.py" line="2813" />
+      <location filename="../QScintilla/MiniEditor.py" line="2814" />
       <location filename="../QScintilla/ShellWindow.py" line="1066" />
       <source>Ctrl+0</source>
       <comment>View|Zoom reset</comment>
@@ -91807,42 +91848,42 @@
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4128" />
-      <location filename="../QScintilla/MiniEditor.py" line="2820" />
+      <location filename="../QScintilla/MiniEditor.py" line="2821" />
       <location filename="../QScintilla/ShellWindow.py" line="1073" />
       <source>Reset the zoom of the text</source>
       <translation>重置文本缩放大小</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4131" />
-      <location filename="../QScintilla/MiniEditor.py" line="2823" />
+      <location filename="../QScintilla/MiniEditor.py" line="2824" />
       <location filename="../QScintilla/ShellWindow.py" line="1076" />
       <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4142" />
-      <location filename="../QScintilla/MiniEditor.py" line="2834" />
+      <location filename="../QScintilla/MiniEditor.py" line="2835" />
       <location filename="../QScintilla/ShellWindow.py" line="1087" />
       <source>Zoom</source>
       <translation>缩放</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4144" />
-      <location filename="../QScintilla/MiniEditor.py" line="2836" />
+      <location filename="../QScintilla/MiniEditor.py" line="2837" />
       <location filename="../QScintilla/ShellWindow.py" line="1089" />
       <source>&amp;Zoom</source>
       <translation>缩放(&amp;Z)</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4151" />
-      <location filename="../QScintilla/MiniEditor.py" line="2843" />
+      <location filename="../QScintilla/MiniEditor.py" line="2844" />
       <location filename="../QScintilla/ShellWindow.py" line="1096" />
       <source>Zoom the text</source>
       <translation>缩放文本</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="4154" />
-      <location filename="../QScintilla/MiniEditor.py" line="2846" />
+      <location filename="../QScintilla/MiniEditor.py" line="2847" />
       <location filename="../QScintilla/ShellWindow.py" line="1099" />
       <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
       <translation>&lt;b&gt;缩放&lt;/b&gt;&lt;p&gt;缩放文本。打开一个对话框以输入所需大小。&lt;/p&gt;</translation>
@@ -91850,984 +91891,984 @@
     <message>
       <location filename="../ViewManager/ViewManager.py" line="804" />
       <location filename="../ViewManager/ViewManager.py" line="802" />
-      <location filename="../QScintilla/MiniEditor.py" line="740" />
+      <location filename="../QScintilla/MiniEditor.py" line="741" />
       <source>Print Preview</source>
       <translation>打印预览</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1782" />
       <location filename="../ViewManager/ViewManager.py" line="1781" />
+      <location filename="../QScintilla/MiniEditor.py" line="959" />
       <location filename="../QScintilla/MiniEditor.py" line="958" />
-      <location filename="../QScintilla/MiniEditor.py" line="957" />
       <source>Move left one word part</source>
       <translation>左移一个单词部分</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1798" />
       <location filename="../ViewManager/ViewManager.py" line="1797" />
+      <location filename="../QScintilla/MiniEditor.py" line="975" />
       <location filename="../QScintilla/MiniEditor.py" line="974" />
-      <location filename="../QScintilla/MiniEditor.py" line="973" />
       <source>Move right one word part</source>
       <translation>右移一个单词部分</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2931" />
       <location filename="../ViewManager/ViewManager.py" line="1806" />
-      <location filename="../QScintilla/MiniEditor.py" line="2128" />
-      <location filename="../QScintilla/MiniEditor.py" line="1018" />
-      <location filename="../QScintilla/MiniEditor.py" line="982" />
+      <location filename="../QScintilla/MiniEditor.py" line="2129" />
+      <location filename="../QScintilla/MiniEditor.py" line="1019" />
+      <location filename="../QScintilla/MiniEditor.py" line="983" />
       <source>Alt+Right</source>
       <translation>Alt+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1870" />
       <location filename="../ViewManager/ViewManager.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1051" />
       <location filename="../QScintilla/MiniEditor.py" line="1050" />
-      <location filename="../QScintilla/MiniEditor.py" line="1049" />
       <source>Move to start of display line</source>
       <translation>移动至所显示行的起始位置</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1882" />
-      <location filename="../QScintilla/MiniEditor.py" line="1062" />
+      <location filename="../QScintilla/MiniEditor.py" line="1063" />
       <source>Alt+Home</source>
       <translation>Alt+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1910" />
       <location filename="../ViewManager/ViewManager.py" line="1909" />
+      <location filename="../QScintilla/MiniEditor.py" line="1091" />
       <location filename="../QScintilla/MiniEditor.py" line="1090" />
-      <location filename="../QScintilla/MiniEditor.py" line="1089" />
       <source>Scroll view down one line</source>
       <translation>视图向下滚动一行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1922" />
       <location filename="../ViewManager/ViewManager.py" line="1921" />
+      <location filename="../QScintilla/MiniEditor.py" line="1103" />
       <location filename="../QScintilla/MiniEditor.py" line="1102" />
-      <location filename="../QScintilla/MiniEditor.py" line="1101" />
       <source>Scroll view up one line</source>
       <translation>视图向上滚动一行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1934" />
       <location filename="../ViewManager/ViewManager.py" line="1933" />
+      <location filename="../QScintilla/MiniEditor.py" line="1115" />
       <location filename="../QScintilla/MiniEditor.py" line="1114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1113" />
       <source>Move up one paragraph</source>
       <translation>上移一段</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1935" />
-      <location filename="../QScintilla/MiniEditor.py" line="1115" />
+      <location filename="../QScintilla/MiniEditor.py" line="1116" />
       <source>Alt+Up</source>
       <translation>Alt+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1946" />
       <location filename="../ViewManager/ViewManager.py" line="1945" />
+      <location filename="../QScintilla/MiniEditor.py" line="1127" />
       <location filename="../QScintilla/MiniEditor.py" line="1126" />
-      <location filename="../QScintilla/MiniEditor.py" line="1125" />
       <source>Move down one paragraph</source>
       <translation>下移一段</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1947" />
-      <location filename="../QScintilla/MiniEditor.py" line="1127" />
+      <location filename="../QScintilla/MiniEditor.py" line="1128" />
       <source>Alt+Down</source>
       <translation>Alt+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1986" />
       <location filename="../ViewManager/ViewManager.py" line="1985" />
+      <location filename="../QScintilla/MiniEditor.py" line="1167" />
       <location filename="../QScintilla/MiniEditor.py" line="1166" />
-      <location filename="../QScintilla/MiniEditor.py" line="1165" />
       <source>Move to start of document</source>
       <translation>移动至文档的起始位置</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="1998" />
-      <location filename="../QScintilla/MiniEditor.py" line="1178" />
+      <location filename="../QScintilla/MiniEditor.py" line="1179" />
       <source>Ctrl+Home</source>
       <translation>Ctrl+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2006" />
       <location filename="../ViewManager/ViewManager.py" line="2005" />
+      <location filename="../QScintilla/MiniEditor.py" line="1187" />
       <location filename="../QScintilla/MiniEditor.py" line="1186" />
-      <location filename="../QScintilla/MiniEditor.py" line="1185" />
       <source>Move to end of document</source>
       <translation>移动至文档的末尾</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2018" />
-      <location filename="../QScintilla/MiniEditor.py" line="1198" />
+      <location filename="../QScintilla/MiniEditor.py" line="1199" />
       <source>Ctrl+End</source>
       <translation>Ctrl+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2038" />
       <location filename="../ViewManager/ViewManager.py" line="2037" />
+      <location filename="../QScintilla/MiniEditor.py" line="1219" />
       <location filename="../QScintilla/MiniEditor.py" line="1218" />
-      <location filename="../QScintilla/MiniEditor.py" line="1217" />
       <source>Unindent one level</source>
       <translation>取消缩进一级</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2039" />
-      <location filename="../QScintilla/MiniEditor.py" line="1219" />
+      <location filename="../QScintilla/MiniEditor.py" line="1220" />
       <source>Shift+Tab</source>
       <translation>Shift+Tab</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2090" />
       <location filename="../ViewManager/ViewManager.py" line="2089" />
+      <location filename="../QScintilla/MiniEditor.py" line="1271" />
       <location filename="../QScintilla/MiniEditor.py" line="1270" />
-      <location filename="../QScintilla/MiniEditor.py" line="1269" />
       <source>Extend selection up one line</source>
       <translation>选区向上扩展一行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2091" />
-      <location filename="../QScintilla/MiniEditor.py" line="1271" />
+      <location filename="../QScintilla/MiniEditor.py" line="1272" />
       <source>Shift+Up</source>
       <translation>Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2098" />
-      <location filename="../QScintilla/MiniEditor.py" line="1278" />
+      <location filename="../QScintilla/MiniEditor.py" line="1279" />
       <source>Meta+Shift+P</source>
       <translation>Meta+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2106" />
       <location filename="../ViewManager/ViewManager.py" line="2105" />
+      <location filename="../QScintilla/MiniEditor.py" line="1287" />
       <location filename="../QScintilla/MiniEditor.py" line="1286" />
-      <location filename="../QScintilla/MiniEditor.py" line="1285" />
       <source>Extend selection down one line</source>
       <translation>选区向下扩展一行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2107" />
-      <location filename="../QScintilla/MiniEditor.py" line="1287" />
+      <location filename="../QScintilla/MiniEditor.py" line="1288" />
       <source>Shift+Down</source>
       <translation>Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2114" />
-      <location filename="../QScintilla/MiniEditor.py" line="1294" />
+      <location filename="../QScintilla/MiniEditor.py" line="1295" />
       <source>Meta+Shift+N</source>
       <translation>Meta+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2124" />
       <location filename="../ViewManager/ViewManager.py" line="2121" />
-      <location filename="../QScintilla/MiniEditor.py" line="1304" />
-      <location filename="../QScintilla/MiniEditor.py" line="1301" />
+      <location filename="../QScintilla/MiniEditor.py" line="1305" />
+      <location filename="../QScintilla/MiniEditor.py" line="1302" />
       <source>Extend selection left one word part</source>
       <translation>选区向左扩展一个单词部分</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2146" />
       <location filename="../ViewManager/ViewManager.py" line="2143" />
-      <location filename="../QScintilla/MiniEditor.py" line="1326" />
-      <location filename="../QScintilla/MiniEditor.py" line="1323" />
+      <location filename="../QScintilla/MiniEditor.py" line="1327" />
+      <location filename="../QScintilla/MiniEditor.py" line="1324" />
       <source>Extend selection right one word part</source>
       <translation>选区向右扩展一个单词部分</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2266" />
       <location filename="../ViewManager/ViewManager.py" line="2263" />
-      <location filename="../QScintilla/MiniEditor.py" line="1446" />
-      <location filename="../QScintilla/MiniEditor.py" line="1443" />
+      <location filename="../QScintilla/MiniEditor.py" line="1447" />
+      <location filename="../QScintilla/MiniEditor.py" line="1444" />
       <source>Extend selection up one paragraph</source>
       <translation>选区向上扩展一段</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2269" />
-      <location filename="../QScintilla/MiniEditor.py" line="1449" />
+      <location filename="../QScintilla/MiniEditor.py" line="1450" />
       <source>Alt+Shift+Up</source>
       <translation>Alt+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2282" />
       <location filename="../ViewManager/ViewManager.py" line="2279" />
-      <location filename="../QScintilla/MiniEditor.py" line="1462" />
-      <location filename="../QScintilla/MiniEditor.py" line="1459" />
+      <location filename="../QScintilla/MiniEditor.py" line="1463" />
+      <location filename="../QScintilla/MiniEditor.py" line="1460" />
       <source>Extend selection down one paragraph</source>
       <translation>选区向下扩展一段</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2285" />
-      <location filename="../QScintilla/MiniEditor.py" line="1465" />
+      <location filename="../QScintilla/MiniEditor.py" line="1466" />
       <source>Alt+Shift+Down</source>
       <translation>Alt+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2296" />
       <location filename="../ViewManager/ViewManager.py" line="2295" />
+      <location filename="../QScintilla/MiniEditor.py" line="1477" />
       <location filename="../QScintilla/MiniEditor.py" line="1476" />
-      <location filename="../QScintilla/MiniEditor.py" line="1475" />
       <source>Extend selection up one page</source>
       <translation>选区向上扩展一页</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2297" />
-      <location filename="../QScintilla/MiniEditor.py" line="1477" />
+      <location filename="../QScintilla/MiniEditor.py" line="1478" />
       <source>Shift+PgUp</source>
       <translation>Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2308" />
       <location filename="../ViewManager/ViewManager.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="1489" />
       <location filename="../QScintilla/MiniEditor.py" line="1488" />
-      <location filename="../QScintilla/MiniEditor.py" line="1487" />
       <source>Extend selection down one page</source>
       <translation>选区向下扩展一页</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2309" />
-      <location filename="../QScintilla/MiniEditor.py" line="1489" />
+      <location filename="../QScintilla/MiniEditor.py" line="1490" />
       <source>Shift+PgDown</source>
       <translation>Shift+PgDown</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2316" />
-      <location filename="../QScintilla/MiniEditor.py" line="1496" />
+      <location filename="../QScintilla/MiniEditor.py" line="1497" />
       <source>Meta+Shift+V</source>
       <translation>Meta+Shift+V</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2326" />
       <location filename="../ViewManager/ViewManager.py" line="2323" />
-      <location filename="../QScintilla/MiniEditor.py" line="1506" />
-      <location filename="../QScintilla/MiniEditor.py" line="1503" />
+      <location filename="../QScintilla/MiniEditor.py" line="1507" />
+      <location filename="../QScintilla/MiniEditor.py" line="1504" />
       <source>Extend selection to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2336" />
-      <location filename="../QScintilla/MiniEditor.py" line="1516" />
+      <location filename="../QScintilla/MiniEditor.py" line="1517" />
       <source>Ctrl+Shift+Up</source>
       <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2341" />
-      <location filename="../QScintilla/MiniEditor.py" line="1521" />
+      <location filename="../QScintilla/MiniEditor.py" line="1522" />
       <source>Ctrl+Shift+Home</source>
       <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2352" />
       <location filename="../ViewManager/ViewManager.py" line="2349" />
-      <location filename="../QScintilla/MiniEditor.py" line="1532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1529" />
+      <location filename="../QScintilla/MiniEditor.py" line="1533" />
+      <location filename="../QScintilla/MiniEditor.py" line="1530" />
       <source>Extend selection to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2363" />
-      <location filename="../QScintilla/MiniEditor.py" line="1543" />
+      <location filename="../QScintilla/MiniEditor.py" line="1544" />
       <source>Ctrl+Shift+Down</source>
       <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2369" />
-      <location filename="../QScintilla/MiniEditor.py" line="1549" />
+      <location filename="../QScintilla/MiniEditor.py" line="1550" />
       <source>Ctrl+Shift+End</source>
       <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2402" />
       <location filename="../ViewManager/ViewManager.py" line="2399" />
-      <location filename="../QScintilla/MiniEditor.py" line="1582" />
-      <location filename="../QScintilla/MiniEditor.py" line="1579" />
+      <location filename="../QScintilla/MiniEditor.py" line="1583" />
+      <location filename="../QScintilla/MiniEditor.py" line="1580" />
       <source>Delete previous character if not at start of line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2531" />
       <location filename="../ViewManager/ViewManager.py" line="2530" />
+      <location filename="../QScintilla/MiniEditor.py" line="1697" />
       <location filename="../QScintilla/MiniEditor.py" line="1696" />
-      <location filename="../QScintilla/MiniEditor.py" line="1695" />
       <source>Duplicate current line</source>
       <translation>重复当前行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2532" />
-      <location filename="../QScintilla/MiniEditor.py" line="1697" />
+      <location filename="../QScintilla/MiniEditor.py" line="1698" />
       <source>Ctrl+D</source>
       <translation>Ctrl+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2545" />
       <location filename="../ViewManager/ViewManager.py" line="2542" />
-      <location filename="../QScintilla/MiniEditor.py" line="1710" />
-      <location filename="../QScintilla/MiniEditor.py" line="1707" />
+      <location filename="../QScintilla/MiniEditor.py" line="1711" />
+      <location filename="../QScintilla/MiniEditor.py" line="1708" />
       <source>Swap current and previous lines</source>
       <translation>当前行与上一行交换位置</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2548" />
-      <location filename="../QScintilla/MiniEditor.py" line="1713" />
+      <location filename="../QScintilla/MiniEditor.py" line="1714" />
       <source>Ctrl+T</source>
       <translation>Ctrl+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2559" />
       <location filename="../ViewManager/ViewManager.py" line="2558" />
+      <location filename="../QScintilla/MiniEditor.py" line="1725" />
       <location filename="../QScintilla/MiniEditor.py" line="1724" />
-      <location filename="../QScintilla/MiniEditor.py" line="1723" />
       <source>Reverse selected lines</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2560" />
-      <location filename="../QScintilla/MiniEditor.py" line="1725" />
+      <location filename="../QScintilla/MiniEditor.py" line="1726" />
       <source>Meta+Alt+R</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2571" />
       <location filename="../ViewManager/ViewManager.py" line="2570" />
+      <location filename="../QScintilla/MiniEditor.py" line="1737" />
       <location filename="../QScintilla/MiniEditor.py" line="1736" />
-      <location filename="../QScintilla/MiniEditor.py" line="1735" />
       <source>Cut current line</source>
       <translation>剪切当前行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2572" />
-      <location filename="../QScintilla/MiniEditor.py" line="1737" />
+      <location filename="../QScintilla/MiniEditor.py" line="1738" />
       <source>Alt+Shift+L</source>
       <translation>Alt+Shift+L</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2583" />
       <location filename="../ViewManager/ViewManager.py" line="2582" />
+      <location filename="../QScintilla/MiniEditor.py" line="1749" />
       <location filename="../QScintilla/MiniEditor.py" line="1748" />
-      <location filename="../QScintilla/MiniEditor.py" line="1747" />
       <source>Copy current line</source>
       <translation>复制当前行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2584" />
-      <location filename="../QScintilla/MiniEditor.py" line="1749" />
+      <location filename="../QScintilla/MiniEditor.py" line="1750" />
       <source>Ctrl+Shift+T</source>
       <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2595" />
       <location filename="../ViewManager/ViewManager.py" line="2594" />
+      <location filename="../QScintilla/MiniEditor.py" line="1761" />
       <location filename="../QScintilla/MiniEditor.py" line="1760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1759" />
       <source>Toggle insert/overtype</source>
       <translation>切换插入/改写状态</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2596" />
-      <location filename="../QScintilla/MiniEditor.py" line="1761" />
+      <location filename="../QScintilla/MiniEditor.py" line="1762" />
       <source>Ins</source>
       <translation>Ins</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3321" />
       <location filename="../ViewManager/ViewManager.py" line="3318" />
-      <location filename="../QScintilla/MiniEditor.py" line="1774" />
-      <location filename="../QScintilla/MiniEditor.py" line="1771" />
+      <location filename="../QScintilla/MiniEditor.py" line="1775" />
+      <location filename="../QScintilla/MiniEditor.py" line="1772" />
       <source>Convert selection to lower case</source>
       <translation>将所选内容转换成小写</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3324" />
-      <location filename="../QScintilla/MiniEditor.py" line="1777" />
+      <location filename="../QScintilla/MiniEditor.py" line="1778" />
       <source>Alt+Shift+U</source>
       <translation>Alt+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3337" />
       <location filename="../ViewManager/ViewManager.py" line="3334" />
-      <location filename="../QScintilla/MiniEditor.py" line="1790" />
-      <location filename="../QScintilla/MiniEditor.py" line="1787" />
+      <location filename="../QScintilla/MiniEditor.py" line="1791" />
+      <location filename="../QScintilla/MiniEditor.py" line="1788" />
       <source>Convert selection to upper case</source>
       <translation>将所选内容转换成大写</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3340" />
-      <location filename="../QScintilla/MiniEditor.py" line="1793" />
+      <location filename="../QScintilla/MiniEditor.py" line="1794" />
       <source>Ctrl+Shift+U</source>
       <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2607" />
       <location filename="../ViewManager/ViewManager.py" line="2606" />
+      <location filename="../QScintilla/MiniEditor.py" line="1805" />
       <location filename="../QScintilla/MiniEditor.py" line="1804" />
-      <location filename="../QScintilla/MiniEditor.py" line="1803" />
       <source>Move to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2619" />
-      <location filename="../QScintilla/MiniEditor.py" line="1816" />
+      <location filename="../QScintilla/MiniEditor.py" line="1817" />
       <source>Alt+End</source>
       <translation>Alt+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2629" />
       <location filename="../ViewManager/ViewManager.py" line="2626" />
-      <location filename="../QScintilla/MiniEditor.py" line="1826" />
-      <location filename="../QScintilla/MiniEditor.py" line="1823" />
+      <location filename="../QScintilla/MiniEditor.py" line="1827" />
+      <location filename="../QScintilla/MiniEditor.py" line="1824" />
       <source>Extend selection to end of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2649" />
       <location filename="../ViewManager/ViewManager.py" line="2648" />
+      <location filename="../QScintilla/MiniEditor.py" line="1847" />
       <location filename="../QScintilla/MiniEditor.py" line="1846" />
-      <location filename="../QScintilla/MiniEditor.py" line="1845" />
       <source>Formfeed</source>
       <translation>Formfeed</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2675" />
       <location filename="../ViewManager/ViewManager.py" line="2672" />
-      <location filename="../QScintilla/MiniEditor.py" line="1872" />
-      <location filename="../QScintilla/MiniEditor.py" line="1869" />
+      <location filename="../QScintilla/MiniEditor.py" line="1873" />
+      <location filename="../QScintilla/MiniEditor.py" line="1870" />
       <source>Extend rectangular selection down one line</source>
       <translation>矩形选区向下扩展一行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2678" />
-      <location filename="../QScintilla/MiniEditor.py" line="1875" />
+      <location filename="../QScintilla/MiniEditor.py" line="1876" />
       <source>Alt+Ctrl+Down</source>
       <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2686" />
-      <location filename="../QScintilla/MiniEditor.py" line="1883" />
+      <location filename="../QScintilla/MiniEditor.py" line="1884" />
       <source>Meta+Alt+Shift+N</source>
       <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2697" />
       <location filename="../ViewManager/ViewManager.py" line="2694" />
-      <location filename="../QScintilla/MiniEditor.py" line="1894" />
-      <location filename="../QScintilla/MiniEditor.py" line="1891" />
+      <location filename="../QScintilla/MiniEditor.py" line="1895" />
+      <location filename="../QScintilla/MiniEditor.py" line="1892" />
       <source>Extend rectangular selection up one line</source>
       <translation>矩形选区向上扩展一行</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2700" />
-      <location filename="../QScintilla/MiniEditor.py" line="1897" />
+      <location filename="../QScintilla/MiniEditor.py" line="1898" />
       <source>Alt+Ctrl+Up</source>
       <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2708" />
-      <location filename="../QScintilla/MiniEditor.py" line="1905" />
+      <location filename="../QScintilla/MiniEditor.py" line="1906" />
       <source>Meta+Alt+Shift+P</source>
       <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2719" />
       <location filename="../ViewManager/ViewManager.py" line="2716" />
-      <location filename="../QScintilla/MiniEditor.py" line="1916" />
-      <location filename="../QScintilla/MiniEditor.py" line="1913" />
+      <location filename="../QScintilla/MiniEditor.py" line="1917" />
+      <location filename="../QScintilla/MiniEditor.py" line="1914" />
       <source>Extend rectangular selection left one character</source>
       <translation>矩形选区向左扩展一个字符</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2722" />
-      <location filename="../QScintilla/MiniEditor.py" line="1919" />
+      <location filename="../QScintilla/MiniEditor.py" line="1920" />
       <source>Alt+Ctrl+Left</source>
       <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2730" />
-      <location filename="../QScintilla/MiniEditor.py" line="1927" />
+      <location filename="../QScintilla/MiniEditor.py" line="1928" />
       <source>Meta+Alt+Shift+B</source>
       <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2741" />
       <location filename="../ViewManager/ViewManager.py" line="2738" />
-      <location filename="../QScintilla/MiniEditor.py" line="1938" />
-      <location filename="../QScintilla/MiniEditor.py" line="1935" />
+      <location filename="../QScintilla/MiniEditor.py" line="1939" />
+      <location filename="../QScintilla/MiniEditor.py" line="1936" />
       <source>Extend rectangular selection right one character</source>
       <translation>矩形选区向右扩展一个字符</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2744" />
-      <location filename="../QScintilla/MiniEditor.py" line="1941" />
+      <location filename="../QScintilla/MiniEditor.py" line="1942" />
       <source>Alt+Ctrl+Right</source>
       <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2752" />
-      <location filename="../QScintilla/MiniEditor.py" line="1949" />
+      <location filename="../QScintilla/MiniEditor.py" line="1950" />
       <source>Meta+Alt+Shift+F</source>
       <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2765" />
       <location filename="../ViewManager/ViewManager.py" line="2760" />
-      <location filename="../QScintilla/MiniEditor.py" line="1962" />
-      <location filename="../QScintilla/MiniEditor.py" line="1957" />
+      <location filename="../QScintilla/MiniEditor.py" line="1963" />
+      <location filename="../QScintilla/MiniEditor.py" line="1958" />
       <source>Extend rectangular selection to first visible character in document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2778" />
-      <location filename="../QScintilla/MiniEditor.py" line="1975" />
+      <location filename="../QScintilla/MiniEditor.py" line="1976" />
       <source>Alt+Shift+Home</source>
       <translation>Alt+Shift+Home</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2789" />
       <location filename="../ViewManager/ViewManager.py" line="2786" />
-      <location filename="../QScintilla/MiniEditor.py" line="1986" />
-      <location filename="../QScintilla/MiniEditor.py" line="1983" />
+      <location filename="../QScintilla/MiniEditor.py" line="1987" />
+      <location filename="../QScintilla/MiniEditor.py" line="1984" />
       <source>Extend rectangular selection to end of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2800" />
-      <location filename="../QScintilla/MiniEditor.py" line="1997" />
+      <location filename="../QScintilla/MiniEditor.py" line="1998" />
       <source>Meta+Alt+Shift+E</source>
       <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2805" />
-      <location filename="../QScintilla/MiniEditor.py" line="2002" />
+      <location filename="../QScintilla/MiniEditor.py" line="2003" />
       <source>Alt+Shift+End</source>
       <translation>Alt+Shift+End</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2815" />
       <location filename="../ViewManager/ViewManager.py" line="2812" />
-      <location filename="../QScintilla/MiniEditor.py" line="2012" />
-      <location filename="../QScintilla/MiniEditor.py" line="2009" />
+      <location filename="../QScintilla/MiniEditor.py" line="2013" />
+      <location filename="../QScintilla/MiniEditor.py" line="2010" />
       <source>Extend rectangular selection up one page</source>
       <translation>矩形选区向上扩展一页</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2818" />
-      <location filename="../QScintilla/MiniEditor.py" line="2015" />
+      <location filename="../QScintilla/MiniEditor.py" line="2016" />
       <source>Alt+Shift+PgUp</source>
       <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2831" />
       <location filename="../ViewManager/ViewManager.py" line="2828" />
-      <location filename="../QScintilla/MiniEditor.py" line="2028" />
-      <location filename="../QScintilla/MiniEditor.py" line="2025" />
+      <location filename="../QScintilla/MiniEditor.py" line="2029" />
+      <location filename="../QScintilla/MiniEditor.py" line="2026" />
       <source>Extend rectangular selection down one page</source>
       <translation>矩形选区向下扩展一页</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2834" />
-      <location filename="../QScintilla/MiniEditor.py" line="2031" />
+      <location filename="../QScintilla/MiniEditor.py" line="2032" />
       <source>Alt+Shift+PgDown</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2842" />
-      <location filename="../QScintilla/MiniEditor.py" line="2039" />
+      <location filename="../QScintilla/MiniEditor.py" line="2040" />
       <source>Meta+Alt+Shift+V</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2851" />
       <location filename="../ViewManager/ViewManager.py" line="2850" />
+      <location filename="../QScintilla/MiniEditor.py" line="2515" />
       <location filename="../QScintilla/MiniEditor.py" line="2514" />
-      <location filename="../QScintilla/MiniEditor.py" line="2513" />
+      <location filename="../QScintilla/MiniEditor.py" line="2049" />
       <location filename="../QScintilla/MiniEditor.py" line="2048" />
-      <location filename="../QScintilla/MiniEditor.py" line="2047" />
       <source>Duplicate current selection</source>
       <translation>重复当前选区</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2852" />
-      <location filename="../QScintilla/MiniEditor.py" line="2515" />
-      <location filename="../QScintilla/MiniEditor.py" line="2049" />
+      <location filename="../QScintilla/MiniEditor.py" line="2516" />
+      <location filename="../QScintilla/MiniEditor.py" line="2050" />
       <source>Ctrl+Shift+D</source>
       <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2866" />
       <location filename="../ViewManager/ViewManager.py" line="2863" />
-      <location filename="../QScintilla/MiniEditor.py" line="2063" />
-      <location filename="../QScintilla/MiniEditor.py" line="2060" />
+      <location filename="../QScintilla/MiniEditor.py" line="2064" />
+      <location filename="../QScintilla/MiniEditor.py" line="2061" />
       <source>Scroll to start of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2885" />
       <location filename="../ViewManager/ViewManager.py" line="2884" />
+      <location filename="../QScintilla/MiniEditor.py" line="2083" />
       <location filename="../QScintilla/MiniEditor.py" line="2082" />
-      <location filename="../QScintilla/MiniEditor.py" line="2081" />
       <source>Scroll to end of document</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2904" />
       <location filename="../ViewManager/ViewManager.py" line="2901" />
-      <location filename="../QScintilla/MiniEditor.py" line="2101" />
-      <location filename="../QScintilla/MiniEditor.py" line="2098" />
+      <location filename="../QScintilla/MiniEditor.py" line="2102" />
+      <location filename="../QScintilla/MiniEditor.py" line="2099" />
       <source>Scroll vertically to center current line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2914" />
-      <location filename="../QScintilla/MiniEditor.py" line="2111" />
+      <location filename="../QScintilla/MiniEditor.py" line="2112" />
       <source>Meta+L</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2923" />
       <location filename="../ViewManager/ViewManager.py" line="2922" />
+      <location filename="../QScintilla/MiniEditor.py" line="2121" />
       <location filename="../QScintilla/MiniEditor.py" line="2120" />
-      <location filename="../QScintilla/MiniEditor.py" line="2119" />
       <source>Move to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2942" />
       <location filename="../ViewManager/ViewManager.py" line="2939" />
-      <location filename="../QScintilla/MiniEditor.py" line="2139" />
-      <location filename="../QScintilla/MiniEditor.py" line="2136" />
+      <location filename="../QScintilla/MiniEditor.py" line="2140" />
+      <location filename="../QScintilla/MiniEditor.py" line="2137" />
       <source>Extend selection to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2965" />
       <location filename="../ViewManager/ViewManager.py" line="2962" />
-      <location filename="../QScintilla/MiniEditor.py" line="2162" />
-      <location filename="../QScintilla/MiniEditor.py" line="2159" />
+      <location filename="../QScintilla/MiniEditor.py" line="2163" />
+      <location filename="../QScintilla/MiniEditor.py" line="2160" />
       <source>Move to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2982" />
       <location filename="../ViewManager/ViewManager.py" line="2979" />
-      <location filename="../QScintilla/MiniEditor.py" line="2179" />
-      <location filename="../QScintilla/MiniEditor.py" line="2176" />
+      <location filename="../QScintilla/MiniEditor.py" line="2180" />
+      <location filename="../QScintilla/MiniEditor.py" line="2177" />
       <source>Extend selection to end of previous word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="2999" />
       <location filename="../ViewManager/ViewManager.py" line="2996" />
-      <location filename="../QScintilla/MiniEditor.py" line="2196" />
-      <location filename="../QScintilla/MiniEditor.py" line="2193" />
+      <location filename="../QScintilla/MiniEditor.py" line="2197" />
+      <location filename="../QScintilla/MiniEditor.py" line="2194" />
       <source>Move to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3009" />
-      <location filename="../QScintilla/MiniEditor.py" line="2206" />
+      <location filename="../QScintilla/MiniEditor.py" line="2207" />
       <source>Meta+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3020" />
       <location filename="../ViewManager/ViewManager.py" line="3017" />
-      <location filename="../QScintilla/MiniEditor.py" line="2217" />
-      <location filename="../QScintilla/MiniEditor.py" line="2214" />
+      <location filename="../QScintilla/MiniEditor.py" line="2218" />
+      <location filename="../QScintilla/MiniEditor.py" line="2215" />
       <source>Extend selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3031" />
-      <location filename="../QScintilla/MiniEditor.py" line="2228" />
+      <location filename="../QScintilla/MiniEditor.py" line="2229" />
       <source>Meta+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3044" />
       <location filename="../ViewManager/ViewManager.py" line="3040" />
-      <location filename="../QScintilla/MiniEditor.py" line="2241" />
-      <location filename="../QScintilla/MiniEditor.py" line="2237" />
+      <location filename="../QScintilla/MiniEditor.py" line="2242" />
+      <location filename="../QScintilla/MiniEditor.py" line="2238" />
       <source>Extend rectangular selection to start of document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3056" />
-      <location filename="../QScintilla/MiniEditor.py" line="2253" />
+      <location filename="../QScintilla/MiniEditor.py" line="2254" />
       <source>Meta+Alt+Shift+A</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3068" />
       <location filename="../ViewManager/ViewManager.py" line="3065" />
-      <location filename="../QScintilla/MiniEditor.py" line="2265" />
-      <location filename="../QScintilla/MiniEditor.py" line="2262" />
+      <location filename="../QScintilla/MiniEditor.py" line="2266" />
+      <location filename="../QScintilla/MiniEditor.py" line="2263" />
       <source>Extend selection to start of display line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3091" />
       <location filename="../ViewManager/ViewManager.py" line="3088" />
-      <location filename="../QScintilla/MiniEditor.py" line="2288" />
-      <location filename="../QScintilla/MiniEditor.py" line="2285" />
+      <location filename="../QScintilla/MiniEditor.py" line="2289" />
+      <location filename="../QScintilla/MiniEditor.py" line="2286" />
       <source>Move to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3109" />
       <location filename="../ViewManager/ViewManager.py" line="3105" />
-      <location filename="../QScintilla/MiniEditor.py" line="2306" />
-      <location filename="../QScintilla/MiniEditor.py" line="2302" />
+      <location filename="../QScintilla/MiniEditor.py" line="2307" />
+      <location filename="../QScintilla/MiniEditor.py" line="2303" />
       <source>Extend selection to start of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3128" />
       <location filename="../ViewManager/ViewManager.py" line="3124" />
-      <location filename="../QScintilla/MiniEditor.py" line="2325" />
-      <location filename="../QScintilla/MiniEditor.py" line="2321" />
+      <location filename="../QScintilla/MiniEditor.py" line="2326" />
+      <location filename="../QScintilla/MiniEditor.py" line="2322" />
       <source>Move to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3148" />
       <location filename="../ViewManager/ViewManager.py" line="3143" />
-      <location filename="../QScintilla/MiniEditor.py" line="2345" />
-      <location filename="../QScintilla/MiniEditor.py" line="2340" />
+      <location filename="../QScintilla/MiniEditor.py" line="2346" />
+      <location filename="../QScintilla/MiniEditor.py" line="2341" />
       <source>Extend selection to first visible character in display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3167" />
       <location filename="../ViewManager/ViewManager.py" line="3164" />
-      <location filename="../QScintilla/MiniEditor.py" line="2364" />
-      <location filename="../QScintilla/MiniEditor.py" line="2361" />
+      <location filename="../QScintilla/MiniEditor.py" line="2365" />
+      <location filename="../QScintilla/MiniEditor.py" line="2362" />
       <source>Move to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3184" />
       <location filename="../ViewManager/ViewManager.py" line="3181" />
-      <location filename="../QScintilla/MiniEditor.py" line="2381" />
-      <location filename="../QScintilla/MiniEditor.py" line="2378" />
+      <location filename="../QScintilla/MiniEditor.py" line="2382" />
+      <location filename="../QScintilla/MiniEditor.py" line="2379" />
       <source>Extend selection to end of display or document line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3199" />
       <location filename="../ViewManager/ViewManager.py" line="3198" />
+      <location filename="../QScintilla/MiniEditor.py" line="2397" />
       <location filename="../QScintilla/MiniEditor.py" line="2396" />
-      <location filename="../QScintilla/MiniEditor.py" line="2395" />
       <source>Stuttered move up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3214" />
       <location filename="../ViewManager/ViewManager.py" line="3211" />
-      <location filename="../QScintilla/MiniEditor.py" line="2411" />
-      <location filename="../QScintilla/MiniEditor.py" line="2408" />
+      <location filename="../QScintilla/MiniEditor.py" line="2412" />
+      <location filename="../QScintilla/MiniEditor.py" line="2409" />
       <source>Stuttered extend selection up one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3231" />
       <location filename="../ViewManager/ViewManager.py" line="3228" />
-      <location filename="../QScintilla/MiniEditor.py" line="2428" />
-      <location filename="../QScintilla/MiniEditor.py" line="2425" />
+      <location filename="../QScintilla/MiniEditor.py" line="2429" />
+      <location filename="../QScintilla/MiniEditor.py" line="2426" />
       <source>Stuttered move down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3248" />
       <location filename="../ViewManager/ViewManager.py" line="3245" />
-      <location filename="../QScintilla/MiniEditor.py" line="2445" />
-      <location filename="../QScintilla/MiniEditor.py" line="2442" />
+      <location filename="../QScintilla/MiniEditor.py" line="2446" />
+      <location filename="../QScintilla/MiniEditor.py" line="2443" />
       <source>Stuttered extend selection down one page</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3265" />
       <location filename="../ViewManager/ViewManager.py" line="3262" />
-      <location filename="../QScintilla/MiniEditor.py" line="2462" />
-      <location filename="../QScintilla/MiniEditor.py" line="2459" />
+      <location filename="../QScintilla/MiniEditor.py" line="2463" />
+      <location filename="../QScintilla/MiniEditor.py" line="2460" />
       <source>Delete right to end of next word</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3275" />
-      <location filename="../QScintilla/MiniEditor.py" line="2472" />
+      <location filename="../QScintilla/MiniEditor.py" line="2473" />
       <source>Alt+Del</source>
       <translation>Alt+Del</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3286" />
       <location filename="../ViewManager/ViewManager.py" line="3283" />
-      <location filename="../QScintilla/MiniEditor.py" line="2483" />
-      <location filename="../QScintilla/MiniEditor.py" line="2480" />
+      <location filename="../QScintilla/MiniEditor.py" line="2484" />
+      <location filename="../QScintilla/MiniEditor.py" line="2481" />
       <source>Move selected lines up one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3303" />
       <location filename="../ViewManager/ViewManager.py" line="3300" />
-      <location filename="../QScintilla/MiniEditor.py" line="2500" />
-      <location filename="../QScintilla/MiniEditor.py" line="2497" />
+      <location filename="../QScintilla/MiniEditor.py" line="2501" />
+      <location filename="../QScintilla/MiniEditor.py" line="2498" />
       <source>Move selected lines down one line</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3469" />
-      <location filename="../QScintilla/MiniEditor.py" line="2546" />
+      <location filename="../QScintilla/MiniEditor.py" line="2547" />
       <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
       <translation>&lt;b&gt;搜索&lt;/b&gt;&lt;p&gt;在当前编辑器中搜索某文本。显示一个对话框可以输入要搜索的文本和搜索选项。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3495" />
-      <location filename="../QScintilla/MiniEditor.py" line="2572" />
+      <location filename="../QScintilla/MiniEditor.py" line="2573" />
       <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;搜索下一个&lt;/b&gt;&lt;p&gt;在当前编辑器中搜索某文本下一次出现的位置。仍然使用前面输入的搜索文本和选项。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3525" />
-      <location filename="../QScintilla/MiniEditor.py" line="2602" />
+      <location filename="../QScintilla/MiniEditor.py" line="2603" />
       <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
       <translation>&lt;b&gt;搜索上一个&lt;/b&gt;&lt;p&gt;在当前编辑器中搜索某文本上一次出现的位置。仍然使用前面输入的搜索文本和选项。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3539" />
       <location filename="../ViewManager/ViewManager.py" line="3537" />
-      <location filename="../QScintilla/MiniEditor.py" line="2616" />
-      <location filename="../QScintilla/MiniEditor.py" line="2614" />
+      <location filename="../QScintilla/MiniEditor.py" line="2617" />
+      <location filename="../QScintilla/MiniEditor.py" line="2615" />
       <source>Clear search markers</source>
       <translation>清除搜索标记</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3541" />
-      <location filename="../QScintilla/MiniEditor.py" line="2618" />
+      <location filename="../QScintilla/MiniEditor.py" line="2619" />
       <source>Ctrl+3</source>
       <comment>Search|Clear search markers</comment>
       <translation>Ctrl+3</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3550" />
-      <location filename="../QScintilla/MiniEditor.py" line="2627" />
+      <location filename="../QScintilla/MiniEditor.py" line="2628" />
       <source>Clear all displayed search markers</source>
       <translation>清除所有显示的搜索标记</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3555" />
-      <location filename="../QScintilla/MiniEditor.py" line="2632" />
+      <location filename="../QScintilla/MiniEditor.py" line="2633" />
       <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
       <translation>&lt;b&gt;清除搜索标记&lt;/b&gt;&lt;p&gt;清除所有显示的搜索标记。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3623" />
-      <location filename="../QScintilla/MiniEditor.py" line="2642" />
+      <location filename="../QScintilla/MiniEditor.py" line="2643" />
       <source>Replace</source>
       <translation>替换</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3624" />
-      <location filename="../QScintilla/MiniEditor.py" line="2643" />
+      <location filename="../QScintilla/MiniEditor.py" line="2644" />
       <source>&amp;Replace...</source>
       <translation>替换(&amp;R)…</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3626" />
-      <location filename="../QScintilla/MiniEditor.py" line="2645" />
+      <location filename="../QScintilla/MiniEditor.py" line="2646" />
       <source>Ctrl+R</source>
       <comment>Search|Replace</comment>
       <translation>Ctrl+R</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3633" />
-      <location filename="../QScintilla/MiniEditor.py" line="2652" />
+      <location filename="../QScintilla/MiniEditor.py" line="2653" />
       <source>Replace some text</source>
       <translation>替换某文本</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3636" />
-      <location filename="../QScintilla/MiniEditor.py" line="2655" />
+      <location filename="../QScintilla/MiniEditor.py" line="2656" />
       <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
       <translation>&lt;b&gt;替换&lt;/b&gt;&lt;p&gt;在当前编辑器搜索某文本并替换之。显示一个对话框可输入搜索文本、替换文本以及搜索替换的选项。&lt;/p&gt;</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3650" />
       <location filename="../ViewManager/ViewManager.py" line="3648" />
-      <location filename="../QScintilla/MiniEditor.py" line="2669" />
-      <location filename="../QScintilla/MiniEditor.py" line="2667" />
+      <location filename="../QScintilla/MiniEditor.py" line="2670" />
+      <location filename="../QScintilla/MiniEditor.py" line="2668" />
       <source>Replace and Search</source>
       <translation type="unfinished">替换和搜索</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3652" />
-      <location filename="../QScintilla/MiniEditor.py" line="2671" />
+      <location filename="../QScintilla/MiniEditor.py" line="2672" />
       <source>Meta+R</source>
       <comment>Search|Replace and Search</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3661" />
-      <location filename="../QScintilla/MiniEditor.py" line="2680" />
+      <location filename="../QScintilla/MiniEditor.py" line="2681" />
       <source>Replace the found text and search the next occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3666" />
-      <location filename="../QScintilla/MiniEditor.py" line="2685" />
+      <location filename="../QScintilla/MiniEditor.py" line="2686" />
       <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3682" />
       <location filename="../ViewManager/ViewManager.py" line="3680" />
-      <location filename="../QScintilla/MiniEditor.py" line="2701" />
-      <location filename="../QScintilla/MiniEditor.py" line="2699" />
+      <location filename="../QScintilla/MiniEditor.py" line="2702" />
+      <location filename="../QScintilla/MiniEditor.py" line="2700" />
       <source>Replace Occurrence</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3684" />
-      <location filename="../QScintilla/MiniEditor.py" line="2703" />
+      <location filename="../QScintilla/MiniEditor.py" line="2704" />
       <source>Ctrl+Meta+R</source>
       <comment>Search|Replace Occurrence</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3693" />
-      <location filename="../QScintilla/MiniEditor.py" line="2712" />
+      <location filename="../QScintilla/MiniEditor.py" line="2713" />
       <source>Replace the found text</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3696" />
-      <location filename="../QScintilla/MiniEditor.py" line="2715" />
+      <location filename="../QScintilla/MiniEditor.py" line="2716" />
       <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3709" />
       <location filename="../ViewManager/ViewManager.py" line="3707" />
-      <location filename="../QScintilla/MiniEditor.py" line="2728" />
-      <location filename="../QScintilla/MiniEditor.py" line="2726" />
+      <location filename="../QScintilla/MiniEditor.py" line="2729" />
+      <location filename="../QScintilla/MiniEditor.py" line="2727" />
       <source>Replace All</source>
       <translation type="unfinished">替换全部</translation>
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3711" />
-      <location filename="../QScintilla/MiniEditor.py" line="2730" />
+      <location filename="../QScintilla/MiniEditor.py" line="2731" />
       <source>Shift+Meta+R</source>
       <comment>Search|Replace All</comment>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3720" />
-      <location filename="../QScintilla/MiniEditor.py" line="2739" />
+      <location filename="../QScintilla/MiniEditor.py" line="2740" />
       <source>Replace search text occurrences</source>
       <translation type="unfinished" />
     </message>
     <message>
       <location filename="../ViewManager/ViewManager.py" line="3723" />
-      <location filename="../QScintilla/MiniEditor.py" line="2742" />
+      <location filename="../QScintilla/MiniEditor.py" line="2743" />
       <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
       <translation type="unfinished" />
     </message>

eric ide

mercurial