Added an action to the view menu to clear all folds of the current editor.

Fri, 22 Dec 2017 16:21:40 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 22 Dec 2017 16:21:40 +0100
changeset 6032
5f80be18bcd7
parent 6031
ccab25598d90
child 6033
967b3e3e5b4d

Added an action to the view menu to clear all folds of the current editor.

Documentation/Help/source.qch file | annotate | diff | comparison | revisions
Documentation/Help/source.qhp file | annotate | diff | comparison | revisions
Documentation/Source/eric6.ViewManager.ViewManager.html file | annotate | diff | comparison | revisions
ViewManager/ViewManager.py file | annotate | diff | comparison | revisions
changelog file | annotate | diff | comparison | revisions
i18n/eric6_cs.ts file | annotate | diff | comparison | revisions
i18n/eric6_de.qm file | annotate | diff | comparison | revisions
i18n/eric6_de.ts file | annotate | diff | comparison | revisions
i18n/eric6_empty.ts file | annotate | diff | comparison | revisions
i18n/eric6_en.ts file | annotate | diff | comparison | revisions
i18n/eric6_es.ts file | annotate | diff | comparison | revisions
i18n/eric6_fr.ts file | annotate | diff | comparison | revisions
i18n/eric6_it.ts file | annotate | diff | comparison | revisions
i18n/eric6_pt.ts file | annotate | diff | comparison | revisions
i18n/eric6_ru.ts file | annotate | diff | comparison | revisions
i18n/eric6_tr.ts file | annotate | diff | comparison | revisions
i18n/eric6_zh_CN.ts file | annotate | diff | comparison | revisions
Binary file Documentation/Help/source.qch has changed
--- a/Documentation/Help/source.qhp	Fri Dec 22 16:07:49 2017 +0100
+++ b/Documentation/Help/source.qhp	Fri Dec 22 16:21:40 2017 +0100
@@ -17005,6 +17005,7 @@
       <keyword name="ViewManager.__breakpointToggled" id="ViewManager.__breakpointToggled" ref="eric6.ViewManager.ViewManager.html#ViewManager.__breakpointToggled" />
       <keyword name="ViewManager.__changeMarkersUpdated" id="ViewManager.__changeMarkersUpdated" ref="eric6.ViewManager.ViewManager.html#ViewManager.__changeMarkersUpdated" />
       <keyword name="ViewManager.__clearAllBookmarks" id="ViewManager.__clearAllBookmarks" ref="eric6.ViewManager.ViewManager.html#ViewManager.__clearAllBookmarks" />
+      <keyword name="ViewManager.__clearAllFolds" id="ViewManager.__clearAllFolds" ref="eric6.ViewManager.ViewManager.html#ViewManager.__clearAllFolds" />
       <keyword name="ViewManager.__clearAllSyntaxErrors" id="ViewManager.__clearAllSyntaxErrors" ref="eric6.ViewManager.ViewManager.html#ViewManager.__clearAllSyntaxErrors" />
       <keyword name="ViewManager.__clearAllWarnings" id="ViewManager.__clearAllWarnings" ref="eric6.ViewManager.ViewManager.html#ViewManager.__clearAllWarnings" />
       <keyword name="ViewManager.__clearBookmarked" id="ViewManager.__clearBookmarked" ref="eric6.ViewManager.ViewManager.html#ViewManager.__clearBookmarked" />
--- a/Documentation/Source/eric6.ViewManager.ViewManager.html	Fri Dec 22 16:07:49 2017 +0100
+++ b/Documentation/Source/eric6.ViewManager.ViewManager.html	Fri Dec 22 16:21:40 2017 +0100
@@ -234,6 +234,9 @@
 <td><a href="#ViewManager.__clearAllBookmarks">__clearAllBookmarks</a></td>
 <td>Private method to handle the clear all bookmarks action.</td>
 </tr><tr>
+<td><a href="#ViewManager.__clearAllFolds">__clearAllFolds</a></td>
+<td>Private method to handle the clear all folds action.</td>
+</tr><tr>
 <td><a href="#ViewManager.__clearAllSyntaxErrors">__clearAllSyntaxErrors</a></td>
 <td>Private method to handle the clear all syntax errors action.</td>
 </tr><tr>
@@ -1049,6 +1052,11 @@
 <b>__clearAllBookmarks</b>(<i></i>)
 <p>
         Private method to handle the clear all bookmarks action.
+</p><a NAME="ViewManager.__clearAllFolds" ID="ViewManager.__clearAllFolds"></a>
+<h4>ViewManager.__clearAllFolds</h4>
+<b>__clearAllFolds</b>(<i></i>)
+<p>
+        Private method to handle the clear all folds action.
 </p><a NAME="ViewManager.__clearAllSyntaxErrors" ID="ViewManager.__clearAllSyntaxErrors"></a>
 <h4>ViewManager.__clearAllSyntaxErrors</h4>
 <b>__clearAllSyntaxErrors</b>(<i></i>)
--- a/ViewManager/ViewManager.py	Fri Dec 22 16:07:49 2017 +0100
+++ b/ViewManager/ViewManager.py	Fri Dec 22 16:21:40 2017 +0100
@@ -3491,7 +3491,7 @@
         
         self.toggleAllAct = E5Action(
             QCoreApplication.translate('ViewManager', 'Toggle all folds'),
-            QCoreApplication.translate('ViewManager', 'Toggle &all folds'),
+            QCoreApplication.translate('ViewManager', '&Toggle all folds'),
             0, 0, self.viewFoldActGrp, 'vm_view_toggle_all_folds')
         self.toggleAllAct.setStatusTip(QCoreApplication.translate(
             'ViewManager', 'Toggle all folds'))
@@ -3536,6 +3536,21 @@
         self.toggleCurrentAct.triggered.connect(self.__toggleCurrent)
         self.viewActions.append(self.toggleCurrentAct)
         
+        self.clearAllFoldsAct = E5Action(
+            QCoreApplication.translate('ViewManager', 'Clear all folds'),
+            QCoreApplication.translate('ViewManager', 'Clear &all folds'),
+            0, 0, self.viewFoldActGrp, 'vm_view_clear_all_folds')
+        self.clearAllFoldsAct.setStatusTip(QCoreApplication.translate(
+            'ViewManager', 'Clear all folds'))
+        self.clearAllFoldsAct.setWhatsThis(QCoreApplication.translate(
+            'ViewManager',
+            """<b>Clear all folds</b>"""
+            """<p>Clear all folds of the current editor, i.e. ensure that"""
+            """ all lines are displayed unfolded.</p>"""
+        ))
+        self.clearAllFoldsAct.triggered.connect(self.__clearAllFolds)
+        self.viewActions.append(self.clearAllFoldsAct)
+        
         self.unhighlightAct = E5Action(
             QCoreApplication.translate('ViewManager', 'Remove all highlights'),
             UI.PixmapCache.getIcon("unhighlight.png"),
@@ -5900,6 +5915,14 @@
             aw = self.activeWindow()
         if aw and aw == self.sender():
             self.sbZoom.setValue(value)
+    
+    def __clearAllFolds(self):
+        """
+        Private method to handle the clear all folds action.
+        """
+        aw = self.activeWindow()
+        if aw:
+            aw.clearFolds()
         
     def __toggleAll(self):
         """
--- a/changelog	Fri Dec 22 16:07:49 2017 +0100
+++ b/changelog	Fri Dec 22 16:21:40 2017 +0100
@@ -2,6 +2,8 @@
 ----------
 Version 18.01:
 - bug fixes
+- Editor
+  -- added an action to the view menu to clear all folds of the current editor
 - Project
   -- If a project does not contain protobuf files, the old project file format
      (5.1) is generated to make the file backward compatible.
--- a/i18n/eric6_cs.ts	Fri Dec 22 16:07:49 2017 +0100
+++ b/i18n/eric6_cs.ts	Fri Dec 22 16:21:40 2017 +0100
@@ -107,22 +107,22 @@
         <translation>Akce</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Learn more about writing rules...</source>
         <translation>Další informace o pravidlech psaní...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="153"/>
         <source>Update Subscription</source>
         <translation>Aktualizovat odběr</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Browse Subscriptions...</source>
         <translation>Procházet odběry...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="230"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="236"/>
         <source>Remove Subscription</source>
         <translation>Odebrat odběr</translation>
     </message>
@@ -137,42 +137,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="48"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="50"/>
         <source>Search...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="130"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
         <source>Add Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="132"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="137"/>
         <source>Remove Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
         <source>Disable Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="145"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="150"/>
         <source>Enable Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="151"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
         <source>Update All Subscriptions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="220"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="226"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="227"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -220,7 +220,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="37"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="38"/>
         <source>Enter host to be added...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -228,17 +228,17 @@
 <context>
     <name>AdBlockIcon</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="38"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="39"/>
         <source>AdBlock lets you block unwanted content on web pages.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="72"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="75"/>
         <source>Disable AdBlock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="77"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="80"/>
         <source>Enable AdBlock</source>
         <translation type="unfinished">Zapnout AdBlock</translation>
     </message>
@@ -258,27 +258,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="108"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="112"/>
         <source>AdBlock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="84"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="87"/>
         <source>Remove AdBlock Exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="89"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="92"/>
         <source>Add AdBlock Exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="93"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="96"/>
         <source>AdBlock Exceptions...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="97"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="100"/>
         <source>AdBlock Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -286,17 +286,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="208"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="221"/>
         <source>Custom Rules</source>
         <translation>Vlastní pravidla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>Subscribe?</source>
         <translation type="unfinished">Odebírat?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Přihlásit k odběru tento AdBlock?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -304,22 +304,22 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>Load subscription rules</source>
         <translation>Nahrát odebíraná pravidla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>Downloading subscription rules</source>
         <translation>Stažení odebíraných pravidel</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="405"/>
         <source>Got empty subscription rules.</source>
         <translation>Odebíraná pravidla jsou prázdná.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Saving subscription rules</source>
         <translation>Ukládání odebíraných pravidel</translation>
     </message>
@@ -329,7 +329,7 @@
         <translation>Nelze otevřít adblock soubor &apos;{0}&apos; pro čtení.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="387"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="392"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Pravidla pro předplatné nelze stáhnout.&lt;/p&gt;&lt;p&gt;Chyba: {0}&lt;/p&gt;</translation>
     </message>
@@ -339,22 +339,22 @@
         <translation>Nelze otevřít adblock soubor &apos;{0}&apos; pro zápis.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="280"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="286"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -362,27 +362,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Add Custom Rule</source>
         <translation type="unfinished">Přidat vlastní pravidlo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Write your rule here:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="161"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="165"/>
         <source>Add Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="163"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="167"/>
         <source>Remove Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="215"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="220"/>
         <source>{0} (recently updated)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7458,28 +7458,28 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="112"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="113"/>
         <source>Invalid response received from DeepL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="115"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="116"/>
         <source>DeepL reported an error.
 Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="119"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="120"/>
         <source>DeepL call returned an unknown result</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="123"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="124"/>
         <source>Unsupported language code given (source: {0}, target: {1}).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="130"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="131"/>
         <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8031,7 +8031,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>.desktop Wizard</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8366,22 +8366,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10440,7 +10440,7 @@
         <translation>Editovat breakpoint...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5290"/>
+        <location filename="../QScintilla/Editor.py" line="5295"/>
         <source>Enable breakpoint</source>
         <translation>Aktivovat breakpoint</translation>
     </message>
@@ -10540,187 +10540,187 @@
         <translation>Autodoplňování není dostupné protože zdrojová část autodoplňování nebyla nalezena.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5293"/>
+        <location filename="../QScintilla/Editor.py" line="5298"/>
         <source>Disable breakpoint</source>
         <translation>Deaktivovat breakpoint</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Code Coverage</source>
         <translation>Pokrytí kódu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <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="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Zobrazit poznámky pokrytí kódu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5723"/>
+        <location filename="../QScintilla/Editor.py" line="5728"/>
         <source>All lines have been covered.</source>
         <translation>Všechny řádky byly pokryty.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>There is no coverage file available.</source>
         <translation>Soubor s pokrytím není dostupný.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Profile Data</source>
         <translation>Profilovat data</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Please select a profile file</source>
         <translation>Prosím, vyberte soubor s profilem</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>Syntax Error</source>
         <translation>Chyba syntaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>No syntax error message available.</source>
         <translation>Hlášení syntaktické chyby není dostupné.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Macro Name</source>
         <translation>Název makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Select a macro name:</source>
         <translation>Vyberte název makra:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6348"/>
+        <location filename="../QScintilla/Editor.py" line="6353"/>
         <source>Load macro file</source>
         <translation>Načíst soubor makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Macro files (*.macro)</source>
         <translation>Macro soubory (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <source>Error loading macro</source>
         <translation>Chyba při načítání makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Save macro file</source>
         <translation>Uložit soubor s makrem</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <source>Save macro</source>
         <translation>Uložit makro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <source>Error saving macro</source>
         <translation>Chyba při ukládání makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Start Macro Recording</source>
         <translation>Spustit záznam makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <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="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Macro Recording</source>
         <translation>Záznam makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Enter name of the macro:</source>
         <translation>Vložte název makra:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6601"/>
+        <location filename="../QScintilla/Editor.py" line="6606"/>
         <source>File changed</source>
         <translation>Soubor změněn</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <source>Drop Error</source>
         <translation>Zahodit chybu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6926"/>
+        <location filename="../QScintilla/Editor.py" line="6931"/>
         <source>Resources</source>
         <translation>Zdroje</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6928"/>
+        <location filename="../QScintilla/Editor.py" line="6933"/>
         <source>Add file...</source>
         <translation>Přidat soubor...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6930"/>
-        <source>Add files...</source>
-        <translation>Přidat soubory...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6932"/>
-        <source>Add aliased file...</source>
-        <translation>Přidat zástupce souboru...</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6935"/>
+        <source>Add files...</source>
+        <translation>Přidat soubory...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6937"/>
+        <source>Add aliased file...</source>
+        <translation>Přidat zástupce souboru...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6940"/>
         <source>Add localized resource...</source>
         <translation>Přidat lokalizované resource...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6939"/>
+        <location filename="../QScintilla/Editor.py" line="6944"/>
         <source>Add resource frame</source>
         <translation>Přidat resource frame</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6958"/>
+        <location filename="../QScintilla/Editor.py" line="6963"/>
         <source>Add file resource</source>
         <translation>Přidat soubor resource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6974"/>
+        <location filename="../QScintilla/Editor.py" line="6979"/>
         <source>Add file resources</source>
         <translation>Přidat soubory resource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <source>Add aliased file resource</source>
         <translation>Přidat zástupce souboru resource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Package Diagram</source>
         <translation>Diagram balíčku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Include class attributes?</source>
         <translation>Včetně atributů třídy?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Application Diagram</source>
         <translation>Diagram aplikace</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Include module names?</source>
         <translation>Včetně jmen modulů?</translation>
     </message>
@@ -10740,12 +10740,12 @@
         <translation>Nebyl zadán forám exportu. Zrušeno....</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Imports Diagram</source>
         <translation>Importovat diagram</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Include imports from external modules?</source>
         <translation>Zahrnout importy z externích modulů?</translation>
     </message>
@@ -10820,7 +10820,7 @@
         <translation>Použít Pygments lexer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7378"/>
+        <location filename="../QScintilla/Editor.py" line="7383"/>
         <source>Check spelling...</source>
         <translation>Zatrhnout kontrolu...</translation>
     </message>
@@ -10830,12 +10830,12 @@
         <translation>Zatrhnout výběr kontroly...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7386"/>
         <source>Add to dictionary</source>
         <translation>Přidat do slovníku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7383"/>
+        <location filename="../QScintilla/Editor.py" line="7388"/>
         <source>Ignore All</source>
         <translation>Ignorovat vše</translation>
     </message>
@@ -10875,32 +10875,32 @@
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nemůže být přejmenován.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6362"/>
+        <location filename="../QScintilla/Editor.py" line="6367"/>
         <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="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <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="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <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="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6770"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <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="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <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>
@@ -10930,22 +10930,22 @@
         <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="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6259"/>
+        <location filename="../QScintilla/Editor.py" line="6264"/>
         <source>Warning: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6266"/>
+        <location filename="../QScintilla/Editor.py" line="6271"/>
         <source>Error: {0}</source>
         <translation type="unfinished">Chyby: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6597"/>
+        <location filename="../QScintilla/Editor.py" line="6602"/>
         <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10970,27 +10970,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>Warning</source>
         <translation type="unfinished">Varování</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6256"/>
+        <location filename="../QScintilla/Editor.py" line="6261"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11015,7 +11015,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6591"/>
+        <location filename="../QScintilla/Editor.py" line="6596"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; byl změněn po té co již byl načten do eric5. Znovu načíst?&lt;/p&gt; {0}?} {6.?}</translation>
     </message>
@@ -11030,32 +11030,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47720,7 +47720,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="886"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="892"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47805,7 +47805,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="859"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="865"/>
         <source>Upgrade Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47825,7 +47825,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Uninstall Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48010,7 +48010,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="746"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="752"/>
         <source>Select Python Executable</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48025,17 +48025,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="729"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="735"/>
         <source>&lt;Default&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Upgrade pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Select pip Executable:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48045,27 +48045,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="757"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="763"/>
         <source>Repair PIP</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="821"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="827"/>
         <source>You are trying to upgrade PyQt packages. This will not work for the current instance of Python ({0}). Do you want to continue?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="907"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="913"/>
         <source>Install Packages from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Do you really want to uninstall these packages?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="982"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="988"/>
         <source>Uninstall Packages from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61649,7 +61649,7 @@
         <translation>Č.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <source>Drop Error</source>
         <translation>Zahodit chybu</translation>
     </message>
@@ -61720,13 +61720,13 @@
         <translation>StdErr: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1638"/>
+        <location filename="../QScintilla/Shell.py" line="1678"/>
         <source>Shell language &quot;{0}&quot; not supported.
 </source>
         <translation>Shell jazyk &quot;{0}&quot; není podporován.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <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>
@@ -79366,8 +79366,8 @@
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3493"/>
-        <source>Toggle &amp;all folds</source>
-        <translation>Složit/rozložit všechn&amp;a skládání</translation>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished">Složit/rozložit všechn&amp;a skládání</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3499"/>
@@ -79405,438 +79405,438 @@
         <translation>&lt;b&gt;Složit/rozložit aktuální složený blok&lt;/b&gt;&lt;p&gt;Složí nebo rozloží aktuální složený blok v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3561"/>
         <source>Remove all highlights</source>
         <translation>Odebrat všechna zvýraznění</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Odebrat všechna zvýraznění&lt;/b&gt;&lt;p&gt;Odebrat zvýraznění ve všech editorech.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
-        <source>Split view</source>
-        <translation>Rozdělit pohled</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
-        <source>&amp;Split view</source>
-        <translation>&amp;Rozdělit pohled</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Add a split to the view</source>
-        <translation>Přidat další rozdělení pohledu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Rozdělit pohled&lt;/b&gt;&lt;p&gt;Přidá další okno na aktuální pohled.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange horizontally</source>
-        <translation>Uspořádat horizontálně</translation>
+        <source>Split view</source>
+        <translation>Rozdělit pohled</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange &amp;horizontally</source>
-        <translation>Uspořádat &amp;horizontálně</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3613"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Uspořádat rozdělené pohledy horizontálně</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3615"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Uspořádat horizontálně&lt;/b&gt;&lt;p&gt;Uspořádat rozdělené pohledy horizontálně.&lt;/p&gt;</translation>
+        <source>&amp;Split view</source>
+        <translation>&amp;Rozdělit pohled</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Add a split to the view</source>
+        <translation>Přidat další rozdělení pohledu</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Rozdělit pohled&lt;/b&gt;&lt;p&gt;Přidá další okno na aktuální pohled.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3624"/>
-        <source>Remove split</source>
-        <translation>Odebrat rozdělený pohled</translation>
+        <source>Arrange horizontally</source>
+        <translation>Uspořádat horizontálně</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3624"/>
-        <source>&amp;Remove split</source>
-        <translation>Odebra&amp;t rozdělený pohled</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3629"/>
-        <source>Remove the current split</source>
-        <translation>Odebrat aktuální rozdělení pohledu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
-        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Odebrat rozdělený pohled&lt;/b&gt;&lt;p&gt;Odebrat aktuální rozdělený pohled.&lt;/p&gt;</translation>
+        <source>Arrange &amp;horizontally</source>
+        <translation>Uspořádat &amp;horizontálně</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3628"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Uspořádat rozdělené pohledy horizontálně</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3630"/>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Uspořádat horizontálně&lt;/b&gt;&lt;p&gt;Uspořádat rozdělené pohledy horizontálně.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>Next split</source>
-        <translation>Další rozdělený pohled</translation>
+        <source>Remove split</source>
+        <translation>Odebrat rozdělený pohled</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>&amp;Next split</source>
-        <translation>Další rozděle&amp;ný pohled</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>Ctrl+Alt+N</source>
-        <comment>View|Next split</comment>
-        <translation></translation>
+        <source>&amp;Remove split</source>
+        <translation>Odebra&amp;t rozdělený pohled</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3644"/>
+        <source>Remove the current split</source>
+        <translation>Odebrat aktuální rozdělení pohledu</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Odebrat rozdělený pohled&lt;/b&gt;&lt;p&gt;Odebrat aktuální rozdělený pohled.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>Next split</source>
+        <translation>Další rozdělený pohled</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>&amp;Next split</source>
+        <translation>Další rozděle&amp;ný pohled</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>Ctrl+Alt+N</source>
+        <comment>View|Next split</comment>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3661"/>
         <source>Move to the next split</source>
         <translation>Posun na další rozdělený pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <location filename="../ViewManager/ViewManager.py" line="3663"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Další rozdělený pohled&lt;/b&gt;&lt;p&gt;Posun na další rozdělený pohled.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Previous split</source>
         <translation>Předchozí rozdělený pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>&amp;Previous split</source>
         <translation>&amp;Předchozí rozdělený pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3662"/>
+        <location filename="../ViewManager/ViewManager.py" line="3677"/>
         <source>Move to the previous split</source>
         <translation>Posun na předchozí rozdělený pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3664"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Předchozí rozdělený pohled&lt;/b&gt;&lt;p&gt;Posun na předchozí rozdělený pohled.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3708"/>
+        <location filename="../ViewManager/ViewManager.py" line="3723"/>
         <source>&amp;View</source>
         <translation>Poh&amp;led</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <source>View</source>
         <translation>Pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3777"/>
+        <location filename="../ViewManager/ViewManager.py" line="3792"/>
         <source>Start Macro Recording</source>
         <translation>Spustit záznam makra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3771"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>S&amp;tart Macro Recording</source>
         <translation>Spus&amp;tit záznam makra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Spustit záznam makra&lt;/b&gt;&lt;p&gt;Spustí se záznam příkazů do nového makra.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
+        <location filename="../ViewManager/ViewManager.py" line="3806"/>
         <source>Stop Macro Recording</source>
         <translation>Zastavit záznam makra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3787"/>
+        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>Sto&amp;p Macro Recording</source>
         <translation>Sto&amp;p záznamu makra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Stop záznamu makra&lt;/b&gt;&lt;p&gt;Zastaví se nahrávání příkazů do makra.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <location filename="../ViewManager/ViewManager.py" line="3820"/>
         <source>Run Macro</source>
         <translation>Spustit makro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3801"/>
+        <location filename="../ViewManager/ViewManager.py" line="3816"/>
         <source>&amp;Run Macro</source>
         <translation>Spustit mak&amp;ro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3807"/>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Spustit makro&lt;/b&gt;&lt;p&gt;Spustit nahrané makro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3819"/>
+        <location filename="../ViewManager/ViewManager.py" line="3834"/>
         <source>Delete Macro</source>
         <translation>Smazat makro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <location filename="../ViewManager/ViewManager.py" line="3830"/>
         <source>&amp;Delete Macro</source>
         <translation>Smazat makr&amp;o</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3821"/>
+        <location filename="../ViewManager/ViewManager.py" line="3836"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Smazat makro&lt;/b&gt;&lt;p&gt;Smaže se nahrané makro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3848"/>
         <source>Load Macro</source>
         <translation>Načíst makro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3829"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Load Macro</source>
         <translation>&amp;Načíst makro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3850"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Načíst makro&lt;/b&gt;&lt;p&gt;Načte se makro ze souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3847"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>Save Macro</source>
         <translation>Uložit makro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3843"/>
+        <location filename="../ViewManager/ViewManager.py" line="3858"/>
         <source>&amp;Save Macro</source>
         <translation>&amp;Uložit makro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3849"/>
+        <location filename="../ViewManager/ViewManager.py" line="3864"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Uložit makro&lt;/b&gt;&lt;p&gt;Nahrané makro se uloží do souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3865"/>
+        <location filename="../ViewManager/ViewManager.py" line="3880"/>
         <source>&amp;Macros</source>
         <translation>&amp;Makra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3891"/>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
         <source>Toggle Bookmark</source>
         <translation>Přepnout záložku</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>Přepnou&amp;t záložku</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3893"/>
+        <location filename="../ViewManager/ViewManager.py" line="3908"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Přepnout záložku&lt;/b&gt;&lt;p&gt;Vytvoří/zruší záložku na aktuálním řádku v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
+        <location filename="../ViewManager/ViewManager.py" line="3925"/>
         <source>Next Bookmark</source>
         <translation>Následující záložka</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>&amp;Next Bookmark</source>
         <translation>&amp;Následující záložka</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3912"/>
+        <location filename="../ViewManager/ViewManager.py" line="3927"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Následující záložka&lt;/b&gt;&lt;p&gt;Přesun na následující záložku v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3928"/>
+        <location filename="../ViewManager/ViewManager.py" line="3943"/>
         <source>Previous Bookmark</source>
         <translation>Předchozí záložka</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>&amp;Previous Bookmark</source>
         <translation>&amp;Předchozí záložka</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Předchozí záložka&lt;/b&gt;&lt;p&gt;Přesun na předchozí záložku.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3945"/>
+        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Předchozí záložka&lt;/b&gt;&lt;p&gt;Přesun na předchozí záložku.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
         <source>Clear Bookmarks</source>
         <translation>Vyčistit záložky</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>Vyčistit (zr&amp;ušit) záložky</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3947"/>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vyčistit (zrušit) záložky&lt;/b&gt;&lt;p&gt;Zruší se všechny záložky ve všech editorech.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3961"/>
-        <source>Goto Syntax Error</source>
-        <translation>Jít na Syntaktickou chybu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3955"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>&amp;Jít na Syntaktickou chybu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3963"/>
-        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Jít na Syntax error&lt;/b&gt;&lt;p&gt;Přesun na syntaktickou chybu v aktuálním editoru.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Vyčistit Syntaktické chyby</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3971"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>V&amp;yčistit Syntaktické chyby</translation>
+        <source>Goto Syntax Error</source>
+        <translation>Jít na Syntaktickou chybu</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3970"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>&amp;Jít na Syntaktickou chybu</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
+        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Jít na Syntax error&lt;/b&gt;&lt;p&gt;Přesun na syntaktickou chybu v aktuálním editoru.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Vyčistit Syntaktické chyby</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>V&amp;yčistit Syntaktické chyby</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3993"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vyčistit syntaktické chyby&lt;/b&gt;&lt;p&gt;Smažou se záznamy o syntaktických chybách ve všech editorech.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4046"/>
+        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>Next uncovered line</source>
         <translation>Následují problémová řádka</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4040"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next uncovered line</source>
         <translation>Nás&amp;ledující problémová řádka</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4048"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Následující problémová řádka&lt;/b&gt;&lt;p&gt;Jít na řádku v aktuálním editoru, která byla nalezena jako problémová.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4065"/>
+        <location filename="../ViewManager/ViewManager.py" line="4080"/>
         <source>Previous uncovered line</source>
         <translation>Předchozí problémová řádka</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
         <source>&amp;Previous uncovered line</source>
         <translation>Př&amp;edchozí problémová řádka</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4082"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Předchozí problémová řádka&lt;/b&gt;&lt;p&gt;Jít na předchozí řádku v aktuálním editoru, která byla nalezena jako problémová.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4083"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Next Task</source>
         <translation>Následující úloha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4077"/>
+        <location filename="../ViewManager/ViewManager.py" line="4092"/>
         <source>&amp;Next Task</source>
         <translation>Následující úlo&amp;ha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4085"/>
-        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Následující úloha&lt;/b&gt;&lt;p&gt;Jít na řádek v aktuálním editoru, na kterém je následující úloha.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Následující úloha&lt;/b&gt;&lt;p&gt;Jít na řádek v aktuálním editoru, na kterém je následující úloha.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4115"/>
         <source>Previous Task</source>
         <translation>Předchozí úloha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4093"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Previous Task</source>
         <translation>Předchozí úl&amp;oha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
+        <location filename="../ViewManager/ViewManager.py" line="4117"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Předchozí úloha&lt;/b&gt;&lt;p&gt;Jít na řádek, na kterém se nachází předchozí úloha.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4156"/>
+        <location filename="../ViewManager/ViewManager.py" line="4171"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Záložky</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4202"/>
+        <location filename="../ViewManager/ViewManager.py" line="4217"/>
         <source>Bookmarks</source>
         <translation>Záložky</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4354"/>
+        <location filename="../ViewManager/ViewManager.py" line="4369"/>
         <source>Open files</source>
         <translation>Otevřené soubory</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>File Modified</source>
         <translation>Soubor změněn</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5155"/>
+        <location filename="../ViewManager/ViewManager.py" line="5170"/>
         <source>&amp;Clear</source>
         <translation>&amp;Vyčistit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5149"/>
+        <location filename="../ViewManager/ViewManager.py" line="5164"/>
         <source>&amp;Add</source>
         <translation>Přid&amp;at</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5152"/>
+        <location filename="../ViewManager/ViewManager.py" line="5167"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Edit...</translation>
     </message>
@@ -79998,83 +79998,83 @@
         <translation>&lt;b&gt;Nahradit v souborech&lt;/b&gt;&lt;p&gt;Hledání zadaného textu v souborech v adresářovém stromu projektu a jeho nahrazení. Je zobrazeno dialogové okno pro zadání hledaného textu, textu nahrazujícího a volby pro hledání a zobrazní výsledku.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4244"/>
+        <location filename="../ViewManager/ViewManager.py" line="4259"/>
         <source>Perform spell check of current editor</source>
         <translation>Spustit kontrolu pravopisu v aktuálním editoru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>Automatic spell checking</source>
         <translation>Automatická kontrola pravopisu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>&amp;Automatic spell checking</source>
         <translation>&amp;Automatická kontrola pravopisu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4262"/>
+        <location filename="../ViewManager/ViewManager.py" line="4277"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation>(De-)aktivovat akutomatickou kontrolu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Automatická kontrola pravopisu&lt;/b&gt;&lt;p&gt;Zapnout neobo vypnout automatickou kontrolu pravopisu ve všech editorech.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4346"/>
         <source>Spelling</source>
         <translation>Pravopis</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; obsahuje neuložené změny.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4730"/>
+        <location filename="../ViewManager/ViewManager.py" line="4745"/>
         <source>Line: {0:5}</source>
         <translation>Řádek: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4737"/>
+        <location filename="../ViewManager/ViewManager.py" line="4752"/>
         <source>Pos: {0:5}</source>
         <translation>Poz: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3993"/>
+        <location filename="../ViewManager/ViewManager.py" line="4008"/>
         <source>Next warning message</source>
         <translation>Další varování</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3987"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&amp;Next warning message</source>
         <translation>Další varová&amp;ní</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <source>Previous warning message</source>
         <translation>Předchozí varování</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4004"/>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Předchozí varování</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4030"/>
+        <location filename="../ViewManager/ViewManager.py" line="4045"/>
         <source>Clear Warning Messages</source>
         <translation>Vyčistit varovná hlášení</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4023"/>
+        <location filename="../ViewManager/ViewManager.py" line="4038"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>&amp;Vyčistit varovná hlášení</translation>
     </message>
@@ -80158,17 +80158,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <location filename="../ViewManager/ViewManager.py" line="3687"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3677"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>Preview the current file in the web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80582,97 +80582,97 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4117"/>
+        <location filename="../ViewManager/ViewManager.py" line="4132"/>
         <source>Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4111"/>
+        <location filename="../ViewManager/ViewManager.py" line="4126"/>
         <source>&amp;Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4119"/>
+        <location filename="../ViewManager/ViewManager.py" line="4134"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4150"/>
         <source>Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4128"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&amp;Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4137"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check spelling</source>
         <translation type="unfinished">Kontrola pravopisu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4261"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4295"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Edit Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4297"/>
+        <location filename="../ViewManager/ViewManager.py" line="4312"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4300"/>
+        <location filename="../ViewManager/ViewManager.py" line="4315"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4305"/>
+        <location filename="../ViewManager/ViewManager.py" line="4320"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4323"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6356"/>
+        <location filename="../ViewManager/ViewManager.py" line="6379"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6341"/>
+        <location filename="../ViewManager/ViewManager.py" line="6364"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6368"/>
+        <location filename="../ViewManager/ViewManager.py" line="6391"/>
         <source>&lt;p&gt;The spelling dictionary 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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80792,62 +80792,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4757"/>
+        <location filename="../ViewManager/ViewManager.py" line="4772"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4765"/>
+        <location filename="../ViewManager/ViewManager.py" line="4780"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New &amp;Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3561"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Open a new view of the current document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3573"/>
+        <location filename="../ViewManager/ViewManager.py" line="3588"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3580"/>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3598"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3995"/>
+        <location filename="../ViewManager/ViewManager.py" line="4010"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
+        <location filename="../ViewManager/ViewManager.py" line="4029"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4032"/>
+        <location filename="../ViewManager/ViewManager.py" line="4047"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80991,6 +80991,21 @@
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3540"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
Binary file i18n/eric6_de.qm has changed
--- a/i18n/eric6_de.ts	Fri Dec 22 16:07:49 2017 +0100
+++ b/i18n/eric6_de.ts	Fri Dec 22 16:21:40 2017 +0100
@@ -107,22 +107,22 @@
         <translation>Aktionen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Learn more about writing rules...</source>
         <translation>Mehr über das Schreiben von Regeln lernen …</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="153"/>
         <source>Update Subscription</source>
         <translation>Abonnement aktualisieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Browse Subscriptions...</source>
         <translation>Abonnements anschauen …</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="230"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="236"/>
         <source>Remove Subscription</source>
         <translation>Abonnement löschen</translation>
     </message>
@@ -137,42 +137,42 @@
         <translation>Gib die Aktualisierungsperiode ein (1 bis 14 Tage)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="48"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="50"/>
         <source>Search...</source>
         <translation>Suchen …</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="130"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
         <source>Add Rule</source>
         <translation>Regel hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="132"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="137"/>
         <source>Remove Rule</source>
         <translation>Regel löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
         <source>Disable Subscription</source>
         <translation>Abonnement deaktivieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="145"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="150"/>
         <source>Enable Subscription</source>
         <translation>Abonnement aktivieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="151"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
         <source>Update All Subscriptions</source>
         <translation>Alle Abonnements aktualisieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="220"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="226"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation>&lt;p&gt;Soll das Abonnement &lt;b&gt;{0}&lt;/b&gt; und alle abhängigen Abonnements wirklich gelöscht werden?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="227"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soll das Abonnement &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?&lt;/p&gt;</translation>
     </message>
@@ -220,7 +220,7 @@
         <translation>&amp;Löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="37"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="38"/>
         <source>Enter host to be added...</source>
         <translation>Gib einen hinzuzufügenden Host ein …</translation>
     </message>
@@ -228,17 +228,17 @@
 <context>
     <name>AdBlockIcon</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="38"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="39"/>
         <source>AdBlock lets you block unwanted content on web pages.</source>
         <translation>AdBlock lässt Sie ungewünschten Webinhalt blockieren.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="72"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="75"/>
         <source>Disable AdBlock</source>
         <translation>AdBlock deaktivieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="77"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="80"/>
         <source>Enable AdBlock</source>
         <translation>AdBlock aktivieren</translation>
     </message>
@@ -258,27 +258,27 @@
         <translation>Kein blockierter Inhalt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="108"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="112"/>
         <source>AdBlock</source>
         <translation>AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="84"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="87"/>
         <source>Remove AdBlock Exception</source>
         <translation>AdBlock Ausnahme löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="89"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="92"/>
         <source>Add AdBlock Exception</source>
         <translation>AdBlock Ausnahme hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="93"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="96"/>
         <source>AdBlock Exceptions...</source>
         <translation>AdBlock-Ausnahmen …</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="97"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="100"/>
         <source>AdBlock Configuration...</source>
         <translation>AdBlock-Konfiguration …</translation>
     </message>
@@ -286,17 +286,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="208"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="221"/>
         <source>Custom Rules</source>
         <translation>Spezifische Regel</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>Subscribe?</source>
         <translation>Abonnieren?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soll dieses AdBlock-Abonnement gebucht werden?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -304,7 +304,7 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>Load subscription rules</source>
         <translation>Abonnementregeln laden</translation>
     </message>
@@ -314,17 +314,17 @@
         <translation>Adblock-Datei „{0}“ konnte nicht zum Lesen geöffnet werden.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>Downloading subscription rules</source>
         <translation>Lade Abonnementregeln herunter</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="387"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="392"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Abonnementregeln konnten nicht heruntergeladen werden.&lt;/p&gt;&lt;p&gt;Fehler: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="405"/>
         <source>Got empty subscription rules.</source>
         <translation>Habe leere Abonnementregeln erhalten.</translation>
     </message>
@@ -334,27 +334,27 @@
         <translation>Adblock-Datei „{0}“ konnte nicht zum Schreiben geöffnet werden.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Saving subscription rules</source>
         <translation>Speichern der Abonnementregeln</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation>AdBlock-Datei „{0}“ startet nicht mit [Adblock.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation>&lt;p&gt;AdBlock Abonnement &lt;b&gt;{0}&lt;/b&gt; hat eine falsche Prüfsumme.&lt;br/&gt;Gefunden: {1}&lt;br/&gt;Berechnet: {2}&lt;br/&gt;Trotzdem verwenden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="280"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="286"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation>AdBlock-Datei „{0}“ konnte nicht zum Lesen geöffnet werden.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation>AdBlock-Datei „{0}“ konnte nicht zum Schreiben geöffnet werden.</translation>
     </message>
@@ -362,27 +362,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Add Custom Rule</source>
         <translation>Spezifische Regel hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Write your rule here:</source>
         <translation>Schreibe die Regel hier:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="161"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="165"/>
         <source>Add Rule</source>
         <translation>Regel hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="163"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="167"/>
         <source>Remove Rule</source>
         <translation>Regel löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="215"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="220"/>
         <source>{0} (recently updated)</source>
         <translation>{0} (kürzlich aktualisiert)</translation>
     </message>
@@ -7145,29 +7145,29 @@
         <translation>Der zu übersetzende Text überschreitet das Längenlimit von {0} Zeichen.</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="112"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="113"/>
         <source>Invalid response received from DeepL</source>
         <translation>Ungültige Antwort von DeepL erhalten</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="115"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="116"/>
         <source>DeepL reported an error.
 Message: {0}</source>
         <translation>DeepL berichtete einen Fehler.
 Meldung: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="119"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="120"/>
         <source>DeepL call returned an unknown result</source>
         <translation>DeepL Aufruf lieferte ein unbekanntes Resultat</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="123"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="124"/>
         <source>Unsupported language code given (source: {0}, target: {1}).</source>
         <translation>Nicht unterstützer Sprachkode wurde übergeben (Quelle: {0}, Ziel: {0}).</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="130"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="131"/>
         <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
         <translation>&lt;p&gt;Keine Übersetzung gefunden&lt;/p&gt;</translation>
     </message>
@@ -7712,7 +7712,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>.desktop Wizard</source>
         <translation>.desktop Assistent</translation>
     </message>
@@ -8037,22 +8037,22 @@
         <translation>Von Projekt befüllen</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation>FreeDesktop Standard .desktop</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation>KDE Plasma Metadaten .desktop</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation>Ubuntu Unity QuickList .desktop</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation>Nur einer von &apos;Nur Anzeigen In&apos; oder &apos;Nicht Anzeigen In&apos; ist zugelassen.</translation>
     </message>
@@ -9935,7 +9935,7 @@
         <translation>Drucken abgebrochen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6601"/>
+        <location filename="../QScintilla/Editor.py" line="6606"/>
         <source>File changed</source>
         <translation>Datei geändert</translation>
     </message>
@@ -10000,57 +10000,57 @@
         <translation>Zurück zum letzten gesichert Zustand</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Macro Name</source>
         <translation>Makro Name</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Select a macro name:</source>
         <translation>Wähle einen Makro Namen:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Macro files (*.macro)</source>
         <translation>Makrodateien (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6348"/>
+        <location filename="../QScintilla/Editor.py" line="6353"/>
         <source>Load macro file</source>
         <translation>Lade Makrodatei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <source>Error loading macro</source>
         <translation>Fehler beim Makro Laden</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Save macro file</source>
         <translation>Makrodatei schreiben</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <source>Save macro</source>
         <translation>Makro speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <source>Error saving macro</source>
         <translation>Fehler beim Makro speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Start Macro Recording</source>
         <translation>Makroaufzeichnung starten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Macro Recording</source>
         <translation>Makroaufzeichnung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Enter name of the macro:</source>
         <translation>Gib einen Namen für das Makro ein:</translation>
     </message>
@@ -10110,32 +10110,32 @@
         <translation>Haltepunkt bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5290"/>
+        <location filename="../QScintilla/Editor.py" line="5295"/>
         <source>Enable breakpoint</source>
         <translation>Haltepunkt aktivieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5293"/>
+        <location filename="../QScintilla/Editor.py" line="5298"/>
         <source>Disable breakpoint</source>
         <translation>Haltepunkt deaktivieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Code Coverage</source>
         <translation>Quelltext Abdeckung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <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="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Profile Data</source>
         <translation>Profildaten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Please select a profile file</source>
         <translation>Bitte wählen Sie eine Datei mit Profildaten</translation>
     </message>
@@ -10175,7 +10175,7 @@
         <translation>Autom. Speicherung aktiv</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <source>Drop Error</source>
         <translation>Drop Fehler</translation>
     </message>
@@ -10185,12 +10185,12 @@
         <translation>Zeige Syntaxfehlermeldung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>Syntax Error</source>
         <translation>Syntaxfehler</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>No syntax error message available.</source>
         <translation>Keine Syntaxfehlermeldung verfügbar.</translation>
     </message>
@@ -10220,17 +10220,17 @@
         <translation>Vorige nichtabgedeckte Zeile</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Zeilen ohne Abdeckung Markieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5723"/>
+        <location filename="../QScintilla/Editor.py" line="5728"/>
         <source>All lines have been covered.</source>
         <translation>Alle Zeilen sind abgedeckt.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>There is no coverage file available.</source>
         <translation>Es gibt keine Datei mit Abdeckungsinformationen.</translation>
     </message>
@@ -10240,22 +10240,22 @@
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; enthält ungesicherte Änderungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6362"/>
+        <location filename="../QScintilla/Editor.py" line="6367"/>
         <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="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <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="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <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="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <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>
@@ -10295,82 +10295,82 @@
         <translation>Keine Sprache</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6770"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6926"/>
+        <location filename="../QScintilla/Editor.py" line="6931"/>
         <source>Resources</source>
         <translation>Ressourcen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6928"/>
+        <location filename="../QScintilla/Editor.py" line="6933"/>
         <source>Add file...</source>
         <translation>Datei hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6930"/>
-        <source>Add files...</source>
-        <translation>Dateien hinzufügen...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6932"/>
-        <source>Add aliased file...</source>
-        <translation>Aliased-Datei hinzufügen...</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6935"/>
+        <source>Add files...</source>
+        <translation>Dateien hinzufügen...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6937"/>
+        <source>Add aliased file...</source>
+        <translation>Aliased-Datei hinzufügen...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6940"/>
         <source>Add localized resource...</source>
         <translation>Lokalisierte Ressource hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6958"/>
+        <location filename="../QScintilla/Editor.py" line="6963"/>
         <source>Add file resource</source>
         <translation>Dateiressource hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6974"/>
+        <location filename="../QScintilla/Editor.py" line="6979"/>
         <source>Add file resources</source>
         <translation>Dateiressourcen hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <source>Add aliased file resource</source>
         <translation>Aliased-Dateiressourcen hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <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="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Package Diagram</source>
         <translation>Package-Diagramm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Include class attributes?</source>
         <translation>Klassenattribute anzeigen?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Application Diagram</source>
         <translation>Applikations-Diagramm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Include module names?</source>
         <translation>Modulnamen anzeigen?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6939"/>
+        <location filename="../QScintilla/Editor.py" line="6944"/>
         <source>Add resource frame</source>
         <translation>Ressourcenrahmen hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>Eine Makroaufzeichnung ist bereits aktiv. Neu starten?</translation>
     </message>
@@ -10420,12 +10420,12 @@
         <translation>Kein Exportformat angegeben. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Imports Diagram</source>
         <translation>Imports Diagramm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Include imports from external modules?</source>
         <translation>Imports externer Module anzeigen?</translation>
     </message>
@@ -10500,7 +10500,7 @@
         <translation>Wähle den anzuwendenden Pygments Lexer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7378"/>
+        <location filename="../QScintilla/Editor.py" line="7383"/>
         <source>Check spelling...</source>
         <translation>Rechtschreibprüfung...</translation>
     </message>
@@ -10510,12 +10510,12 @@
         <translation>Rechtschreibprüfung für Auswahl...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7386"/>
         <source>Add to dictionary</source>
         <translation>Zum Wörterbuch hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7383"/>
+        <location filename="../QScintilla/Editor.py" line="7388"/>
         <source>Ignore All</source>
         <translation>Alle ignorieren</translation>
     </message>
@@ -10560,22 +10560,22 @@
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <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="6259"/>
+        <location filename="../QScintilla/Editor.py" line="6264"/>
         <source>Warning: {0}</source>
         <translation>Warnung: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6266"/>
+        <location filename="../QScintilla/Editor.py" line="6271"/>
         <source>Error: {0}</source>
         <translation>Fehler: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6597"/>
+        <location filename="../QScintilla/Editor.py" line="6602"/>
         <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>
@@ -10600,27 +10600,27 @@
         <translation>Vorherige Änderung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>Sort Lines</source>
         <translation>Zeilen sortieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <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="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>Warning</source>
         <translation>Warnung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>No warning messages available.</source>
         <translation>Keine Warnmeldungen verfügbar.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6256"/>
+        <location filename="../QScintilla/Editor.py" line="6261"/>
         <source>Style: {0}</source>
         <translation>Stil: {0}</translation>
     </message>
@@ -10645,7 +10645,7 @@
         <translation>Öffnen mit Kodierung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6591"/>
+        <location filename="../QScintilla/Editor.py" line="6596"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. 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 eric6 geöffnet war. Neu einlesen?&lt;/p&gt;</translation>
     </message>
@@ -10660,32 +10660,32 @@
         <translation>Vervollständigen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>Auto-Completion Provider</source>
         <translation>Provider für automatische Vervollständigungen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation>Der Provider für automatische Vervollständigungen namens &apos;{0}&apos; ist bereits registriert. Die Wiederholung wird ignoriert.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>Call-Tips Provider</source>
         <translation>Calltipps-Provider</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation>Der Calltipps-Provider namens &apos;{0}&apos; ist bereits registriert. Die Wiederholung wird ignoriert.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>Register Mouse Click Handler</source>
         <translation>Maus Klick Handler registrieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation>Ein Maus Klick Handler für &quot;{0}&quot; wurde bereits durch &quot;{1}&quot; registriert. Die Anfrage durch &quot;{2}&quot; wird abgebrochen...</translation>
     </message>
@@ -46777,7 +46777,7 @@
         <translation>&lt;b&gt;Veraltete Pakete auflisten&lt;/b&gt;&lt;p&gt;Dies listet alle installierten, veralteten Pakete mit installierter und aktuellster Version auf.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="886"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="892"/>
         <source>Install Packages</source>
         <translation>Pakete installieren</translation>
     </message>
@@ -46812,7 +46812,7 @@
         <translation>&lt;b&gt;Paketanforderungen installieren&lt;/b&gt;&lt;p&gt;Dies installiert Pakete gemäß einer Anforderungsdatei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="859"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="865"/>
         <source>Upgrade Packages</source>
         <translation>Pakete aktualisieren</translation>
     </message>
@@ -46832,7 +46832,7 @@
         <translation>&lt;b&gt;Pakete aktualisieren&lt;/b&gt;&lt;p&gt;Dies aktualisiert Pakete gemäß Nutzereingabe.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Uninstall Packages</source>
         <translation>Pakete deinstallieren</translation>
     </message>
@@ -46937,17 +46937,17 @@
         <translation>Wähle das zu verwendende pip Programm:</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="907"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="913"/>
         <source>Install Packages from Requirements</source>
         <translation>Pakete gem. Anforderungen installieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Do you really want to uninstall these packages?</source>
         <translation>Sollen diese Pakete wirklich deinstalliert werden?</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="982"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="988"/>
         <source>Uninstall Packages from Requirements</source>
         <translation>Pakete gem. Anforderungen deinstallieren</translation>
     </message>
@@ -47067,7 +47067,7 @@
         <translation>&lt;p&gt;Pip installieren&lt;/b&gt;&lt;p&gt;Dies installiert das pip Paket.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="746"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="752"/>
         <source>Select Python Executable</source>
         <translation>Wähle das python Programm aus</translation>
     </message>
@@ -47087,17 +47087,17 @@
         <translation>PIP aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="729"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="735"/>
         <source>&lt;Default&gt;</source>
         <translation>&lt;Standard&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Upgrade pip</source>
         <translation>Pip aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Select pip Executable:</source>
         <translation>Wähle das pip Programm aus:</translation>
     </message>
@@ -47117,12 +47117,12 @@
         <translation>&lt;b&gt;Pip reparieren&lt;/b&gt;&lt;p&gt;Dies repariert das pip Paket durch eine Neuinstallation.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="757"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="763"/>
         <source>Repair PIP</source>
         <translation>PIP reparieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="821"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="827"/>
         <source>You are trying to upgrade PyQt packages. This will not work for the current instance of Python ({0}). Do you want to continue?</source>
         <translation>Sie versuchen ein Upgrade von PyQt Paketen. Dies wird für die laufende Python Instanz ({0}) fehlschlagen. Soll fortgefahren werden?</translation>
     </message>
@@ -60669,7 +60669,7 @@
         <translation>Zurücksetzen und Löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <source>Drop Error</source>
         <translation>Drop Fehler</translation>
     </message>
@@ -60679,7 +60679,7 @@
         <translation>Nr.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <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>
@@ -60694,7 +60694,7 @@
         <translation>{0} auf {1}, {2}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1638"/>
+        <location filename="../QScintilla/Shell.py" line="1678"/>
         <source>Shell language &quot;{0}&quot; not supported.
 </source>
         <translation>Die Shell-Sprache „{0}“ wird nicht unterstützt.
@@ -76886,7 +76886,7 @@
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3493"/>
-        <source>Toggle &amp;all folds</source>
+        <source>&amp;Toggle all folds</source>
         <translation>&amp;Alle Faltungen umschalten</translation>
     </message>
     <message>
@@ -76895,7 +76895,7 @@
         <translation>&lt;b&gt;Alle Faltungen umschalten&lt;/b&gt;&lt;p&gt;Dies schaltet alle Faltungen des aktuellen Editors um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>File Modified</source>
         <translation>Datei geändert</translation>
     </message>
@@ -77095,62 +77095,62 @@
         <translation>&lt;b&gt;Zurück zum letzten gesichert Zustand&lt;/b&gt;&lt;p&gt;Dies nimmt alle Änderungen des aktuellen Editors bis zum letzten gesicherten Zustand zurück.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
+        <location filename="../ViewManager/ViewManager.py" line="3609"/>
         <source>Split view</source>
         <translation>Ansicht aufteilen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
-        <source>&amp;Split view</source>
-        <translation>An&amp;sicht aufteilen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Add a split to the view</source>
-        <translation>Fügt eine weiter Ansicht hinzu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Ansicht aufteilen&lt;/b&gt;&lt;p&gt;Fügt eine weitere Ansicht hinzu.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange horizontally</source>
-        <translation>Horizontal anordnen</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange &amp;horizontally</source>
-        <translation>&amp;Horizontal anordnen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3613"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Ordnet die geteilten Ansichten horizontal an</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3615"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Horizontal anordnen&lt;/b&gt;&lt;p&gt;Ordnet die geteilten Ansichten horizontal an.&lt;/p&gt;</translation>
+        <source>&amp;Split view</source>
+        <translation>An&amp;sicht aufteilen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Add a split to the view</source>
+        <translation>Fügt eine weiter Ansicht hinzu</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Ansicht aufteilen&lt;/b&gt;&lt;p&gt;Fügt eine weitere Ansicht hinzu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3624"/>
+        <source>Arrange horizontally</source>
+        <translation>Horizontal anordnen</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3624"/>
+        <source>Arrange &amp;horizontally</source>
+        <translation>&amp;Horizontal anordnen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3628"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Ordnet die geteilten Ansichten horizontal an</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3630"/>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Horizontal anordnen&lt;/b&gt;&lt;p&gt;Ordnet die geteilten Ansichten horizontal an.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3639"/>
         <source>Remove split</source>
         <translation>Geteilte Ansicht löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3624"/>
+        <location filename="../ViewManager/ViewManager.py" line="3639"/>
         <source>&amp;Remove split</source>
         <translation>Geteilte Ansicht &amp;löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3629"/>
+        <location filename="../ViewManager/ViewManager.py" line="3644"/>
         <source>Remove the current split</source>
         <translation>Löscht die aktuelle Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <location filename="../ViewManager/ViewManager.py" line="3646"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Geteilte Ansicht löschen&lt;/b&gt;&lt;p&gt;Löscht die aktuelle Ansicht&lt;/p&gt;</translation>
     </message>
@@ -77635,167 +77635,167 @@
         <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3777"/>
+        <location filename="../ViewManager/ViewManager.py" line="3792"/>
         <source>Start Macro Recording</source>
         <translation>Makroaufzeichnung starten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3771"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>S&amp;tart Macro Recording</source>
         <translation>Makroaufzeichnung s&amp;tarten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makroaufzeichnung starten&lt;/b&gt;&lt;p&gt;Startet die Aufzeichnung von Editorbefehlen in ein neues Makro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
+        <location filename="../ViewManager/ViewManager.py" line="3806"/>
         <source>Stop Macro Recording</source>
         <translation>Makroaufzeichnung stoppen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3787"/>
+        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>Sto&amp;p Macro Recording</source>
         <translation>Makroaufzeichnung sto&amp;ppen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makroaufzeichnung stoppen&lt;/b&gt;&lt;p&gt;Stopt die Aufzeichnung von Editorbefehlen in ein neues Makro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <location filename="../ViewManager/ViewManager.py" line="3820"/>
         <source>Run Macro</source>
         <translation>Makro ausführen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3801"/>
+        <location filename="../ViewManager/ViewManager.py" line="3816"/>
         <source>&amp;Run Macro</source>
         <translation>Makro &amp;ausführen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3807"/>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makro ausführen&lt;/b&gt;&lt;p&gt;Führt ein vorher aufgezeichnetes Makro aus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3819"/>
+        <location filename="../ViewManager/ViewManager.py" line="3834"/>
         <source>Delete Macro</source>
         <translation>Makro löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <location filename="../ViewManager/ViewManager.py" line="3830"/>
         <source>&amp;Delete Macro</source>
         <translation>Makro &amp;löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3821"/>
+        <location filename="../ViewManager/ViewManager.py" line="3836"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makro löschen&lt;/b&gt;&lt;p&gt;Löscht ein vorher aufgezeichnetes Makro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3848"/>
         <source>Load Macro</source>
         <translation>Makro laden</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3829"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Load Macro</source>
         <translation>Makro la&amp;den</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3847"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>Save Macro</source>
         <translation>Makro speichern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3843"/>
+        <location filename="../ViewManager/ViewManager.py" line="3858"/>
         <source>&amp;Save Macro</source>
         <translation>Makro &amp;speichern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3850"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makro laden&lt;/b&gt;&lt;p&gt;Lädt ein Makro aus einer Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3849"/>
+        <location filename="../ViewManager/ViewManager.py" line="3864"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makro speichern&lt;/b&gt;&lt;p&gt;Speichert ein vorher aufgezeichnetes Makro in eine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3891"/>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
         <source>Toggle Bookmark</source>
         <translation>Lesezeichen setzen/löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>&amp;Lesezeichen setzen/löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3893"/>
+        <location filename="../ViewManager/ViewManager.py" line="3908"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lesezeichen setzen/löschen&lt;/b&gt;&lt;p&gt;Setzt/löscht ein Lesezeichen in der aktuellen Zeile des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
+        <location filename="../ViewManager/ViewManager.py" line="3925"/>
         <source>Next Bookmark</source>
         <translation>Nächstes Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>&amp;Next Bookmark</source>
         <translation>&amp;Nächstes Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3912"/>
+        <location filename="../ViewManager/ViewManager.py" line="3927"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nächstes Lesezeichen&lt;/b&gt;&lt;p&gt;Gehe zum nächsten Lesezeichen des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3928"/>
+        <location filename="../ViewManager/ViewManager.py" line="3943"/>
         <source>Previous Bookmark</source>
         <translation>Vorheriges Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>&amp;Previous Bookmark</source>
         <translation>&amp;Vorheriges Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Vorheriges Lesezeichen&lt;/b&gt;&lt;p&gt;Gehe zum vorherigen Lesezeichen des aktuellen Editors.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3945"/>
+        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Vorheriges Lesezeichen&lt;/b&gt;&lt;p&gt;Gehe zum vorherigen Lesezeichen des aktuellen Editors.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
         <source>Clear Bookmarks</source>
         <translation>Lesezeichen löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>Lesezeichen l&amp;öschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3947"/>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lesezeichen löschen&lt;/b&gt;&lt;p&gt;Lesezeichen aller Editoren löschen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4156"/>
+        <location filename="../ViewManager/ViewManager.py" line="4171"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3561"/>
         <source>Remove all highlights</source>
         <translation>Hervorhebungen löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hervorhebungen löschen&lt;/b&gt;&lt;p&gt;Hervorhebungen aller Editoren löschen.&lt;/p&gt;</translation>
     </message>
@@ -77805,17 +77805,17 @@
         <translation>Ge&amp;merkte Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5155"/>
+        <location filename="../ViewManager/ViewManager.py" line="5170"/>
         <source>&amp;Clear</source>
         <translation>&amp;Löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5149"/>
+        <location filename="../ViewManager/ViewManager.py" line="5164"/>
         <source>&amp;Add</source>
         <translation>&amp;Hinzufügen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5152"/>
+        <location filename="../ViewManager/ViewManager.py" line="5167"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Bearbeiten...</translation>
     </message>
@@ -77900,32 +77900,32 @@
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3961"/>
+        <location filename="../ViewManager/ViewManager.py" line="3976"/>
         <source>Goto Syntax Error</source>
         <translation>Zu Syntaxfehler gehen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3955"/>
+        <location filename="../ViewManager/ViewManager.py" line="3970"/>
         <source>&amp;Goto Syntax Error</source>
         <translation>Zu Syntaxfehler &amp;gehen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3963"/>
-        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Zu Syntaxfehler gehen&lt;/b&gt;&lt;p&gt;Gehe zum nächsten Syntaxfehler des aktuellen Editors.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Syntaxfehler löschen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3971"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>Synta&amp;xfehler löschen</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
+        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Zu Syntaxfehler gehen&lt;/b&gt;&lt;p&gt;Gehe zum nächsten Syntaxfehler des aktuellen Editors.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Syntaxfehler löschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>Synta&amp;xfehler löschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3993"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Syntaxfehler löschen&lt;/b&gt;&lt;p&gt;Syntaxfehler aller Editoren löschen.&lt;/p&gt;</translation>
     </message>
@@ -77950,32 +77950,32 @@
         <translation>&lt;b&gt;Datei suchen&lt;/b&gt;&lt;p&gt;Nach einer Datei suchen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4046"/>
+        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>Next uncovered line</source>
         <translation>Nächste nichtabgedeckte Zeile</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4040"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next uncovered line</source>
         <translation>&amp;Nächste nichtabgedeckte Zeile</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4048"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nächste nichtabgedeckte Zeile&lt;/b&gt;&lt;p&gt;Gehe zur nächsten als nicht abgedeckt markierten Zeile des aktiven Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4065"/>
+        <location filename="../ViewManager/ViewManager.py" line="4080"/>
         <source>Previous uncovered line</source>
         <translation>Vorige nichtabgedeckte Zeile</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
         <source>&amp;Previous uncovered line</source>
         <translation>&amp;Vorige nichtabgedeckte Zeile</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4082"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorige nichtabgedeckte Zeile&lt;/b&gt;&lt;p&gt;Gehe zur vorigen als nicht abgedeckt markierten Zeile des aktiven Editors.&lt;/p&gt;</translation>
     </message>
@@ -78003,7 +78003,7 @@
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; enthält ungesicherte Änderungen.&lt;/p&gt;</translation>
     </message>
@@ -78101,42 +78101,42 @@
         <translation>&lt;b&gt;Überwachte Einrückung&lt;/b&gt;&lt;p&gt;Dies rückt die aktuelle Zeile oder die Zeilen der aktuellen Auswahl ein, wobei nur sinnvolle Einrückungstiefen erlaubt sind.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
         <source>Next split</source>
         <translation>Nächste Ansichte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
         <source>&amp;Next split</source>
         <translation>&amp;Nächste Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <location filename="../ViewManager/ViewManager.py" line="3661"/>
         <source>Move to the next split</source>
         <translation>Gehe zur nächsten Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <location filename="../ViewManager/ViewManager.py" line="3663"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nächste Ansicht&lt;/b&gt;&lt;p&gt;Gehe zur nächsten Ansicht.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Previous split</source>
         <translation>Vorherige Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>&amp;Previous split</source>
         <translation>&amp;Vorherige Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3662"/>
+        <location filename="../ViewManager/ViewManager.py" line="3677"/>
         <source>Move to the previous split</source>
         <translation>Gehe zur vorherigen Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3664"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorherige Ansicht&lt;/b&gt;&lt;p&gt;Gehe zur vorherigen Ansicht.&lt;/p&gt;</translation>
     </message>
@@ -78371,93 +78371,93 @@
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3708"/>
+        <location filename="../ViewManager/ViewManager.py" line="3723"/>
         <source>&amp;View</source>
         <translation>&amp;Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <source>View</source>
         <translation>Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3865"/>
+        <location filename="../ViewManager/ViewManager.py" line="3880"/>
         <source>&amp;Macros</source>
         <translation>&amp;Makros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4202"/>
+        <location filename="../ViewManager/ViewManager.py" line="4217"/>
         <source>Bookmarks</source>
         <translation>Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4354"/>
+        <location filename="../ViewManager/ViewManager.py" line="4369"/>
         <source>Open files</source>
         <translation>Dateien öffnen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4083"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Next Task</source>
         <translation>Nächste Aufgabe</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4077"/>
+        <location filename="../ViewManager/ViewManager.py" line="4092"/>
         <source>&amp;Next Task</source>
         <translation>&amp;Nächste Aufgabe</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4085"/>
-        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Nächste Aufgabe&lt;/b&gt;&lt;p&gt;Gehe zur nächsten Zeile des aktuellen Editors, die eine Aufgabe enthält.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Nächste Aufgabe&lt;/b&gt;&lt;p&gt;Gehe zur nächsten Zeile des aktuellen Editors, die eine Aufgabe enthält.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4115"/>
         <source>Previous Task</source>
         <translation>Vorherige Aufgabe</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4093"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Previous Task</source>
         <translation>&amp;Vorherige Aufgabe</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
+        <location filename="../ViewManager/ViewManager.py" line="4117"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorherige Aufgabe&lt;/b&gt;&lt;p&gt;Gehe zur vorherigen Zeile des aktuellen Editors, die eine Aufgabe enthält.&lt;/p&gt;</translation>
     </message>
@@ -78656,78 +78656,78 @@
         <translation>&lt;b&gt;Ersetzen in Dateien&lt;/b&gt;&lt;p&gt;Sucht nach Text in den Dateien eines Verzeichnisbaumes oder des Projektes und ersetzt ihn. Es wird ein Dialog angezeigt, in dem der Suchtext, der Ersetzungstext und die Suchoptionen eingegeben werden können und in dem das Suchresultat angezeigt wird.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4244"/>
+        <location filename="../ViewManager/ViewManager.py" line="4259"/>
         <source>Perform spell check of current editor</source>
         <translation>Führe eine Rechtschreibprüfung des aktuellen Editors durch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>Automatic spell checking</source>
         <translation>Automatische Rechtschreibprüfung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>&amp;Automatic spell checking</source>
         <translation>&amp;Automatische Rechtschreibprüfung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4262"/>
+        <location filename="../ViewManager/ViewManager.py" line="4277"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation>(De-)Aktiviert die automatische Rechtschreibprüfung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Automatische Rechtschreibprüfung&lt;/b&gt;&lt;p&gt;Aktiviert bzw. deaktiviert die automatische Rechtschreibprüfung aller Editoren.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4346"/>
         <source>Spelling</source>
         <translation>Rechtschreibung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4730"/>
+        <location filename="../ViewManager/ViewManager.py" line="4745"/>
         <source>Line: {0:5}</source>
         <translation>Zeile: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4737"/>
+        <location filename="../ViewManager/ViewManager.py" line="4752"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3993"/>
+        <location filename="../ViewManager/ViewManager.py" line="4008"/>
         <source>Next warning message</source>
         <translation>Nächste Warnung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3987"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&amp;Next warning message</source>
         <translation>&amp;Nächste Warnung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <source>Previous warning message</source>
         <translation>Vorherige Warnung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4004"/>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Vorherige Warnung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4030"/>
+        <location filename="../ViewManager/ViewManager.py" line="4045"/>
         <source>Clear Warning Messages</source>
         <translation>Warnungen löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4023"/>
+        <location filename="../ViewManager/ViewManager.py" line="4038"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>&amp;Warnungen löschen</translation>
     </message>
@@ -78811,17 +78811,17 @@
         <translation>&lt;b&gt;Gehe zur nächsten Methode oder Klasse&lt;/b&gt;&lt;p&gt;Dies springt zur Zeile der nächsten Methoden- oder Klassendefinition und selektiert den Namen.&lt;/p&lt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <location filename="../ViewManager/ViewManager.py" line="3687"/>
         <source>Preview</source>
         <translation>Vorschau</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3677"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>Preview the current file in the web browser</source>
         <translation>Zeige eine Vorschau der aktuellen Datei im Webbrowser</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorschau&lt;/b&gt;&lt;p&gt;Dies öffnet einen Webbrowser mit einer Vorschau der aktuellen Datei.&lt;/p&gt;</translation>
     </message>
@@ -79235,97 +79235,97 @@
         <translation>&amp;Alle speichern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4117"/>
+        <location filename="../ViewManager/ViewManager.py" line="4132"/>
         <source>Next Change</source>
         <translation>Nächste Änderung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4111"/>
+        <location filename="../ViewManager/ViewManager.py" line="4126"/>
         <source>&amp;Next Change</source>
         <translation>&amp;Nächste Änderung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4119"/>
+        <location filename="../ViewManager/ViewManager.py" line="4134"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nächste Änderung&lt;/b&gt;&lt;p&gt;Gehe zur nächsten Zeile des aktuellen Editors, die eine Änderung enthält.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4150"/>
         <source>Previous Change</source>
         <translation>Vorherige Änderung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4128"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&amp;Previous Change</source>
         <translation>&amp;Vorherige Änderung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4137"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorherige Änderung&lt;/b&gt;&lt;p&gt;Gehe zur vorherigen Zeile des aktuellen Editors, die eine Änderung enthält.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check spelling</source>
         <translation>Rechtschreibprüfung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check &amp;spelling...</source>
         <translation>&amp;Rechtschreibprüfung...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4261"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rechtschreibprüfung&lt;b&gt;&lt;p&gt;Führe eine Rechtschreibprüfung des aktuellen Editors durch.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4295"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Edit Dictionary</source>
         <translation>Wörterbuch bearbeiten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4297"/>
+        <location filename="../ViewManager/ViewManager.py" line="4312"/>
         <source>Project Word List</source>
         <translation>Projekt-Wörterliste</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4300"/>
+        <location filename="../ViewManager/ViewManager.py" line="4315"/>
         <source>Project Exception List</source>
         <translation>Projekt-Ausnahmenliste</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4305"/>
+        <location filename="../ViewManager/ViewManager.py" line="4320"/>
         <source>User Word List</source>
         <translation>Nutzer-Wörterliste</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4323"/>
         <source>User Exception List</source>
         <translation>Nutzer-Ausnahmenliste</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>Edit Spelling Dictionary</source>
         <translation>Wörterbuch bearbeiten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6356"/>
+        <location filename="../ViewManager/ViewManager.py" line="6379"/>
         <source>Editing {0}</source>
         <translation>Bearbeite {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6341"/>
+        <location filename="../ViewManager/ViewManager.py" line="6364"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Wörterbuchdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6368"/>
+        <location filename="../ViewManager/ViewManager.py" line="6391"/>
         <source>&lt;p&gt;The spelling dictionary 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 Wörterbuchdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geschrieben werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation>Das Wörterbuch wurde erfolgreich gespeichert.</translation>
     </message>
@@ -79445,62 +79445,62 @@
         <translation>&lt;b&gt;Sortieren&lt;/b&gt;&lt;p&gt;Dies sortiert die von der Rechteckauswahl überspannten Zeilen basierend auf der Auswahl. Führende und folgende Leerzeichen werden ignoriert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4757"/>
+        <location filename="../ViewManager/ViewManager.py" line="4772"/>
         <source>Language: {0}</source>
         <translation>Sprache: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4765"/>
+        <location filename="../ViewManager/ViewManager.py" line="4780"/>
         <source>EOL Mode: {0}</source>
         <translation>EOL-Modus: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New Document View</source>
         <translation>Neue Dokumentenansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New &amp;Document View</source>
         <translation>Neue &amp;Dokumentenansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3561"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Open a new view of the current document</source>
         <translation>Offnet eine neue Ansicht des aktuellen Dokumentes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neue Dokumentenansicht&lt;/b&gt;&lt;p&gt;Offnet eine neue Ansicht des aktuellen Dokumentes. Beide Ansichten zeigen das selbe Dokument. Die Cursor lassen sich jedoch unabhängig positionieren.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3573"/>
+        <location filename="../ViewManager/ViewManager.py" line="3588"/>
         <source>New Document View (with new split)</source>
         <translation>Neue Dokumentenansicht (in neuem Abschnitt)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3580"/>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
         <source>Open a new view of the current document in a new split</source>
         <translation>Offnet eine neue Ansicht des aktuellen Dokumentes in einem neuen Abschnitt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3598"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neue Dokumentenansicht&lt;/b&gt;&lt;p&gt;Offnet eine neue Ansicht des aktuellen Dokumentes in einem neuen Abschnitt. Beide Ansichten zeigen das selbe Dokument. Die Cursor lassen sich jedoch unabhängig positionieren.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3995"/>
+        <location filename="../ViewManager/ViewManager.py" line="4010"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nächste Warnung&lt;/b&gt;&lt;p&gt;Gehe zur nächsten Zeile des aktuellen Editors, die eine pyflakes Warnung besitzt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
+        <location filename="../ViewManager/ViewManager.py" line="4029"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorherige Warnung&lt;/b&gt;&lt;p&gt;Gehe zur vorherigen Zeile des aktuellen Editors, die eine pyflakes Warnung besitzt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4032"/>
+        <location filename="../ViewManager/ViewManager.py" line="4047"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Warnungen löschen&lt;/b&gt;&lt;p&gt;Löscht die pyflakes Warnungen aller Editoren.&lt;/p&gt;</translation>
     </message>
@@ -79709,6 +79709,21 @@
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Zeigt Code Informationen basierend auf der aktuellen Cursorposition an.&lt;/p&gt;</translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <source>Clear all folds</source>
+        <translation>Alle Faltungen aufklappen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3540"/>
+        <source>Clear &amp;all folds</source>
+        <translation>Alle &amp;Faltungen aufklappen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Alle Faltungen aufklappen&lt;/b&gt;&lt;p&gt;Alle Faltungen des aktuellen Editors aufklappen, d.h. sicherstellen, dass alle Zeilen angezeigt werden.&lt;/p&gt;</translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/i18n/eric6_empty.ts	Fri Dec 22 16:07:49 2017 +0100
+++ b/i18n/eric6_empty.ts	Fri Dec 22 16:21:40 2017 +0100
@@ -127,62 +127,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="48"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="50"/>
         <source>Search...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="130"/>
-        <source>Add Rule</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="132"/>
-        <source>Remove Rule</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
+        <source>Add Rule</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="137"/>
+        <source>Remove Rule</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Browse Subscriptions...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="230"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="236"/>
         <source>Remove Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
-        <source>Disable Subscription</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="145"/>
-        <source>Enable Subscription</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
+        <source>Disable Subscription</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="150"/>
+        <source>Enable Subscription</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="153"/>
         <source>Update Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="151"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
         <source>Update All Subscriptions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Learn more about writing rules...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="220"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="226"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="227"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -220,7 +220,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="37"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="38"/>
         <source>Enter host to be added...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -228,37 +228,37 @@
 <context>
     <name>AdBlockIcon</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="38"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="39"/>
         <source>AdBlock lets you block unwanted content on web pages.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="72"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="75"/>
         <source>Disable AdBlock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="77"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="80"/>
         <source>Enable AdBlock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="84"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="87"/>
         <source>Remove AdBlock Exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="89"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="92"/>
         <source>Add AdBlock Exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="93"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="96"/>
         <source>AdBlock Exceptions...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="97"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="100"/>
         <source>AdBlock Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -278,7 +278,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="108"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="112"/>
         <source>AdBlock</source>
         <translation type="unfinished"></translation>
     </message>
@@ -286,17 +286,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="208"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="221"/>
         <source>Custom Rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>Subscribe?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -304,7 +304,7 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>Load subscription rules</source>
         <translation type="unfinished"></translation>
     </message>
@@ -314,22 +314,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>Downloading subscription rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="387"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="392"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="405"/>
         <source>Got empty subscription rules.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -339,22 +339,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Saving subscription rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="280"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="286"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -362,27 +362,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Add Custom Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Write your rule here:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="161"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="165"/>
         <source>Add Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="163"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="167"/>
         <source>Remove Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="215"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="220"/>
         <source>{0} (recently updated)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7068,28 +7068,28 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="112"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="113"/>
         <source>Invalid response received from DeepL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="115"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="116"/>
         <source>DeepL reported an error.
 Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="119"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="120"/>
         <source>DeepL call returned an unknown result</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="123"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="124"/>
         <source>Unsupported language code given (source: {0}, target: {1}).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="130"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="131"/>
         <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7631,7 +7631,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>.desktop Wizard</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7966,22 +7966,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9806,7 +9806,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7378"/>
+        <location filename="../QScintilla/Editor.py" line="7383"/>
         <source>Check spelling...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10076,7 +10076,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5290"/>
+        <location filename="../QScintilla/Editor.py" line="5295"/>
         <source>Enable breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10271,317 +10271,317 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5293"/>
+        <location filename="../QScintilla/Editor.py" line="5298"/>
         <source>Disable breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Please select a coverage file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>Show Code Coverage Annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5723"/>
+        <location filename="../QScintilla/Editor.py" line="5728"/>
         <source>All lines have been covered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>There is no coverage file available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Profile Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Please select a profile file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>Syntax Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>No syntax error message available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>Warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6256"/>
+        <location filename="../QScintilla/Editor.py" line="6261"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6259"/>
+        <location filename="../QScintilla/Editor.py" line="6264"/>
         <source>Warning: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6266"/>
+        <location filename="../QScintilla/Editor.py" line="6271"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Macro Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Select a macro name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6348"/>
+        <location filename="../QScintilla/Editor.py" line="6353"/>
         <source>Load macro file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Macro files (*.macro)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <source>Error loading macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6362"/>
+        <location filename="../QScintilla/Editor.py" line="6367"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Save macro file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <source>Save macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <source>Error saving macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Start Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Macro recording is already active. Start new?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Enter name of the macro:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6591"/>
+        <location filename="../QScintilla/Editor.py" line="6596"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6597"/>
+        <location filename="../QScintilla/Editor.py" line="6602"/>
         <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6601"/>
+        <location filename="../QScintilla/Editor.py" line="6606"/>
         <source>File changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6770"/>
         <source>{0} (ro)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6926"/>
+        <location filename="../QScintilla/Editor.py" line="6931"/>
         <source>Resources</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6928"/>
+        <location filename="../QScintilla/Editor.py" line="6933"/>
         <source>Add file...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6930"/>
-        <source>Add files...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6932"/>
-        <source>Add aliased file...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6935"/>
+        <source>Add files...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6937"/>
+        <source>Add aliased file...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6940"/>
         <source>Add localized resource...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6939"/>
+        <location filename="../QScintilla/Editor.py" line="6944"/>
         <source>Add resource frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6958"/>
+        <location filename="../QScintilla/Editor.py" line="6963"/>
         <source>Add file resource</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6974"/>
+        <location filename="../QScintilla/Editor.py" line="6979"/>
         <source>Add file resources</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <source>Add aliased file resource</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Package Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Include class attributes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Imports Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Include imports from external modules?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Application Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Include module names?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7386"/>
         <source>Add to dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7383"/>
+        <location filename="../QScintilla/Editor.py" line="7388"/>
         <source>Ignore All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46536,7 +46536,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="886"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="892"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46621,7 +46621,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="859"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="865"/>
         <source>Upgrade Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46641,7 +46641,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Uninstall Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46826,7 +46826,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="746"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="752"/>
         <source>Select Python Executable</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46841,17 +46841,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="729"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="735"/>
         <source>&lt;Default&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Upgrade pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Select pip Executable:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46861,27 +46861,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="757"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="763"/>
         <source>Repair PIP</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="907"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="913"/>
         <source>Install Packages from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Do you really want to uninstall these packages?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="982"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="988"/>
         <source>Uninstall Packages from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="821"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="827"/>
         <source>You are trying to upgrade PyQt packages. This will not work for the current instance of Python ({0}). Do you want to continue?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60294,18 +60294,18 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1638"/>
+        <location filename="../QScintilla/Shell.py" line="1678"/>
         <source>Shell language &quot;{0}&quot; not supported.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78260,7 +78260,7 @@
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3493"/>
-        <source>Toggle &amp;all folds</source>
+        <source>&amp;Toggle all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -78299,689 +78299,689 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3561"/>
         <source>Remove all highlights</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3548"/>
-        <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
-        <source>New Document View</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
-        <source>New &amp;Document View</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3561"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
+        <source>New Document View</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
+        <source>New &amp;Document View</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3573"/>
+        <location filename="../ViewManager/ViewManager.py" line="3588"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3580"/>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3598"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
-        <source>Split view</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
-        <source>&amp;Split view</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Add a split to the view</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange horizontally</source>
+        <source>Split view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange &amp;horizontally</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3613"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3615"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3624"/>
-        <source>Remove split</source>
+        <source>&amp;Split view</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Add a split to the view</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3624"/>
-        <source>&amp;Remove split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3629"/>
-        <source>Remove the current split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
-        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
+        <source>Arrange horizontally</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3624"/>
+        <source>Arrange &amp;horizontally</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3628"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3630"/>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>Next split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>&amp;Next split</source>
+        <source>Remove split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>Ctrl+Alt+N</source>
-        <comment>View|Next split</comment>
+        <source>&amp;Remove split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3644"/>
+        <source>Remove the current split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>Next split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>&amp;Next split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>Ctrl+Alt+N</source>
+        <comment>View|Next split</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3661"/>
         <source>Move to the next split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <location filename="../ViewManager/ViewManager.py" line="3663"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Previous split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>&amp;Previous split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3662"/>
-        <source>Move to the previous split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3664"/>
-        <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3672"/>
-        <source>Preview</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3677"/>
-        <source>Preview the current file in the web browser</source>
+        <source>Move to the previous split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3687"/>
+        <source>Preview</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
+        <source>Preview the current file in the web browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3708"/>
+        <location filename="../ViewManager/ViewManager.py" line="3723"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3777"/>
+        <location filename="../ViewManager/ViewManager.py" line="3792"/>
         <source>Start Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3771"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>S&amp;tart Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
+        <location filename="../ViewManager/ViewManager.py" line="3806"/>
         <source>Stop Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3787"/>
+        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>Sto&amp;p Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <location filename="../ViewManager/ViewManager.py" line="3820"/>
         <source>Run Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3801"/>
+        <location filename="../ViewManager/ViewManager.py" line="3816"/>
         <source>&amp;Run Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3807"/>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3819"/>
+        <location filename="../ViewManager/ViewManager.py" line="3834"/>
         <source>Delete Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <location filename="../ViewManager/ViewManager.py" line="3830"/>
         <source>&amp;Delete Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3821"/>
+        <location filename="../ViewManager/ViewManager.py" line="3836"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3848"/>
         <source>Load Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3829"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Load Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3850"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3847"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>Save Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3843"/>
+        <location filename="../ViewManager/ViewManager.py" line="3858"/>
         <source>&amp;Save Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3849"/>
+        <location filename="../ViewManager/ViewManager.py" line="3864"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3865"/>
+        <location filename="../ViewManager/ViewManager.py" line="3880"/>
         <source>&amp;Macros</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3891"/>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
         <source>Toggle Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>&amp;Toggle Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3893"/>
+        <location filename="../ViewManager/ViewManager.py" line="3908"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
+        <location filename="../ViewManager/ViewManager.py" line="3925"/>
         <source>Next Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>&amp;Next Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3912"/>
+        <location filename="../ViewManager/ViewManager.py" line="3927"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3928"/>
+        <location filename="../ViewManager/ViewManager.py" line="3943"/>
         <source>Previous Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>&amp;Previous Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3945"/>
+        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
         <source>Clear Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>&amp;Clear Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3947"/>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3961"/>
-        <source>Goto Syntax Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3955"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3963"/>
-        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Clear Syntax Errors</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3971"/>
-        <source>Clear &amp;Syntax Errors</source>
+        <source>Goto Syntax Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3970"/>
+        <source>&amp;Goto Syntax Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
-        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
+        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
+        <source>Clear Syntax Errors</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Clear &amp;Syntax Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3993"/>
+        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4008"/>
         <source>Next warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3987"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&amp;Next warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3995"/>
+        <location filename="../ViewManager/ViewManager.py" line="4010"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <source>Previous warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4004"/>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
         <source>&amp;Previous warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
+        <location filename="../ViewManager/ViewManager.py" line="4029"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4030"/>
+        <location filename="../ViewManager/ViewManager.py" line="4045"/>
         <source>Clear Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4023"/>
+        <location filename="../ViewManager/ViewManager.py" line="4038"/>
         <source>Clear &amp;Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4032"/>
+        <location filename="../ViewManager/ViewManager.py" line="4047"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4046"/>
+        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>Next uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4040"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4048"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4065"/>
+        <location filename="../ViewManager/ViewManager.py" line="4080"/>
         <source>Previous uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
         <source>&amp;Previous uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4082"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4083"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Next Task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4077"/>
+        <location filename="../ViewManager/ViewManager.py" line="4092"/>
         <source>&amp;Next Task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4085"/>
-        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4115"/>
         <source>Previous Task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4093"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Previous Task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
-        <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4117"/>
+        <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4132"/>
         <source>Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4111"/>
+        <location filename="../ViewManager/ViewManager.py" line="4126"/>
         <source>&amp;Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4119"/>
+        <location filename="../ViewManager/ViewManager.py" line="4134"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4150"/>
         <source>Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4128"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&amp;Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4137"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4156"/>
+        <location filename="../ViewManager/ViewManager.py" line="4171"/>
         <source>&amp;Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4202"/>
+        <location filename="../ViewManager/ViewManager.py" line="4217"/>
         <source>Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4244"/>
+        <location filename="../ViewManager/ViewManager.py" line="4259"/>
         <source>Perform spell check of current editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4261"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>Automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>&amp;Automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4262"/>
+        <location filename="../ViewManager/ViewManager.py" line="4277"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4295"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Edit Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4297"/>
+        <location filename="../ViewManager/ViewManager.py" line="4312"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4300"/>
+        <location filename="../ViewManager/ViewManager.py" line="4315"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4305"/>
+        <location filename="../ViewManager/ViewManager.py" line="4320"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4323"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4346"/>
         <source>Spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4354"/>
+        <location filename="../ViewManager/ViewManager.py" line="4369"/>
         <source>Open files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>File Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4730"/>
+        <location filename="../ViewManager/ViewManager.py" line="4745"/>
         <source>Line: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4737"/>
+        <location filename="../ViewManager/ViewManager.py" line="4752"/>
         <source>Pos: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4757"/>
+        <location filename="../ViewManager/ViewManager.py" line="4772"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4765"/>
+        <location filename="../ViewManager/ViewManager.py" line="4780"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5155"/>
+        <location filename="../ViewManager/ViewManager.py" line="5170"/>
         <source>&amp;Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5149"/>
+        <location filename="../ViewManager/ViewManager.py" line="5164"/>
         <source>&amp;Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5152"/>
+        <location filename="../ViewManager/ViewManager.py" line="5167"/>
         <source>&amp;Edit...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6341"/>
+        <location filename="../ViewManager/ViewManager.py" line="6364"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6356"/>
+        <location filename="../ViewManager/ViewManager.py" line="6379"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6368"/>
+        <location filename="../ViewManager/ViewManager.py" line="6391"/>
         <source>&lt;p&gt;The spelling dictionary 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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -79069,6 +79069,21 @@
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3540"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/i18n/eric6_en.ts	Fri Dec 22 16:07:49 2017 +0100
+++ b/i18n/eric6_en.ts	Fri Dec 22 16:21:40 2017 +0100
@@ -112,22 +112,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Learn more about writing rules...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="153"/>
         <source>Update Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Browse Subscriptions...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="230"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="236"/>
         <source>Remove Subscription</source>
         <translation type="unfinished"></translation>
     </message>
@@ -137,42 +137,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="48"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="50"/>
         <source>Search...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="130"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
         <source>Add Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="132"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="137"/>
         <source>Remove Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
         <source>Disable Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="145"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="150"/>
         <source>Enable Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="151"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
         <source>Update All Subscriptions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="220"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="226"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="227"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -220,7 +220,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="37"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="38"/>
         <source>Enter host to be added...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -228,17 +228,17 @@
 <context>
     <name>AdBlockIcon</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="38"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="39"/>
         <source>AdBlock lets you block unwanted content on web pages.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="72"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="75"/>
         <source>Disable AdBlock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="77"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="80"/>
         <source>Enable AdBlock</source>
         <translation type="unfinished"></translation>
     </message>
@@ -258,27 +258,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="108"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="112"/>
         <source>AdBlock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="84"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="87"/>
         <source>Remove AdBlock Exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="89"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="92"/>
         <source>Add AdBlock Exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="93"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="96"/>
         <source>AdBlock Exceptions...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="97"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="100"/>
         <source>AdBlock Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -286,17 +286,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="208"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="221"/>
         <source>Custom Rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>Subscribe?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -304,7 +304,7 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>Load subscription rules</source>
         <translation type="unfinished"></translation>
     </message>
@@ -314,17 +314,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>Downloading subscription rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="387"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="392"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="405"/>
         <source>Got empty subscription rules.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -334,27 +334,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Saving subscription rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="280"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="286"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -362,27 +362,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Add Custom Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Write your rule here:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="161"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="165"/>
         <source>Add Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="163"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="167"/>
         <source>Remove Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="215"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="220"/>
         <source>{0} (recently updated)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7075,28 +7075,28 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="112"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="113"/>
         <source>Invalid response received from DeepL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="115"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="116"/>
         <source>DeepL reported an error.
 Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="119"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="120"/>
         <source>DeepL call returned an unknown result</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="123"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="124"/>
         <source>Unsupported language code given (source: {0}, target: {1}).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="130"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="131"/>
         <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7638,7 +7638,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>.desktop Wizard</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7963,22 +7963,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9820,7 +9820,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7378"/>
+        <location filename="../QScintilla/Editor.py" line="7383"/>
         <source>Check spelling...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10045,7 +10045,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5290"/>
+        <location filename="../QScintilla/Editor.py" line="5295"/>
         <source>Enable breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10230,257 +10230,257 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5293"/>
+        <location filename="../QScintilla/Editor.py" line="5298"/>
         <source>Disable breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Please select a coverage file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>Show Code Coverage Annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5723"/>
+        <location filename="../QScintilla/Editor.py" line="5728"/>
         <source>All lines have been covered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>There is no coverage file available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Profile Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Please select a profile file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>Syntax Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>No syntax error message available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Macro Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Select a macro name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6348"/>
+        <location filename="../QScintilla/Editor.py" line="6353"/>
         <source>Load macro file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Macro files (*.macro)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <source>Error loading macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6362"/>
+        <location filename="../QScintilla/Editor.py" line="6367"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Save macro file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <source>Save macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <source>Error saving macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Start Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Macro recording is already active. Start new?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Enter name of the macro:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6601"/>
+        <location filename="../QScintilla/Editor.py" line="6606"/>
         <source>File changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6770"/>
         <source>{0} (ro)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6926"/>
+        <location filename="../QScintilla/Editor.py" line="6931"/>
         <source>Resources</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6928"/>
+        <location filename="../QScintilla/Editor.py" line="6933"/>
         <source>Add file...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6930"/>
-        <source>Add files...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6932"/>
-        <source>Add aliased file...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6935"/>
+        <source>Add files...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6937"/>
+        <source>Add aliased file...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6940"/>
         <source>Add localized resource...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6939"/>
+        <location filename="../QScintilla/Editor.py" line="6944"/>
         <source>Add resource frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6958"/>
+        <location filename="../QScintilla/Editor.py" line="6963"/>
         <source>Add file resource</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6974"/>
+        <location filename="../QScintilla/Editor.py" line="6979"/>
         <source>Add file resources</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <source>Add aliased file resource</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Package Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Include class attributes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Imports Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Include imports from external modules?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Application Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Include module names?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7386"/>
         <source>Add to dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7383"/>
+        <location filename="../QScintilla/Editor.py" line="7388"/>
         <source>Ignore All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6259"/>
+        <location filename="../QScintilla/Editor.py" line="6264"/>
         <source>Warning: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6266"/>
+        <location filename="../QScintilla/Editor.py" line="6271"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6597"/>
+        <location filename="../QScintilla/Editor.py" line="6602"/>
         <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10505,27 +10505,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>Warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6256"/>
+        <location filename="../QScintilla/Editor.py" line="6261"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10550,7 +10550,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6591"/>
+        <location filename="../QScintilla/Editor.py" line="6596"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10565,32 +10565,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46578,7 +46578,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="886"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="892"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46613,7 +46613,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="859"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="865"/>
         <source>Upgrade Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46633,7 +46633,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Uninstall Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46738,17 +46738,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="907"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="913"/>
         <source>Install Packages from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Do you really want to uninstall these packages?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="982"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="988"/>
         <source>Uninstall Packages from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46868,7 +46868,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="746"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="752"/>
         <source>Select Python Executable</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46888,17 +46888,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="729"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="735"/>
         <source>&lt;Default&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Upgrade pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Select pip Executable:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46918,12 +46918,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="757"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="763"/>
         <source>Repair PIP</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="821"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="827"/>
         <source>You are trying to upgrade PyQt packages. This will not work for the current instance of Python ({0}). Do you want to continue?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60302,18 +60302,18 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1638"/>
+        <location filename="../QScintilla/Shell.py" line="1678"/>
         <source>Shell language &quot;{0}&quot; not supported.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77599,7 +77599,7 @@
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3493"/>
-        <source>Toggle &amp;all folds</source>
+        <source>&amp;Toggle all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -77638,519 +77638,519 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3561"/>
         <source>Remove all highlights</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
-        <source>Split view</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
-        <source>&amp;Split view</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Add a split to the view</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange horizontally</source>
+        <source>Split view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange &amp;horizontally</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3613"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3615"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
+        <source>&amp;Split view</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Add a split to the view</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3624"/>
-        <source>Remove split</source>
+        <source>Arrange horizontally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3624"/>
-        <source>&amp;Remove split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3629"/>
-        <source>Remove the current split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
-        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
+        <source>Arrange &amp;horizontally</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3628"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3630"/>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>Next split</source>
+        <source>Remove split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>&amp;Next split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>Ctrl+Alt+N</source>
-        <comment>View|Next split</comment>
+        <source>&amp;Remove split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3644"/>
+        <source>Remove the current split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>Next split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>&amp;Next split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>Ctrl+Alt+N</source>
+        <comment>View|Next split</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3661"/>
         <source>Move to the next split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <location filename="../ViewManager/ViewManager.py" line="3663"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Previous split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>&amp;Previous split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3662"/>
+        <location filename="../ViewManager/ViewManager.py" line="3677"/>
         <source>Move to the previous split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3664"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3708"/>
+        <location filename="../ViewManager/ViewManager.py" line="3723"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3777"/>
+        <location filename="../ViewManager/ViewManager.py" line="3792"/>
         <source>Start Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3771"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>S&amp;tart Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
+        <location filename="../ViewManager/ViewManager.py" line="3806"/>
         <source>Stop Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3787"/>
+        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>Sto&amp;p Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <location filename="../ViewManager/ViewManager.py" line="3820"/>
         <source>Run Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3801"/>
+        <location filename="../ViewManager/ViewManager.py" line="3816"/>
         <source>&amp;Run Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3807"/>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3819"/>
+        <location filename="../ViewManager/ViewManager.py" line="3834"/>
         <source>Delete Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <location filename="../ViewManager/ViewManager.py" line="3830"/>
         <source>&amp;Delete Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3821"/>
+        <location filename="../ViewManager/ViewManager.py" line="3836"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3848"/>
         <source>Load Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3829"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Load Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3850"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3847"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>Save Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3843"/>
+        <location filename="../ViewManager/ViewManager.py" line="3858"/>
         <source>&amp;Save Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3849"/>
+        <location filename="../ViewManager/ViewManager.py" line="3864"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3865"/>
+        <location filename="../ViewManager/ViewManager.py" line="3880"/>
         <source>&amp;Macros</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3891"/>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
         <source>Toggle Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>&amp;Toggle Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3893"/>
+        <location filename="../ViewManager/ViewManager.py" line="3908"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
+        <location filename="../ViewManager/ViewManager.py" line="3925"/>
         <source>Next Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>&amp;Next Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3912"/>
+        <location filename="../ViewManager/ViewManager.py" line="3927"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3928"/>
+        <location filename="../ViewManager/ViewManager.py" line="3943"/>
         <source>Previous Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>&amp;Previous Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3945"/>
+        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
         <source>Clear Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>&amp;Clear Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3947"/>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3961"/>
-        <source>Goto Syntax Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3955"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3963"/>
-        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Clear Syntax Errors</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3971"/>
-        <source>Clear &amp;Syntax Errors</source>
+        <source>Goto Syntax Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3970"/>
+        <source>&amp;Goto Syntax Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
-        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
+        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
+        <source>Clear Syntax Errors</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Clear &amp;Syntax Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3993"/>
+        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4008"/>
         <source>Next warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3987"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&amp;Next warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <source>Previous warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4004"/>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
         <source>&amp;Previous warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4030"/>
+        <location filename="../ViewManager/ViewManager.py" line="4045"/>
         <source>Clear Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4023"/>
+        <location filename="../ViewManager/ViewManager.py" line="4038"/>
         <source>Clear &amp;Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4046"/>
+        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>Next uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4040"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4048"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4065"/>
+        <location filename="../ViewManager/ViewManager.py" line="4080"/>
         <source>Previous uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
         <source>&amp;Previous uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4082"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4083"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Next Task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4077"/>
+        <location filename="../ViewManager/ViewManager.py" line="4092"/>
         <source>&amp;Next Task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4085"/>
-        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4115"/>
         <source>Previous Task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4093"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Previous Task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
+        <location filename="../ViewManager/ViewManager.py" line="4117"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4156"/>
+        <location filename="../ViewManager/ViewManager.py" line="4171"/>
         <source>&amp;Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4202"/>
+        <location filename="../ViewManager/ViewManager.py" line="4217"/>
         <source>Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4244"/>
+        <location filename="../ViewManager/ViewManager.py" line="4259"/>
         <source>Perform spell check of current editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>Automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>&amp;Automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4262"/>
+        <location filename="../ViewManager/ViewManager.py" line="4277"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4346"/>
         <source>Spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4354"/>
+        <location filename="../ViewManager/ViewManager.py" line="4369"/>
         <source>Open files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>File Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4730"/>
+        <location filename="../ViewManager/ViewManager.py" line="4745"/>
         <source>Line: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4737"/>
+        <location filename="../ViewManager/ViewManager.py" line="4752"/>
         <source>Pos: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5155"/>
+        <location filename="../ViewManager/ViewManager.py" line="5170"/>
         <source>&amp;Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5149"/>
+        <location filename="../ViewManager/ViewManager.py" line="5164"/>
         <source>&amp;Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5152"/>
+        <location filename="../ViewManager/ViewManager.py" line="5167"/>
         <source>&amp;Edit...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78218,17 +78218,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <location filename="../ViewManager/ViewManager.py" line="3687"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3677"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>Preview the current file in the web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78642,97 +78642,97 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4117"/>
+        <location filename="../ViewManager/ViewManager.py" line="4132"/>
         <source>Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4111"/>
+        <location filename="../ViewManager/ViewManager.py" line="4126"/>
         <source>&amp;Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4119"/>
+        <location filename="../ViewManager/ViewManager.py" line="4134"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4150"/>
         <source>Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4128"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&amp;Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4137"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4261"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4295"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Edit Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4297"/>
+        <location filename="../ViewManager/ViewManager.py" line="4312"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4300"/>
+        <location filename="../ViewManager/ViewManager.py" line="4315"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4305"/>
+        <location filename="../ViewManager/ViewManager.py" line="4320"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4323"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6356"/>
+        <location filename="../ViewManager/ViewManager.py" line="6379"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6341"/>
+        <location filename="../ViewManager/ViewManager.py" line="6364"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6368"/>
+        <location filename="../ViewManager/ViewManager.py" line="6391"/>
         <source>&lt;p&gt;The spelling dictionary 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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78852,62 +78852,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4757"/>
+        <location filename="../ViewManager/ViewManager.py" line="4772"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4765"/>
+        <location filename="../ViewManager/ViewManager.py" line="4780"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New &amp;Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3561"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Open a new view of the current document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3573"/>
+        <location filename="../ViewManager/ViewManager.py" line="3588"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3580"/>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3598"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3995"/>
+        <location filename="../ViewManager/ViewManager.py" line="4010"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
+        <location filename="../ViewManager/ViewManager.py" line="4029"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4032"/>
+        <location filename="../ViewManager/ViewManager.py" line="4047"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -79116,6 +79116,21 @@
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3540"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/i18n/eric6_es.ts	Fri Dec 22 16:07:49 2017 +0100
+++ b/i18n/eric6_es.ts	Fri Dec 22 16:21:40 2017 +0100
@@ -107,22 +107,22 @@
         <translation>Acciones</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Learn more about writing rules...</source>
         <translation>Aprender más acerca de escribir reglas...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="153"/>
         <source>Update Subscription</source>
         <translation>Actualizar Suscripción</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Browse Subscriptions...</source>
         <translation>Navegar Suscripciones...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="230"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="236"/>
         <source>Remove Subscription</source>
         <translation>Eliminar Suscripción</translation>
     </message>
@@ -137,42 +137,42 @@
         <translation>Introducir el periodo de actualización (1 a 14 días)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="48"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="50"/>
         <source>Search...</source>
         <translation>Buscar...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="130"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
         <source>Add Rule</source>
         <translation>Añadir regla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="132"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="137"/>
         <source>Remove Rule</source>
         <translation>Eliminar Regla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
         <source>Disable Subscription</source>
         <translation>Deshabilitar Suscripción</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="145"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="150"/>
         <source>Enable Subscription</source>
         <translation>Habilitar Suscripción</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="151"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
         <source>Update All Subscriptions</source>
         <translation>Actualizar Todas las Suscripciones</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="220"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="226"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation>&lt;p&gt;¿Desesa realmente eliminar la suscripción &lt;b&gt;{0}&lt;/b&gt; y todas las suscripciones que la necesitan?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="227"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;¿Desea realmente eliminar la suscripción &lt;b&gt;{0}&lt;/b&gt; ?&lt;/p&gt;</translation>
     </message>
@@ -220,7 +220,7 @@
         <translation>&amp;Borrar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="37"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="38"/>
         <source>Enter host to be added...</source>
         <translation>Introducir host a añadir...</translation>
     </message>
@@ -228,17 +228,17 @@
 <context>
     <name>AdBlockIcon</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="38"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="39"/>
         <source>AdBlock lets you block unwanted content on web pages.</source>
         <translation>Adblock le permite bloquear el contenido no deseado de las páginas web.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="72"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="75"/>
         <source>Disable AdBlock</source>
         <translation>Deshabilitar AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="77"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="80"/>
         <source>Enable AdBlock</source>
         <translation>Habilitar AdBlock</translation>
     </message>
@@ -258,27 +258,27 @@
         <translation>No hay contenido bloqueado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="108"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="112"/>
         <source>AdBlock</source>
         <translation>AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="84"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="87"/>
         <source>Remove AdBlock Exception</source>
         <translation>Eliminar Excepción de AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="89"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="92"/>
         <source>Add AdBlock Exception</source>
         <translation>Añadir Excepción de AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="93"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="96"/>
         <source>AdBlock Exceptions...</source>
         <translation>Excepciones de AdBlock...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="97"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="100"/>
         <source>AdBlock Configuration...</source>
         <translation>Configuración de AdBlock...</translation>
     </message>
@@ -286,17 +286,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="208"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="221"/>
         <source>Custom Rules</source>
         <translation>Reglas Personalizadas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>Subscribe?</source>
         <translation>¿Suscribir?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;¿Suscribirse a esta suscripción de AdBlock?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -304,22 +304,22 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>Load subscription rules</source>
         <translation>Cargar reglas de la suscripción</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>Downloading subscription rules</source>
         <translation>Descargando reglas de la suscripción</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="405"/>
         <source>Got empty subscription rules.</source>
         <translation>El conjunto de reglas de suscripción está vacío.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Saving subscription rules</source>
         <translation>Guardando reglas de la suscripción</translation>
     </message>
@@ -329,7 +329,7 @@
         <translation>No ha sido posible abrir el archivo de AdBlock &apos;{0}&apos; en modo lectura.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="387"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="392"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Las reglas de la subscrición no han podido ser descargadas.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</translation>
     </message>
@@ -339,22 +339,22 @@
         <translation>No ha sido posible abrir el archivo de AdBlock &apos;{0}&apos; en modo escritura.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation>El archivo de AdBlock &apos;{0}&apos; no comienza con [Adblock.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation>&lt;p&gt;La suscripción de AdBlock&lt;b&gt;{0}&lt;/b&gt; tiene un checksum erróneo.&lt;br/&gt;Hallado: {1}&lt;br/&gt;Calculatado: {2}&lt;br/&gt;¿Usarlo de todos modos?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="280"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="286"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation>No ha sido posible abrir el archivo de AdBlock &apos;{0}&apos; en modo lectura.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation>No ha sido posible abrir el archivo de AdBlock &apos;{0}&apos; en modo escritura.</translation>
     </message>
@@ -362,27 +362,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Add Custom Rule</source>
         <translation>Añadir Regla Personalizada</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Write your rule here:</source>
         <translation>Escribir aquí la regla:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="161"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="165"/>
         <source>Add Rule</source>
         <translation>Añadir regla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="163"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="167"/>
         <source>Remove Rule</source>
         <translation>Eliminar Regla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="215"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="220"/>
         <source>{0} (recently updated)</source>
         <translation>{0} (recientemente actualizado)</translation>
     </message>
@@ -7140,29 +7140,29 @@
         <translation>El texto a traducir excede el límite de traducción de {0} caracteres.</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="112"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="113"/>
         <source>Invalid response received from DeepL</source>
         <translation>Respuesta no válida recibida de DeepL</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="115"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="116"/>
         <source>DeepL reported an error.
 Message: {0}</source>
         <translation>DeepL ha informado de un error.
 Mensaje: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="119"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="120"/>
         <source>DeepL call returned an unknown result</source>
         <translation>La llamada a DeepL ha retornado un resultado desconocido</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="123"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="124"/>
         <source>Unsupported language code given (source: {0}, target: {1}).</source>
         <translation>Se ha proporcionado un código de lenguaje no soportado (fuente: {0}, objetivo: {1}).</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="130"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="131"/>
         <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha encontrado una traducción&lt;/p&gt;</translation>
     </message>
@@ -7707,7 +7707,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>.desktop Wizard</source>
         <translation>Asistente .desktop</translation>
     </message>
@@ -8032,22 +8032,22 @@
         <translation>Poblar desde Proyecto</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation>.desktop Estándar FreeDesktop</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation>Metadatos .desktop KDE Plasma</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation>.desktop Ubuntu Unity QuickList</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation>Solamente permitido uno de &apos;Solamente Mostrar En&apos; o &apos;No Mostrar En&apos;.</translation>
     </message>
@@ -10074,7 +10074,7 @@
         <translation>Editar punto de interrupción...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5290"/>
+        <location filename="../QScintilla/Editor.py" line="5295"/>
         <source>Enable breakpoint</source>
         <translation>Activar punto de interrupción</translation>
     </message>
@@ -10184,197 +10184,197 @@
         <translation>Autocompletar no está disponible porque no hay origen de datos para autocompletar.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5293"/>
+        <location filename="../QScintilla/Editor.py" line="5298"/>
         <source>Disable breakpoint</source>
         <translation>Deshabilitar punto de interrupción</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Code Coverage</source>
         <translation>Cobertura de codigo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Please select a coverage file</source>
         <translation>Por favor seleccione un archivo de cobertura</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Mostrar Anotaciones de Cobertura de Código</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5723"/>
+        <location filename="../QScintilla/Editor.py" line="5728"/>
         <source>All lines have been covered.</source>
         <translation>Todas las líneas han sido cubiertas.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>There is no coverage file available.</source>
         <translation>No hay archivo de cobertura disponible.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Profile Data</source>
         <translation>Datos de profiling</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Please select a profile file</source>
         <translation>Por favor seleccione un archivo de profiling</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>Syntax Error</source>
         <translation>Error de sintaxis</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <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="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Macro Name</source>
         <translation>Nombre de macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Select a macro name:</source>
         <translation>Seleccione un nombre de macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6348"/>
+        <location filename="../QScintilla/Editor.py" line="6353"/>
         <source>Load macro file</source>
         <translation>Cargar archivo de macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Macro files (*.macro)</source>
         <translation>Archivos de Macro  (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <source>Error loading macro</source>
         <translation>Error al cargar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Save macro file</source>
         <translation>Guardar archivo de macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <source>Save macro</source>
         <translation>Guardar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <source>Error saving macro</source>
         <translation>Error al guardar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Start Macro Recording</source>
         <translation>Comenzar grabación de macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <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="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Macro Recording</source>
         <translation>Grabando macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Enter name of the macro:</source>
         <translation>Introduzca el nombre de la macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6601"/>
+        <location filename="../QScintilla/Editor.py" line="6606"/>
         <source>File changed</source>
         <translation>Archivo modificado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <source>Drop Error</source>
         <translation>Error al soltar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6926"/>
+        <location filename="../QScintilla/Editor.py" line="6931"/>
         <source>Resources</source>
         <translation>Recursos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6928"/>
+        <location filename="../QScintilla/Editor.py" line="6933"/>
         <source>Add file...</source>
         <translation>Añadir archivo...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6930"/>
-        <source>Add files...</source>
-        <translation>Añadir archivos...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6932"/>
-        <source>Add aliased file...</source>
-        <translation>Añadir archivo con un alias...</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6935"/>
+        <source>Add files...</source>
+        <translation>Añadir archivos...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6937"/>
+        <source>Add aliased file...</source>
+        <translation>Añadir archivo con un alias...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6940"/>
         <source>Add localized resource...</source>
         <translation>Añadir recursos localizados...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6939"/>
+        <location filename="../QScintilla/Editor.py" line="6944"/>
         <source>Add resource frame</source>
         <translation>Añadir ventana de recursos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6958"/>
+        <location filename="../QScintilla/Editor.py" line="6963"/>
         <source>Add file resource</source>
         <translation>Añadir archivo de recursos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6974"/>
+        <location filename="../QScintilla/Editor.py" line="6979"/>
         <source>Add file resources</source>
         <translation>Añadir archivo de recursos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <source>Add aliased file resource</source>
         <translation>Añadir archivo de recursos con un alias</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Package Diagram</source>
         <translation>Digrama de paquetes</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Include class attributes?</source>
         <translation>¿Incluir atributos de clase?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Imports Diagram</source>
         <translation>Diagrama de imports</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Include imports from external modules?</source>
         <translation>¿Incluir los imports de módulos externos?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Application Diagram</source>
         <translation>Diagrama de aplicación</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Include module names?</source>
         <translation>¿Incluir nombres de módulos?</translation>
     </message>
@@ -10444,7 +10444,7 @@
         <translation>Seleccionar el Analizador Léxico de Pygments.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7378"/>
+        <location filename="../QScintilla/Editor.py" line="7383"/>
         <source>Check spelling...</source>
         <translation>Corrección ortográfica...</translation>
     </message>
@@ -10454,12 +10454,12 @@
         <translation>Corrección ortográfica de la selección...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7386"/>
         <source>Add to dictionary</source>
         <translation>Añadir al diccionario</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7383"/>
+        <location filename="../QScintilla/Editor.py" line="7388"/>
         <source>Ignore All</source>
         <translation>Ignorar Todo</translation>
     </message>
@@ -10499,32 +10499,32 @@
         <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/Editor.py" line="6362"/>
+        <location filename="../QScintilla/Editor.py" line="6367"/>
         <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="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <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="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <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="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6770"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <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="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <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>
@@ -10554,22 +10554,22 @@
         <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="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <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="6259"/>
+        <location filename="../QScintilla/Editor.py" line="6264"/>
         <source>Warning: {0}</source>
         <translation>Advertencia: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6266"/>
+        <location filename="../QScintilla/Editor.py" line="6271"/>
         <source>Error: {0}</source>
         <translation>Error: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6597"/>
+        <location filename="../QScintilla/Editor.py" line="6602"/>
         <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>
@@ -10594,27 +10594,27 @@
         <translation>Cambio anterior</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>Sort Lines</source>
         <translation>Ordenar Líneas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <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="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>Warning</source>
         <translation>Advertencia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>No warning messages available.</source>
         <translation>No hay mensajes de advertencia disponibles.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6256"/>
+        <location filename="../QScintilla/Editor.py" line="6261"/>
         <source>Style: {0}</source>
         <translation>Estilo: {0}</translation>
     </message>
@@ -10639,7 +10639,7 @@
         <translation>Reabrir Con Codificación</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6591"/>
+        <location filename="../QScintilla/Editor.py" line="6596"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. 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 eric6. ¿Desea volver a cargarlo?&lt;/p&gt;</translation>
     </message>
@@ -10654,32 +10654,32 @@
         <translation>Completo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>Auto-Completion Provider</source>
         <translation>Proveedor de Autocompletado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation>El proveedor de lista de completado&apos;{0}&apos; ya está registrado. Se ignora la solicitud duplicada.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>Call-Tips Provider</source>
         <translation>Proveedor de Call-Tips</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation>El proveedor de call-tips&apos;{0}&apos; ya está registrado. Se ignora la solicitud duplicada.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>Register Mouse Click Handler</source>
         <translation>Registrar Manejador de Clicks de Ratón</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation>Un manejador de clicks de ratón para &quot;{0}&quot; ya está registrado por &quot;{1}&quot;. Abortando solicitud por &quot;{2}&quot;...</translation>
     </message>
@@ -46779,7 +46779,7 @@
         <translation>&lt;b&gt;Listar Packages Anticuados&lt;/b&gt;&lt;p&gt;Lista todos los packages instalados con status de anticuado, junto a sus números de versión.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="886"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="892"/>
         <source>Install Packages</source>
         <translation>Instalar Packages</translation>
     </message>
@@ -46814,7 +46814,7 @@
         <translation>&lt;b&gt;Instalar Requisitos&lt;/b&gt;&lt;p&gt;Instala packages según un archivo de requisitos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="859"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="865"/>
         <source>Upgrade Packages</source>
         <translation>Actualizar Packages</translation>
     </message>
@@ -46834,7 +46834,7 @@
         <translation>&lt;b&gt;Actualizar Packages&lt;/b&gt;&lt;p&gt;Actualiza packages según input del usuario.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Uninstall Packages</source>
         <translation>Desinstalar Packages</translation>
     </message>
@@ -46939,17 +46939,17 @@
         <translation>Seleccionar el Ejecutable pip a utilizar:</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="907"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="913"/>
         <source>Install Packages from Requirements</source>
         <translation>Instalar Packages a partir de Requisitos</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Do you really want to uninstall these packages?</source>
         <translation>¿Realmente desea desinstalar estos packages?</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="982"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="988"/>
         <source>Uninstall Packages from Requirements</source>
         <translation>Desinstalar Packages a partir de Requisitos</translation>
     </message>
@@ -47069,7 +47069,7 @@
         <translation>&lt;b&gt;Instalar Pip&lt;/b&gt;&lt;p&gt;Instala el package de pip.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="746"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="752"/>
         <source>Select Python Executable</source>
         <translation>Seleccionar Ejecutable de Python</translation>
     </message>
@@ -47089,17 +47089,17 @@
         <translation>Actualizar PIP a nueva versión</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="729"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="735"/>
         <source>&lt;Default&gt;</source>
         <translation>&lt;Por defecto&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Upgrade pip</source>
         <translation>Actualizar pip a nueva versión</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Select pip Executable:</source>
         <translation>Seleccionar Ejecutable de pip:</translation>
     </message>
@@ -47119,12 +47119,12 @@
         <translation>&lt;b&gt;Reparar Pip&lt;/b&gt;&lt;p&gt;Repara el package pip mediante reinstalación.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="757"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="763"/>
         <source>Repair PIP</source>
         <translation>Reparar PIP</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="821"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="827"/>
         <source>You are trying to upgrade PyQt packages. This will not work for the current instance of Python ({0}). Do you want to continue?</source>
         <translation>Está intentando actualizar packages PyQt. Esto no va a funcionar con la instancia actual de Python ({0}). ¿Continuar?</translation>
     </message>
@@ -60651,7 +60651,7 @@
         <translation>No.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <source>Drop Error</source>
         <translation>Error al soltar</translation>
     </message>
@@ -60713,14 +60713,14 @@
         <translation>StdErr: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1638"/>
+        <location filename="../QScintilla/Shell.py" line="1678"/>
         <source>Shell language &quot;{0}&quot; not supported.
 </source>
         <translation>Lenguaje de Shell  &quot;{0}&quot; no soportado.
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <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>
@@ -78012,8 +78012,8 @@
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3493"/>
-        <source>Toggle &amp;all folds</source>
-        <translation>Recoger/Desplegar los &amp;anidamientos</translation>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished">Recoger/Desplegar los &amp;anidamientos</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3499"/>
@@ -78051,438 +78051,438 @@
         <translation>&lt;b&gt;Recoger/desplegar anidamiento actual&lt;/b&gt;&lt;p&gt;Recoge/despliega el anidamiento de la línea actual en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3561"/>
         <source>Remove all highlights</source>
         <translation>Quitar todos los resaltes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eliminar todos los resaltes de texto&lt;/b&gt;&lt;p&gt;Elimina todos los resaltes de texto en todos los editories.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
+        <location filename="../ViewManager/ViewManager.py" line="3609"/>
         <source>Split view</source>
         <translation>Dividir vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
-        <source>&amp;Split view</source>
-        <translation>&amp;Dividir vista</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Add a split to the view</source>
-        <translation>Agregar una división a la vista</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Dividir vista&lt;/b&gt;&lt;p&gt;Añade una nueva división a la vista.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3609"/>
+        <source>&amp;Split view</source>
+        <translation>&amp;Dividir vista</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Add a split to the view</source>
+        <translation>Agregar una división a la vista</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Dividir vista&lt;/b&gt;&lt;p&gt;Añade una nueva división a la vista.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3624"/>
         <source>Arrange horizontally</source>
         <translation>Organizar horizontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange &amp;horizontally</source>
-        <translation>Or&amp;ganizar horizontalmente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3613"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Organizar las vistas divididas horizontalmente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3615"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Organizar horizontalmente&lt;/b&gt;&lt;p&gt;Organiza las vistas divididas horizontalmente.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3624"/>
-        <source>Remove split</source>
-        <translation>Quitar división</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3624"/>
-        <source>&amp;Remove split</source>
-        <translation>&amp;Quitar división</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3629"/>
-        <source>Remove the current split</source>
-        <translation>Eliminar división actual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
-        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Eliminar división&lt;/b&gt;&lt;p&gt;Elimina la división actual.&lt;/p&gt;</translation>
+        <source>Arrange &amp;horizontally</source>
+        <translation>Or&amp;ganizar horizontalmente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3628"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Organizar las vistas divididas horizontalmente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3630"/>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Organizar horizontalmente&lt;/b&gt;&lt;p&gt;Organiza las vistas divididas horizontalmente.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>Next split</source>
-        <translation>Próxima división</translation>
+        <source>Remove split</source>
+        <translation>Quitar división</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>&amp;Next split</source>
-        <translation>Pró&amp;xima división</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>Ctrl+Alt+N</source>
-        <comment>View|Next split</comment>
-        <translation>Ctrl+Alt+N</translation>
+        <source>&amp;Remove split</source>
+        <translation>&amp;Quitar división</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3644"/>
+        <source>Remove the current split</source>
+        <translation>Eliminar división actual</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Eliminar división&lt;/b&gt;&lt;p&gt;Elimina la división actual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>Next split</source>
+        <translation>Próxima división</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>&amp;Next split</source>
+        <translation>Pró&amp;xima división</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>Ctrl+Alt+N</source>
+        <comment>View|Next split</comment>
+        <translation>Ctrl+Alt+N</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3661"/>
         <source>Move to the next split</source>
         <translation>Mover a la siguiente división</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <location filename="../ViewManager/ViewManager.py" line="3663"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Siguiente división&lt;/b&gt;&lt;p&gt;Mover a la siguiente división.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Previous split</source>
         <translation>División anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>&amp;Previous split</source>
         <translation>Divi&amp;sión anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3662"/>
+        <location filename="../ViewManager/ViewManager.py" line="3677"/>
         <source>Move to the previous split</source>
         <translation>Mover a la división anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3664"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;División anterior&lt;/b&gt;&lt;p&gt;Mover a la división anterior.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3708"/>
+        <location filename="../ViewManager/ViewManager.py" line="3723"/>
         <source>&amp;View</source>
         <translation>&amp;Ver</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <source>View</source>
         <translation>Ver</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3777"/>
+        <location filename="../ViewManager/ViewManager.py" line="3792"/>
         <source>Start Macro Recording</source>
         <translation>Comenzar grabación de macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3771"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>S&amp;tart Macro Recording</source>
         <translation>Comenzar &amp;grabación de macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Comenzar Grabación de Macro&lt;/b&gt;&lt;p&gt;Comenzar grabación de comandos de editor como una nueva macro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
+        <location filename="../ViewManager/ViewManager.py" line="3806"/>
         <source>Stop Macro Recording</source>
         <translation>Detener Grabación de Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3787"/>
+        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>Sto&amp;p Macro Recording</source>
         <translation>Detene&amp;r grabación de macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Detener Grabación de Macro&lt;/b&gt;&lt;p&gt;Detener grabación de comandos de editor a una nueva macro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <location filename="../ViewManager/ViewManager.py" line="3820"/>
         <source>Run Macro</source>
         <translation>Ejecutar macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3801"/>
+        <location filename="../ViewManager/ViewManager.py" line="3816"/>
         <source>&amp;Run Macro</source>
         <translation>Ejecuta&amp;r macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3807"/>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ejecutar Macro&lt;/b&gt;&lt;p&gt;Ejecutar una macro de editor grabada anteriormente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3819"/>
+        <location filename="../ViewManager/ViewManager.py" line="3834"/>
         <source>Delete Macro</source>
         <translation>Borrar macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <location filename="../ViewManager/ViewManager.py" line="3830"/>
         <source>&amp;Delete Macro</source>
         <translation>&amp;Borrar macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3821"/>
+        <location filename="../ViewManager/ViewManager.py" line="3836"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eliminar Macro&lt;/b&gt;&lt;p&gt;Eliminar una macro de editor grabada anteriormente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3848"/>
         <source>Load Macro</source>
         <translation>Cargar macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3829"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Load Macro</source>
         <translation>&amp;Cargar macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3850"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cargar Macro&lt;/b&gt;&lt;p&gt;Cargar desde archivo una macro de editor grabada anteriormente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3847"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>Save Macro</source>
         <translation>Guardar macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3843"/>
+        <location filename="../ViewManager/ViewManager.py" line="3858"/>
         <source>&amp;Save Macro</source>
         <translation>&amp;Guardar macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3849"/>
+        <location filename="../ViewManager/ViewManager.py" line="3864"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar Macro&lt;/b&gt;&lt;p&gt;Guarda en un archivo una macro de editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3865"/>
+        <location filename="../ViewManager/ViewManager.py" line="3880"/>
         <source>&amp;Macros</source>
         <translation>&amp;Macros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3891"/>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
         <source>Toggle Bookmark</source>
         <translation>Alternar Marcador</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>Al&amp;ternar marcador</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3893"/>
+        <location filename="../ViewManager/ViewManager.py" line="3908"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alternar Marcador&lt;/b&gt;&lt;p&gt;Alterna un marcador en la línea actual del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
+        <location filename="../ViewManager/ViewManager.py" line="3925"/>
         <source>Next Bookmark</source>
         <translation>Siguiente marcador</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>&amp;Next Bookmark</source>
         <translation>Siguie&amp;nte marcador</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3912"/>
+        <location filename="../ViewManager/ViewManager.py" line="3927"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Siguiente Marcador&lt;/b&gt;&lt;p&gt;Avanzar al siguiente marcador del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3928"/>
+        <location filename="../ViewManager/ViewManager.py" line="3943"/>
         <source>Previous Bookmark</source>
         <translation>Marcador anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>&amp;Previous Bookmark</source>
         <translation>Marcador an&amp;terior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Anterior Marcador&lt;/b&gt;&lt;p&gt;Retroceder al anterior marcador del editor actual.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3945"/>
+        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Anterior Marcador&lt;/b&gt;&lt;p&gt;Retroceder al anterior marcador del editor actual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
         <source>Clear Bookmarks</source>
         <translation>Borrar todos los marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>Borrar todos los mar&amp;cadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3947"/>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Borrar todos los marcadores&lt;/b&gt;&lt;p&gt;Borra todos los marcadores de todos los editores.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3961"/>
-        <source>Goto Syntax Error</source>
-        <translation>Ir al error de sintaxis</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3955"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>&amp;Ir al error de sintaxis</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3963"/>
-        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Ir al Error de Sintaxis&lt;/b&gt;&lt;p&gt;Ir al siguiente error de sintaxis del editor actual.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Borrar Errores de Sintaxis</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3971"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>Borrar Errores de &amp;Sintaxis</translation>
+        <source>Goto Syntax Error</source>
+        <translation>Ir al error de sintaxis</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3970"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>&amp;Ir al error de sintaxis</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
+        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Ir al Error de Sintaxis&lt;/b&gt;&lt;p&gt;Ir al siguiente error de sintaxis del editor actual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Borrar Errores de Sintaxis</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>Borrar Errores de &amp;Sintaxis</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3993"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Borrar Errores de Sintaxis&lt;/b&gt;&lt;p&gt;Borra los errores de sintaxis de todos los editores.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4046"/>
+        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>Next uncovered line</source>
         <translation>Siguiente línea sin cobertura</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4040"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next uncovered line</source>
         <translation>Siguie&amp;nte línea sin cobertura</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4048"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Siguiente línea sin cobertura&lt;/b&gt;&lt;p&gt;Ir a la siguiente línea del editor actual marcada como sin cobertura.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4065"/>
+        <location filename="../ViewManager/ViewManager.py" line="4080"/>
         <source>Previous uncovered line</source>
         <translation>Anterior línea sin cobertura</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
         <source>&amp;Previous uncovered line</source>
         <translation>Anteri&amp;or línea sin cobertura</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4082"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anterior línea sin cobertura&lt;/b&gt;&lt;p&gt;Ir a la anterior línea del editor actual marcada como sin cobertura.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4083"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Next Task</source>
         <translation>Siguiente Tarea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4077"/>
+        <location filename="../ViewManager/ViewManager.py" line="4092"/>
         <source>&amp;Next Task</source>
         <translation>Siguie&amp;nte Tarea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4085"/>
-        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Siguiente Tarea&lt;/b&gt;&lt;p&gt;Ir a la siguiente línea en el editor actual que tiene una tarea.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Siguiente Tarea&lt;/b&gt;&lt;p&gt;Ir a la siguiente línea en el editor actual que tiene una tarea.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4115"/>
         <source>Previous Task</source>
         <translation>Tarea anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4093"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Previous Task</source>
         <translation>Tarea anteri&amp;or</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
+        <location filename="../ViewManager/ViewManager.py" line="4117"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tarea Anterior&lt;/b&gt;&lt;p&gt;Ir a la línea anterior en el editor actual que tiene una tarea.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4156"/>
+        <location filename="../ViewManager/ViewManager.py" line="4171"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4202"/>
+        <location filename="../ViewManager/ViewManager.py" line="4217"/>
         <source>Bookmarks</source>
         <translation>Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4354"/>
+        <location filename="../ViewManager/ViewManager.py" line="4369"/>
         <source>Open files</source>
         <translation>Abrir Archivos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>File Modified</source>
         <translation>Archivo Modificado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5155"/>
+        <location filename="../ViewManager/ViewManager.py" line="5170"/>
         <source>&amp;Clear</source>
         <translation>&amp;Limpiar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5149"/>
+        <location filename="../ViewManager/ViewManager.py" line="5164"/>
         <source>&amp;Add</source>
         <translation>&amp;Agregar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5152"/>
+        <location filename="../ViewManager/ViewManager.py" line="5167"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Editar...</translation>
     </message>
@@ -78624,83 +78624,83 @@
         <translation>&lt;b&gt;Reemplazar en Archivos&lt;/b&gt;&lt;p&gt;Buscar un texto en los archivos de un árbol de directorios o en el proyecto y reemplazarlo. Se muestra un diálogo para introducir el texto de búsqueda, el texto de reemplazo y opciones para búsqueda y visualización del resultado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4244"/>
+        <location filename="../ViewManager/ViewManager.py" line="4259"/>
         <source>Perform spell check of current editor</source>
         <translation>Lleva a cabo la corrección ortográfica del editor actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>Automatic spell checking</source>
         <translation>Corrección ortográfica automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Corrección ortográfica &amp;automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4262"/>
+        <location filename="../ViewManager/ViewManager.py" line="4277"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation>(Des-)Activar la corrección ortográfica automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Corrección ortografica automática&lt;/b&gt;&lt;p&gt;Activar o desactivar la corrección ortográfica automática en todos los editores.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4346"/>
         <source>Spelling</source>
         <translation>Corrección ortográfica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; tiene cambios sin guardar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4730"/>
+        <location filename="../ViewManager/ViewManager.py" line="4745"/>
         <source>Line: {0:5}</source>
         <translation>Línea: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4737"/>
+        <location filename="../ViewManager/ViewManager.py" line="4752"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3993"/>
+        <location filename="../ViewManager/ViewManager.py" line="4008"/>
         <source>Next warning message</source>
         <translation>Siguiente mensaje de advertencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3987"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&amp;Next warning message</source>
         <translation>Siguie&amp;nte mensaje de advertencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <source>Previous warning message</source>
         <translation>Mensaje de advertencia anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4004"/>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Mensaje de advertencia anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4030"/>
+        <location filename="../ViewManager/ViewManager.py" line="4045"/>
         <source>Clear Warning Messages</source>
         <translation>Limpiar Mensajes de Advertencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4023"/>
+        <location filename="../ViewManager/ViewManager.py" line="4038"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>&amp;Limpiar Mensajes de Advertencia</translation>
     </message>
@@ -78784,17 +78784,17 @@
         <translation>&lt;b&gt;Ir al Siguiente Método o Clase&lt;/b&gt;&lt;p&gt;Va a la línea de la siguiente definición de método o clase y resalta el nombre.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <location filename="../ViewManager/ViewManager.py" line="3687"/>
         <source>Preview</source>
         <translation>Vista Previa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3677"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>Preview the current file in the web browser</source>
         <translation>Vista previa del archivo actual en el navegador web</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vista Previa&lt;/b&gt;&lt;p&gt;Abre el navegador web con una vista previa del archivo actual.&lt;/p&gt;</translation>
     </message>
@@ -79208,97 +79208,97 @@
         <translation>Guardar a&amp;ll</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4117"/>
+        <location filename="../ViewManager/ViewManager.py" line="4132"/>
         <source>Next Change</source>
         <translation>Siguiente Cambio</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4111"/>
+        <location filename="../ViewManager/ViewManager.py" line="4126"/>
         <source>&amp;Next Change</source>
         <translation>Siguie&amp;nte Cambio</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4119"/>
+        <location filename="../ViewManager/ViewManager.py" line="4134"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Siguiente Cambio&lt;/b&gt;&lt;p&gt;Ir a la siguiente línea del editor actual que tiene un marcador de cambios.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4150"/>
         <source>Previous Change</source>
         <translation>Cambio Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4128"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&amp;Previous Change</source>
         <translation>Cambio &amp;Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4137"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cambio Anterior&lt;/b&gt;&lt;p&gt;Ir a la anterior línea del editor actual que tiene un marcador de cambios.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check spelling</source>
         <translation>Corrección ortográfica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check &amp;spelling...</source>
         <translation>Corrección &amp;ortográfica...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4261"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Corrección ortográfica&lt;/b&gt;&lt;p&gt;Lleva a cabo la corrección ortográfica del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4295"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Edit Dictionary</source>
         <translation>Editar Diccionario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4297"/>
+        <location filename="../ViewManager/ViewManager.py" line="4312"/>
         <source>Project Word List</source>
         <translation>Lista de Palabras del Proyecto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4300"/>
+        <location filename="../ViewManager/ViewManager.py" line="4315"/>
         <source>Project Exception List</source>
         <translation>Lista de Excepciones del Proyecto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4305"/>
+        <location filename="../ViewManager/ViewManager.py" line="4320"/>
         <source>User Word List</source>
         <translation>Lista de Palabras del Usuario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4323"/>
         <source>User Exception List</source>
         <translation>Lista de Excepciones del Usuario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>Edit Spelling Dictionary</source>
         <translation>Editar Diccionario Ortográfico</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6356"/>
+        <location filename="../ViewManager/ViewManager.py" line="6379"/>
         <source>Editing {0}</source>
         <translation>Editando {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6341"/>
+        <location filename="../ViewManager/ViewManager.py" line="6364"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de diccionario ortográfico &lt;b&gt;{0}&lt;/b&gt; no se puede leer.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6368"/>
+        <location filename="../ViewManager/ViewManager.py" line="6391"/>
         <source>&lt;p&gt;The spelling dictionary 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 de diccionario ortográfico &lt;b&gt;{0}&lt;/b&gt; no se puede escribir.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation>El diccionario ortográfico se ha guardado con éxito.</translation>
     </message>
@@ -79418,62 +79418,62 @@
         <translation>&lt;b&gt;Ordenar&lt;/b&gt;&lt;p&gt;Ordenar las líneas contenidas en una selección rectangular basada en la selección, ignorando espacios en blanco delante y detrás.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4757"/>
+        <location filename="../ViewManager/ViewManager.py" line="4772"/>
         <source>Language: {0}</source>
         <translation>Lenguaje: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4765"/>
+        <location filename="../ViewManager/ViewManager.py" line="4780"/>
         <source>EOL Mode: {0}</source>
         <translation>Modo de EOL: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New Document View</source>
         <translation>Nueva Vista de Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New &amp;Document View</source>
         <translation>Nueva Vista de &amp;Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3561"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Open a new view of the current document</source>
         <translation>Abrir una nueva vista del documento actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nueva Vista de Documento&lt;/b&gt;&lt;p&gt;Abre una nueva vista del documento actual. Ambas vistas muestran el mismo documento. Sin embargo, los cursores pueden estar ubicados de manera independiente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3573"/>
+        <location filename="../ViewManager/ViewManager.py" line="3588"/>
         <source>New Document View (with new split)</source>
         <translation>Nueva Vista de Documento (con nueva división)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3580"/>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
         <source>Open a new view of the current document in a new split</source>
         <translation>Abrir una nueva vista del documento actual en una nueva división</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3598"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nueva Vista de Documento&lt;/b&gt;&lt;p&gt;Abre una nueva vista del documento actual en una nueva división. Ambas vistas muestran el mismo documento. Sin embargo, los cursores pueden estar ubicados de manera independiente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3995"/>
+        <location filename="../ViewManager/ViewManager.py" line="4010"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Siguiente mensaje de advertencia&lt;/b&gt;&lt;p&gt;Ir a la siguiente línea en el editor actual que contenga una advertencia de pyflakes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
+        <location filename="../ViewManager/ViewManager.py" line="4029"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anterior mensaje de advertencia&lt;/b&gt;&lt;p&gt;Ir a la anterior línea en el editor actual que contenga una advertencia de pyflakes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4032"/>
+        <location filename="../ViewManager/ViewManager.py" line="4047"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpiar Mensajes de Advertencia&lt;/b&gt;&lt;p&gt;Limpiar mensajes de advertencia de pyflakes en todos los editores.&lt;/p&gt;</translation>
     </message>
@@ -79682,6 +79682,21 @@
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Info del Código&lt;/b&gt;&lt;p&gt;Mostrar información del código basado en la posición del cursor.&lt;/p&gt;</translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3540"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/i18n/eric6_fr.ts	Fri Dec 22 16:07:49 2017 +0100
+++ b/i18n/eric6_fr.ts	Fri Dec 22 16:21:40 2017 +0100
@@ -107,22 +107,22 @@
         <translation>Actions</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Learn more about writing rules...</source>
         <translation>Savoir plus sur comment écrire des règles ...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="153"/>
         <source>Update Subscription</source>
         <translation>Actualiser subscription</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Browse Subscriptions...</source>
         <translation>Parcourir subscriptions...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="230"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="236"/>
         <source>Remove Subscription</source>
         <translation>Effacer subscription</translation>
     </message>
@@ -137,42 +137,42 @@
         <translation>Entrer la frequence d&apos;actualisation (1 à 14 jours)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="48"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="50"/>
         <source>Search...</source>
         <translation>Rechercher...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="130"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
         <source>Add Rule</source>
         <translation>Ajouter règle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="132"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="137"/>
         <source>Remove Rule</source>
         <translation>Effacer règle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
         <source>Disable Subscription</source>
         <translation>Desactiver subscription</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="145"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="150"/>
         <source>Enable Subscription</source>
         <translation>Activer subscription</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="151"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
         <source>Update All Subscriptions</source>
         <translation>Actualiser toutes les subscriptions</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="220"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="226"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation>&lt;p&gt;Voulez vous vraiment effacer la subscription &lt;b&gt;{0}&lt;/b&gt;et toutes les subscriptions qui en ont besoin?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="227"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Voulez vous vraiment effacer la subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
@@ -220,7 +220,7 @@
         <translation>&amp;Supprimer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="37"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="38"/>
         <source>Enter host to be added...</source>
         <translation>Rentrer hôte à ajouter ...</translation>
     </message>
@@ -228,17 +228,17 @@
 <context>
     <name>AdBlockIcon</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="38"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="39"/>
         <source>AdBlock lets you block unwanted content on web pages.</source>
         <translation>AdBlock permet le blockage de contenu non voulu sur des pages internet.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="72"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="75"/>
         <source>Disable AdBlock</source>
         <translation>Desactiver AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="77"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="80"/>
         <source>Enable AdBlock</source>
         <translation>Activer AdBlock</translation>
     </message>
@@ -258,27 +258,27 @@
         <translation>Aucun contenu bloqué</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="108"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="112"/>
         <source>AdBlock</source>
         <translation>AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="84"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="87"/>
         <source>Remove AdBlock Exception</source>
         <translation>Supprimer exception AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="89"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="92"/>
         <source>Add AdBlock Exception</source>
         <translation>Ajouter exception AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="93"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="96"/>
         <source>AdBlock Exceptions...</source>
         <translation>Exceptions AdBlock ...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="97"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="100"/>
         <source>AdBlock Configuration...</source>
         <translation>Configuration AdBlock ...</translation>
     </message>
@@ -286,17 +286,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="208"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="221"/>
         <source>Custom Rules</source>
         <translation>Règles personnalisées</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>Subscribe?</source>
         <translation type="unfinished">Souscrire?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Souscrire à cette subscription AdBlock?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -304,22 +304,22 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>Load subscription rules</source>
         <translation>Charger règles de subscriptions</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>Downloading subscription rules</source>
         <translation>En train de telecharger les règles de subscriptions</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="405"/>
         <source>Got empty subscription rules.</source>
         <translation>Reçu des règles de subscriptions vides.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Saving subscription rules</source>
         <translation>En train d&apos;enregistrer les règles de subscription</translation>
     </message>
@@ -329,7 +329,7 @@
         <translation>Impossible d&apos;ouvrir en lecture le fichier AdBlock &apos;{0}&apos;.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="387"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="392"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt; Les règles de subscription n&apos;ont pas pu être téléchargées. &lt;/p&gt;&lt;p&gt;Erreur: {0}&lt;/p&gt;</translation>
     </message>
@@ -339,22 +339,22 @@
         <translation>Impossible d&apos;ouvrir en écriture le fichier AdBlock &apos;{0}&apos;.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation>Le fichier AdBlock &apos;{0}&apos; ne commence pas par [Adblock.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation>&lt;p&gt; Subscription AdBlock &lt;b&gt;{0}&lt;/b&gt; a un checksum faux.&lt;br/&gt;Trouvé: {1}&lt;br/&gt;Calculé: {2}&lt;br/&gt;L&apos;utiliser quand même?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="280"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="286"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -362,27 +362,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Add Custom Rule</source>
         <translation>Ajouter règle personnalisée</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Write your rule here:</source>
         <translation>Ecrivez votre règle ici:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="161"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="165"/>
         <source>Add Rule</source>
         <translation>Ajouter règle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="163"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="167"/>
         <source>Remove Rule</source>
         <translation>Effacer règle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="215"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="220"/>
         <source>{0} (recently updated)</source>
         <translation>{0} (actualisé récemment)</translation>
     </message>
@@ -7407,28 +7407,28 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="112"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="113"/>
         <source>Invalid response received from DeepL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="115"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="116"/>
         <source>DeepL reported an error.
 Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="119"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="120"/>
         <source>DeepL call returned an unknown result</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="123"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="124"/>
         <source>Unsupported language code given (source: {0}, target: {1}).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="130"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="131"/>
         <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7980,7 +7980,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>.desktop Wizard</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8315,22 +8315,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10296,7 +10296,7 @@
         <translation>Éditer le point d&apos;arrêt...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5290"/>
+        <location filename="../QScintilla/Editor.py" line="5295"/>
         <source>Enable breakpoint</source>
         <translation>Activer le point d&apos;arrêt</translation>
     </message>
@@ -10381,87 +10381,87 @@
         <translation>L&apos;autocompletion n&apos;est pas disponible car aucune source d&apos;autocomplétion n&apos;est définie.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5293"/>
+        <location filename="../QScintilla/Editor.py" line="5298"/>
         <source>Disable breakpoint</source>
         <translation>Désactiver le point d&apos;arrêt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Code Coverage</source>
         <translation>Code Coverage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Please select a coverage file</source>
         <translation>Sélectionner un fichier coverage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Profile Data</source>
         <translation>Profiler de données</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Please select a profile file</source>
         <translation>Sélectionner un fichier profile</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Macro Name</source>
         <translation>Nom de la macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Select a macro name:</source>
         <translation>Sélectionner un nom de macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Macro files (*.macro)</source>
         <translation>Fichier Macro (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6348"/>
+        <location filename="../QScintilla/Editor.py" line="6353"/>
         <source>Load macro file</source>
         <translation>Charger un fichier macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <source>Error loading macro</source>
         <translation>Erreur lors du chargement de la macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Save macro file</source>
         <translation>Enregistrer le fichier macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <source>Save macro</source>
         <translation>Enregistrer la macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <source>Error saving macro</source>
         <translation>Erreur lors de l&apos;enregistrement de la macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Start Macro Recording</source>
         <translation>Démarrer l&apos;enregistrement de la macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Macro Recording</source>
         <translation>Enregistrement de macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Enter name of the macro:</source>
         <translation>Entrer le nom de la macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6601"/>
+        <location filename="../QScintilla/Editor.py" line="6606"/>
         <source>File changed</source>
         <translation>Fichier modifié</translation>
     </message>
@@ -10481,7 +10481,7 @@
         <translation>Supprimer les flags d&apos;erreurs de syntaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <source>Drop Error</source>
         <translation>Erreur de suppression</translation>
     </message>
@@ -10491,12 +10491,12 @@
         <translation>Afficher le message d&apos;erreur de syntaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>Syntax Error</source>
         <translation>Erreur de syntaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>No syntax error message available.</source>
         <translation>Aucun message d&apos;erreur de syntaxe..</translation>
     </message>
@@ -10526,17 +10526,17 @@
         <translation>Ligne non executée précédente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Afficher les annotations de Code Coverage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5723"/>
+        <location filename="../QScintilla/Editor.py" line="5728"/>
         <source>All lines have been covered.</source>
         <translation>Toutes les lignes ont été executées.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>There is no coverage file available.</source>
         <translation>Impossible de trouver le fichier de coverage.</translation>
     </message>
@@ -10571,72 +10571,72 @@
         <translation>Pas de langage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6926"/>
+        <location filename="../QScintilla/Editor.py" line="6931"/>
         <source>Resources</source>
         <translation>Ressources</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6928"/>
+        <location filename="../QScintilla/Editor.py" line="6933"/>
         <source>Add file...</source>
         <translation>Ajouter un fichier...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6930"/>
-        <source>Add files...</source>
-        <translation>Ajouter des fichiers...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6932"/>
-        <source>Add aliased file...</source>
-        <translation>Ajouter un fichier alias...</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6935"/>
+        <source>Add files...</source>
+        <translation>Ajouter des fichiers...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6937"/>
+        <source>Add aliased file...</source>
+        <translation>Ajouter un fichier alias...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6940"/>
         <source>Add localized resource...</source>
         <translation>Ajouter une ressource localisée...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6958"/>
+        <location filename="../QScintilla/Editor.py" line="6963"/>
         <source>Add file resource</source>
         <translation>Ajoute un fichier ressource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6974"/>
+        <location filename="../QScintilla/Editor.py" line="6979"/>
         <source>Add file resources</source>
         <translation>Ajoute des fichiers ressources</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <source>Add aliased file resource</source>
         <translation>Ajoute un alias de fichier ressource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Package Diagram</source>
         <translation>Diagramme de package</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Include class attributes?</source>
         <translation>Inclure les attributs de classes ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Application Diagram</source>
         <translation>Diagramme de l&apos;application</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Include module names?</source>
         <translation>Inclure les noms de modules ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6939"/>
+        <location filename="../QScintilla/Editor.py" line="6944"/>
         <source>Add resource frame</source>
         <translation>Ajouter un cadre ressource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>L&apos;enregistrement de macro est déjà actif. En démarrer une nouvelle ?</translation>
     </message>
@@ -10686,12 +10686,12 @@
         <translation>Aucun format d&apos;exportation indiqué. Abandon...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Imports Diagram</source>
         <translation>Diagramme des modules</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Include imports from external modules?</source>
         <translation>Inclure l&apos;importation de modules externes?</translation>
     </message>
@@ -10766,7 +10766,7 @@
         <translation>Sélectionne l&apos;analyseur Pygments à appliquer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7378"/>
+        <location filename="../QScintilla/Editor.py" line="7383"/>
         <source>Check spelling...</source>
         <translation>Correction orthographique...</translation>
     </message>
@@ -10776,12 +10776,12 @@
         <translation>Correction orthographique de la sélection...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7386"/>
         <source>Add to dictionary</source>
         <translation>Ajouter au dictionnaire</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7383"/>
+        <location filename="../QScintilla/Editor.py" line="7388"/>
         <source>Ignore All</source>
         <translation>Tout ignorer</translation>
     </message>
@@ -10821,32 +10821,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6362"/>
+        <location filename="../QScintilla/Editor.py" line="6367"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6770"/>
         <source>{0} (ro)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10876,22 +10876,22 @@
         <translation type="unfinished">&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6259"/>
+        <location filename="../QScintilla/Editor.py" line="6264"/>
         <source>Warning: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6266"/>
+        <location filename="../QScintilla/Editor.py" line="6271"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6597"/>
+        <location filename="../QScintilla/Editor.py" line="6602"/>
         <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10916,27 +10916,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>Warning</source>
         <translation type="unfinished">Warning</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6256"/>
+        <location filename="../QScintilla/Editor.py" line="6261"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10961,7 +10961,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6591"/>
+        <location filename="../QScintilla/Editor.py" line="6596"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10976,32 +10976,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47463,7 +47463,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="886"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="892"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47548,7 +47548,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="859"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="865"/>
         <source>Upgrade Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47568,7 +47568,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Uninstall Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47753,7 +47753,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="746"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="752"/>
         <source>Select Python Executable</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47768,17 +47768,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="729"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="735"/>
         <source>&lt;Default&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Upgrade pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Select pip Executable:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47788,27 +47788,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="757"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="763"/>
         <source>Repair PIP</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="821"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="827"/>
         <source>You are trying to upgrade PyQt packages. This will not work for the current instance of Python ({0}). Do you want to continue?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="907"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="913"/>
         <source>Install Packages from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Do you really want to uninstall these packages?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="982"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="988"/>
         <source>Uninstall Packages from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61380,7 +61380,7 @@
         <translation>Effacer et réinitialiser</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <source>Drop Error</source>
         <translation>Erreur de suppression</translation>
     </message>
@@ -61461,13 +61461,13 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1638"/>
+        <location filename="../QScintilla/Shell.py" line="1678"/>
         <source>Shell language &quot;{0}&quot; not supported.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78676,8 +78676,8 @@
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3493"/>
-        <source>Toggle &amp;all folds</source>
-        <translation>Contracte/Déploie &amp;tout le code</translation>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished">Contracte/Déploie &amp;tout le code</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3499"/>
@@ -78700,247 +78700,247 @@
         <translation>&lt;b&gt;Contracte/Déploie le paragraphe courant&lt;/b&gt;&lt;p&gt;Applique la contraction de code au paragraphe courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3561"/>
         <source>Remove all highlights</source>
         <translation>Suppression de tous les surlignages</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suppression de tous les surlignages&lt;/b&gt;&lt;p&gt;Supprime tous les surlignage présents dans la page.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
+        <location filename="../ViewManager/ViewManager.py" line="3609"/>
         <source>Split view</source>
         <translation>Diviser la fenêtre</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
-        <source>&amp;Split view</source>
-        <translation>&amp;Diviser la fenêtre</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Add a split to the view</source>
-        <translation>Ajoute une division de fenêtre</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Diviser la fenêtre&lt;/b&gt;&lt;p&gt;Ajoute un division supplémentaire à la fenêtre courante.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange horizontally</source>
-        <translation>Division horizontale/verticale</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange &amp;horizontally</source>
-        <translation>Division &amp;horizontale/verticale</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3613"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Bascule la division horizontalement ou verticalement</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3615"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Division horizontale/verticale&lt;/b&gt;&lt;p&gt;Bascule la division horizontalement ou verticalement, selon.&lt;/p&gt;</translation>
+        <source>&amp;Split view</source>
+        <translation>&amp;Diviser la fenêtre</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Add a split to the view</source>
+        <translation>Ajoute une division de fenêtre</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Diviser la fenêtre&lt;/b&gt;&lt;p&gt;Ajoute un division supplémentaire à la fenêtre courante.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3624"/>
-        <source>Remove split</source>
-        <translation>Suppression du découpage</translation>
+        <source>Arrange horizontally</source>
+        <translation>Division horizontale/verticale</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3624"/>
+        <source>Arrange &amp;horizontally</source>
+        <translation>Division &amp;horizontale/verticale</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3628"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Bascule la division horizontalement ou verticalement</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3630"/>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Division horizontale/verticale&lt;/b&gt;&lt;p&gt;Bascule la division horizontalement ou verticalement, selon.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3639"/>
+        <source>Remove split</source>
+        <translation>Suppression du découpage</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3639"/>
         <source>&amp;Remove split</source>
         <translation>&amp;Suppression du découpage</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3629"/>
+        <location filename="../ViewManager/ViewManager.py" line="3644"/>
         <source>Remove the current split</source>
         <translation>Supprime le découpage de fenêtre courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <location filename="../ViewManager/ViewManager.py" line="3646"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suppression du découpage&lt;/b&gt;&lt;p&gt;Supprime le découpage de fenêtre courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3777"/>
+        <location filename="../ViewManager/ViewManager.py" line="3792"/>
         <source>Start Macro Recording</source>
         <translation>Démarrer l&apos;enregistrement de la macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3771"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>S&amp;tart Macro Recording</source>
         <translation>&amp;Démarrer l&apos;enregistrement de la macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Démarrer l&apos;enregistrement de la macro&lt;/b&gt;&lt;p&gt;Démarre l&apos;enregistrement des commandes de l&apos;éditeur dans une nouvelle macro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
+        <location filename="../ViewManager/ViewManager.py" line="3806"/>
         <source>Stop Macro Recording</source>
         <translation>Arrêter l&apos;enregistrement de la macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3787"/>
+        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>Sto&amp;p Macro Recording</source>
         <translation>&amp;Arrêter l&apos;enregistrement de la macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Arrêter l&apos;enregistrement de la macro&lt;/b&gt;&lt;p&gt;Arrête l&apos;enregistrement des commandes de l&apos;éditeur dans la nouvelle macro..&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <location filename="../ViewManager/ViewManager.py" line="3820"/>
         <source>Run Macro</source>
         <translation>Lancer une macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3801"/>
+        <location filename="../ViewManager/ViewManager.py" line="3816"/>
         <source>&amp;Run Macro</source>
         <translation>&amp;Lancer une macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3807"/>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lancer une macro&lt;/b&gt;&lt;p&gt;Lance une macro déjà enregistrée.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3819"/>
+        <location filename="../ViewManager/ViewManager.py" line="3834"/>
         <source>Delete Macro</source>
         <translation>Supprimer une macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <location filename="../ViewManager/ViewManager.py" line="3830"/>
         <source>&amp;Delete Macro</source>
         <translation>&amp;Supprimer une macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3821"/>
+        <location filename="../ViewManager/ViewManager.py" line="3836"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Supprimer une macro&lt;/b&gt;&lt;p&gt;Supprime une macro déjà enregistrée.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3848"/>
         <source>Load Macro</source>
         <translation>Charger une macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3829"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Load Macro</source>
         <translation>&amp;Charger une macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3850"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Charger une macro&lt;/b&gt;&lt;p&gt;Charger une macro déjà enregistrée à partir d&apos;un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3847"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>Save Macro</source>
         <translation>Enregistrer une macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3843"/>
+        <location filename="../ViewManager/ViewManager.py" line="3858"/>
         <source>&amp;Save Macro</source>
         <translation>&amp;Enregistrer la macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3849"/>
+        <location filename="../ViewManager/ViewManager.py" line="3864"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Enregistrer une macro&lt;/b&gt;&lt;p&gt;Enregistrer une macro dans un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3891"/>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
         <source>Toggle Bookmark</source>
         <translation>Placer/Supprimer un signet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>&amp;Placer/Supprimer un signet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3893"/>
+        <location filename="../ViewManager/ViewManager.py" line="3908"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Placer/Supprimer un signet&lt;/b&gt;&lt;p&gt;Place ou enlève un signet sur la ligne courante.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
+        <location filename="../ViewManager/ViewManager.py" line="3925"/>
         <source>Next Bookmark</source>
         <translation>Signet suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>&amp;Next Bookmark</source>
         <translation>Signet suiva&amp;nt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3912"/>
+        <location filename="../ViewManager/ViewManager.py" line="3927"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Signet suivant&lt;/b&gt;&lt;p&gt;Avance jusqu&apos;au signet suivant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3928"/>
+        <location filename="../ViewManager/ViewManager.py" line="3943"/>
         <source>Previous Bookmark</source>
         <translation>Signet précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>&amp;Previous Bookmark</source>
         <translation>Signet &amp;précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Signet précédent&lt;/b&gt;&lt;p&gt;Remonte au signet précédent.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3945"/>
+        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Signet précédent&lt;/b&gt;&lt;p&gt;Remonte au signet précédent.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
         <source>Clear Bookmarks</source>
         <translation>Supprimer les signets</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>S&amp;upprimer les signets</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3947"/>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Supprimer les signets&lt;/b&gt;&lt;p&gt;Supprime tous les signets de tous les éditeurs ouverts.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4156"/>
+        <location filename="../ViewManager/ViewManager.py" line="4171"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Signets</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>File Modified</source>
         <translation>Fichier Modifié</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5155"/>
+        <location filename="../ViewManager/ViewManager.py" line="5170"/>
         <source>&amp;Clear</source>
         <translation>&amp;Effacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5149"/>
+        <location filename="../ViewManager/ViewManager.py" line="5164"/>
         <source>&amp;Add</source>
         <translation>&amp;Ajouter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5152"/>
+        <location filename="../ViewManager/ViewManager.py" line="5167"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Editer...</translation>
     </message>
@@ -78995,32 +78995,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3961"/>
+        <location filename="../ViewManager/ViewManager.py" line="3976"/>
         <source>Goto Syntax Error</source>
         <translation>Aller à l&apos;erreur de syntaxe suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3955"/>
+        <location filename="../ViewManager/ViewManager.py" line="3970"/>
         <source>&amp;Goto Syntax Error</source>
         <translation>Aller à l&apos;erreur de s&amp;yntaxe suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3963"/>
-        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Aller à l&apos;erreur de syntaxe suivante&lt;/b&gt;&lt;p&gt;Avance jusqu&apos;à l&apos;erreur de syntaxe suivante.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Effacer les erreurs de syntaxe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3971"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>E&amp;ffacer les erreurs de syntaxe</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
+        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Aller à l&apos;erreur de syntaxe suivante&lt;/b&gt;&lt;p&gt;Avance jusqu&apos;à l&apos;erreur de syntaxe suivante.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Effacer les erreurs de syntaxe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>E&amp;ffacer les erreurs de syntaxe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3993"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Effacer les erreurs de syntaxe&lt;/b&gt;&lt;p&gt;Supprime tous les flags d&apos;erreurs de syntaxe de tous les éditeurs ouverts.&lt;/p&gt;</translation>
     </message>
@@ -79048,32 +79048,32 @@
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4046"/>
+        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>Next uncovered line</source>
         <translation>Ligne non executée suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4040"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next uncovered line</source>
         <translation>Ligne non executée &amp;suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4048"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ligne non executée suivante&lt;/b&gt;&lt;p&gt;Avance jusqu&apos;à la prochaine ligne de l&apos;éditeur marquée comme &quot;jamais executée&quot; par le code coverage.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4065"/>
+        <location filename="../ViewManager/ViewManager.py" line="4080"/>
         <source>Previous uncovered line</source>
         <translation>Ligne non executée précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
         <source>&amp;Previous uncovered line</source>
         <translation>Ligne non executée &amp;précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4082"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ligne non executée précédente&lt;/b&gt;&lt;p&gt;Retourne à la dernière ligne de l&apos;éditeur marquée comme &quot;jamais executée&quot; par le code coverage.&lt;/p&gt;</translation>
     </message>
@@ -79171,42 +79171,42 @@
         <translation>&lt;b&gt;Indentation intelligente&lt;/b&gt;&lt;p&gt;Indente intelligemment la ou les lignes sélectionnées.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
         <source>Next split</source>
         <translation>Onglet suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
         <source>&amp;Next split</source>
         <translation>O&amp;nglet suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <location filename="../ViewManager/ViewManager.py" line="3661"/>
         <source>Move to the next split</source>
         <translation>Basculer vers l&apos;onglet suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <location filename="../ViewManager/ViewManager.py" line="3663"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Onglet suivant&lt;/b&gt;&lt;p&gt;Basculer vers l&apos;onglet suivant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Previous split</source>
         <translation>Onglet précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>&amp;Previous split</source>
         <translation>Onglet &amp;précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3662"/>
+        <location filename="../ViewManager/ViewManager.py" line="3677"/>
         <source>Move to the previous split</source>
         <translation>Basculer vers l&apos;onglet précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3664"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Onglet précédent&lt;/b&gt;&lt;p&gt;Basculer vers l&apos;onglet précédent.&lt;/p&gt;</translation>
     </message>
@@ -79486,93 +79486,93 @@
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3708"/>
+        <location filename="../ViewManager/ViewManager.py" line="3723"/>
         <source>&amp;View</source>
         <translation>&amp;Affichage</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <source>View</source>
         <translation>Affichage</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3865"/>
+        <location filename="../ViewManager/ViewManager.py" line="3880"/>
         <source>&amp;Macros</source>
         <translation>&amp;Macros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4202"/>
+        <location filename="../ViewManager/ViewManager.py" line="4217"/>
         <source>Bookmarks</source>
         <translation>Signets</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4354"/>
+        <location filename="../ViewManager/ViewManager.py" line="4369"/>
         <source>Open files</source>
         <translation>Ouvrir Fichiers</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4083"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Next Task</source>
         <translation>Tâche suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4077"/>
+        <location filename="../ViewManager/ViewManager.py" line="4092"/>
         <source>&amp;Next Task</source>
         <translation>Tâche suiva&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4085"/>
-        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Tâche suivante&lt;/b&gt;&lt;p&gt;Avance jusqu&apos;à la prochaine ligne ayant une tâche dans l&apos;éditeur courant.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Tâche suivante&lt;/b&gt;&lt;p&gt;Avance jusqu&apos;à la prochaine ligne ayant une tâche dans l&apos;éditeur courant.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4115"/>
         <source>Previous Task</source>
         <translation>Tâche précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4093"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Previous Task</source>
         <translation>Tâche &amp;précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
+        <location filename="../ViewManager/ViewManager.py" line="4117"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tâche précédente&lt;/b&gt;&lt;p&gt;Remonte jusqu&apos;à la tâche précédente dans l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
@@ -79777,83 +79777,83 @@
         <translation>&lt;b&gt;Remplacer un texte dans les fichiers&lt;/b&gt;&lt;p&gt;Recherche un texte dans les fichiers d&apos;un répertoire ou du projet. Une fenêtre permet de saisir les options de recherche et de remplacement, et d&apos;afficher les résultats.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4244"/>
+        <location filename="../ViewManager/ViewManager.py" line="4259"/>
         <source>Perform spell check of current editor</source>
         <translation>Effectue la vérification orthographique dans l&apos;éditeur courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>Automatic spell checking</source>
         <translation>Vérification orthographique automatique</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Vérification orthographique &amp;automatique</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4262"/>
+        <location filename="../ViewManager/ViewManager.py" line="4277"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation>Active/Désactive la vérification orthographique automatique</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vérification orthographique&lt;/b&gt;&lt;p&gt;Active ou désactive la vérification orthographique automatique dans tous les éditeurs.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4346"/>
         <source>Spelling</source>
         <translation>Orthographe</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; a des modifications non enregistrées. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4730"/>
+        <location filename="../ViewManager/ViewManager.py" line="4745"/>
         <source>Line: {0:5}</source>
         <translation>Ligne: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4737"/>
+        <location filename="../ViewManager/ViewManager.py" line="4752"/>
         <source>Pos: {0:5}</source>
         <translation>Position: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3993"/>
+        <location filename="../ViewManager/ViewManager.py" line="4008"/>
         <source>Next warning message</source>
         <translation>Message d&apos;avertissement suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3987"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&amp;Next warning message</source>
         <translation>Message d&apos;avertisseme&amp;nt suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <source>Previous warning message</source>
         <translation>Message d&apos;avertissement précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4004"/>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
         <source>&amp;Previous warning message</source>
         <translation>Message d&apos;avertissement &amp;précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4030"/>
+        <location filename="../ViewManager/ViewManager.py" line="4045"/>
         <source>Clear Warning Messages</source>
         <translation>Vider messages d&apos;avertissement</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4023"/>
+        <location filename="../ViewManager/ViewManager.py" line="4038"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>Vider messages d&apos;&amp;avertissement</translation>
     </message>
@@ -79937,17 +79937,17 @@
         <translation>&lt;b&gt;Aller à la classe ou fonction suivante&lt;/b&gt;&lt;p&gt;Va à la ligne de classe ou fonction suivante et surligne le nom. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <location filename="../ViewManager/ViewManager.py" line="3687"/>
         <source>Preview</source>
         <translation>Aperçu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3677"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>Preview the current file in the web browser</source>
         <translation>Avoir un aperçu du fichier courant dans le navigateur</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aperçu&lt;/b&gt;&lt;p&gt;Ceci ouvre le navigateur avec un aperçu du fichier courant.&lt;/p&gt;</translation>
     </message>
@@ -80362,32 +80362,32 @@
         <translation>&amp;Tout enregistrer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4117"/>
+        <location filename="../ViewManager/ViewManager.py" line="4132"/>
         <source>Next Change</source>
         <translation>Modification suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4111"/>
+        <location filename="../ViewManager/ViewManager.py" line="4126"/>
         <source>&amp;Next Change</source>
         <translation>Modificatio&amp;n suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4119"/>
+        <location filename="../ViewManager/ViewManager.py" line="4134"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Modification suivante&lt;/b&gt;&lt;p&gt;Aller à la ligne suivante ayant un marquer de modification sur l&apos;éditeur courant. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4150"/>
         <source>Previous Change</source>
         <translation>Modification précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4128"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&amp;Previous Change</source>
         <translation>Modification &amp;précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4137"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Modification précédente &lt;/b&gt;&lt;p&gt;Aller à la ligne précédente ayant un marqueur de modification dans l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
@@ -80486,67 +80486,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check spelling</source>
         <translation type="unfinished">Vérification orthographique</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4261"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4295"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Edit Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4297"/>
+        <location filename="../ViewManager/ViewManager.py" line="4312"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4300"/>
+        <location filename="../ViewManager/ViewManager.py" line="4315"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4305"/>
+        <location filename="../ViewManager/ViewManager.py" line="4320"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4323"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6341"/>
+        <location filename="../ViewManager/ViewManager.py" line="6364"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6356"/>
+        <location filename="../ViewManager/ViewManager.py" line="6379"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6368"/>
+        <location filename="../ViewManager/ViewManager.py" line="6391"/>
         <source>&lt;p&gt;The spelling dictionary 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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80572,62 +80572,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4757"/>
+        <location filename="../ViewManager/ViewManager.py" line="4772"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4765"/>
+        <location filename="../ViewManager/ViewManager.py" line="4780"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New &amp;Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3561"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Open a new view of the current document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3573"/>
+        <location filename="../ViewManager/ViewManager.py" line="3588"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3580"/>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3598"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3995"/>
+        <location filename="../ViewManager/ViewManager.py" line="4010"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
+        <location filename="../ViewManager/ViewManager.py" line="4029"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4032"/>
+        <location filename="../ViewManager/ViewManager.py" line="4047"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80765,6 +80765,21 @@
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3540"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/i18n/eric6_it.ts	Fri Dec 22 16:07:49 2017 +0100
+++ b/i18n/eric6_it.ts	Fri Dec 22 16:21:40 2017 +0100
@@ -112,22 +112,22 @@
         <translation>Azioni</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Learn more about writing rules...</source>
         <translation>Documentazione aggiuntiva sulla scrittura delle regole...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="153"/>
         <source>Update Subscription</source>
         <translation>Aggiorna sottoscrizione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Browse Subscriptions...</source>
         <translation>Naviga sottoscrizioni...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="230"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="236"/>
         <source>Remove Subscription</source>
         <translation>Rimuovi sottoscrizione</translation>
     </message>
@@ -137,42 +137,42 @@
         <translation>Inserisci il periodo di aggiornamento (da 1 a 14 giorni)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="48"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="50"/>
         <source>Search...</source>
         <translation>Ricerca...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="130"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
         <source>Add Rule</source>
         <translation>Aggiungi regola</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="132"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="137"/>
         <source>Remove Rule</source>
         <translation>Rimuovi Regola</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
         <source>Disable Subscription</source>
         <translation>Disabilita la Sottoscrizione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="145"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="150"/>
         <source>Enable Subscription</source>
         <translation>Abilita la Sottoscrizione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="151"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
         <source>Update All Subscriptions</source>
         <translation>Aggiorna tutte le sottoscrizioni</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="220"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="226"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation>&lt;p&gt;Vuoi veramente cancellare la sottoscrizione &lt;b&gt;{0}&lt;/b&gt; e tutte le sottoscrizioni che lo richiedono?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="227"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Vuoi veramente rimuovere &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
@@ -220,7 +220,7 @@
         <translation>&amp;Cancella</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="37"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="38"/>
         <source>Enter host to be added...</source>
         <translation>Inserire un indirizzo host da aggiungere...</translation>
     </message>
@@ -228,17 +228,17 @@
 <context>
     <name>AdBlockIcon</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="38"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="39"/>
         <source>AdBlock lets you block unwanted content on web pages.</source>
         <translation>AdBlock permette di bloccare contenuti indesiderati nelle pagine Web.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="72"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="75"/>
         <source>Disable AdBlock</source>
         <translation>Disabilita AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="77"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="80"/>
         <source>Enable AdBlock</source>
         <translation>Abilita AdBlock</translation>
     </message>
@@ -258,27 +258,27 @@
         <translation>Nessun contenuto bloccato</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="108"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="112"/>
         <source>AdBlock</source>
         <translation>AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="84"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="87"/>
         <source>Remove AdBlock Exception</source>
         <translation>Rimuovere eccezione AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="89"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="92"/>
         <source>Add AdBlock Exception</source>
         <translation>Aggiungere eccezione AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="93"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="96"/>
         <source>AdBlock Exceptions...</source>
         <translation>Eccezioni AdBlock...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="97"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="100"/>
         <source>AdBlock Configuration...</source>
         <translation>Configurazione AdBlock...</translation>
     </message>
@@ -286,17 +286,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="208"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="221"/>
         <source>Custom Rules</source>
         <translation>Regole personalizzate</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>Subscribe?</source>
         <translation type="unfinished">Iscriversi ?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Iscriversi a questa lista AdBlock?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -304,22 +304,22 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>Load subscription rules</source>
         <translation>Carica regole di sottoscrizione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>Downloading subscription rules</source>
         <translation>Scarica regole di sottoscrizione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="405"/>
         <source>Got empty subscription rules.</source>
         <translation>Ricevuto regole di sottoscrizione vuote.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Saving subscription rules</source>
         <translation>Salvataggio regole di sottoscrizione</translation>
     </message>
@@ -329,7 +329,7 @@
         <translation>Non è possibile aprire il file adblock &apos;{0}&apos; in lettura.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="387"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="392"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le regole di sottoscrizione non possono essere scaricate.&lt;/p&gt;&lt;p&gt;Errore {0}&lt;/p&gt;</translation>
     </message>
@@ -339,22 +339,22 @@
         <translation>Non è possibile aprire il file adblock &apos;{0}&apos; in scrittura.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation>Il file adblock &apos;{0}&apos; non inizia con [Adblock.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation>&lt;p&gt;la Sottoscrizione AdBlock &lt;b&gt;{0}&lt;/b&gt; ha un codice di controllo errato.&lt;br/&gt;Trovato: {1}&lt;br/&gt;Calcolato: {2}&lt;br/&gt;Usarlo comunque?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="280"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="286"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -362,27 +362,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Add Custom Rule</source>
         <translation>Aggiungi regola personalizzata</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Write your rule here:</source>
         <translation>Inserire la regola qui:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="161"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="165"/>
         <source>Add Rule</source>
         <translation>Aggiungi regola</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="163"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="167"/>
         <source>Remove Rule</source>
         <translation>Rimuovi Regola</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="215"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="220"/>
         <source>{0} (recently updated)</source>
         <translation>{0} (aggiornato di recente)</translation>
     </message>
@@ -7120,28 +7120,28 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="112"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="113"/>
         <source>Invalid response received from DeepL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="115"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="116"/>
         <source>DeepL reported an error.
 Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="119"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="120"/>
         <source>DeepL call returned an unknown result</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="123"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="124"/>
         <source>Unsupported language code given (source: {0}, target: {1}).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="130"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="131"/>
         <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7686,7 +7686,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>.desktop Wizard</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8021,22 +8021,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9962,7 +9962,7 @@
         <translation>Modifica Breakpoint...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5290"/>
+        <location filename="../QScintilla/Editor.py" line="5295"/>
         <source>Enable breakpoint</source>
         <translation>Abilita breakpoint</translation>
     </message>
@@ -10047,87 +10047,87 @@
         <translation>L&apos;autocomplentamento non è disponibile perchè non ci sono fonti impostate.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5293"/>
+        <location filename="../QScintilla/Editor.py" line="5298"/>
         <source>Disable breakpoint</source>
         <translation>Disabilita breakpoint</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Code Coverage</source>
         <translation>Analisi codice</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Please select a coverage file</source>
         <translation>Per favore seleziona un file per l&apos;analisi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Profile Data</source>
         <translation>Profilazione dati</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <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="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Macro Name</source>
         <translation>Nome Macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Select a macro name:</source>
         <translation>Seleziona un nome per la macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Macro files (*.macro)</source>
         <translation>File Macro (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6348"/>
+        <location filename="../QScintilla/Editor.py" line="6353"/>
         <source>Load macro file</source>
         <translation>Carica un file di macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <source>Error loading macro</source>
         <translation>Errore nel caricamento della macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Save macro file</source>
         <translation>Salva un file di macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <source>Save macro</source>
         <translation>Salva macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <source>Error saving macro</source>
         <translation>Errore nel salvataggio della macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Start Macro Recording</source>
         <translation>Avvia registrazione della macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Macro Recording</source>
         <translation>Registrazione Macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Enter name of the macro:</source>
         <translation>Inserisci un nome per la macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6601"/>
+        <location filename="../QScintilla/Editor.py" line="6606"/>
         <source>File changed</source>
         <translation>File modificato</translation>
     </message>
@@ -10147,7 +10147,7 @@
         <translation>Elimina errori di sintassi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <source>Drop Error</source>
         <translation>Errore Drop</translation>
     </message>
@@ -10157,12 +10157,12 @@
         <translation>Mostra i messaggi degli errori di sintassi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>Syntax Error</source>
         <translation>Errore di sintassi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>No syntax error message available.</source>
         <translation>Nessun messaggio degli errori di sintassi disponibile.</translation>
     </message>
@@ -10192,17 +10192,17 @@
         <translation>File non analizzato precedente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Mostra le annotazioni dell&apos;analisi del codice</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5723"/>
+        <location filename="../QScintilla/Editor.py" line="5728"/>
         <source>All lines have been covered.</source>
         <translation>Tutte le linee sono state analizzate.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>There is no coverage file available.</source>
         <translation>Non ci sono file di analisi disponibili.</translation>
     </message>
@@ -10237,72 +10237,72 @@
         <translation>Nessun linguaggio</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6926"/>
+        <location filename="../QScintilla/Editor.py" line="6931"/>
         <source>Resources</source>
         <translation>Risorse</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6928"/>
+        <location filename="../QScintilla/Editor.py" line="6933"/>
         <source>Add file...</source>
         <translation>Aggiungi file...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6930"/>
-        <source>Add files...</source>
-        <translation>Aggiungi files...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6932"/>
-        <source>Add aliased file...</source>
-        <translation>Aggiungi file sinonimo...</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6935"/>
+        <source>Add files...</source>
+        <translation>Aggiungi files...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6937"/>
+        <source>Add aliased file...</source>
+        <translation>Aggiungi file sinonimo...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6940"/>
         <source>Add localized resource...</source>
         <translation>Aggiungi una risorsa localizzata...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6958"/>
+        <location filename="../QScintilla/Editor.py" line="6963"/>
         <source>Add file resource</source>
         <translation>Aggiungi un file risorse</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6974"/>
+        <location filename="../QScintilla/Editor.py" line="6979"/>
         <source>Add file resources</source>
         <translation>Aggiundi dei file risorse</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <source>Add aliased file resource</source>
         <translation>Aggiungi file sinonimo delle risorse</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Package Diagram</source>
         <translation>Diagrammi del package</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Include class attributes?</source>
         <translation>Includi gli attributi della classe ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Application Diagram</source>
         <translation>Diagrammi dell&apos;applicazione</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Include module names?</source>
         <translation>Includi i nomi dei moduli ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6939"/>
+        <location filename="../QScintilla/Editor.py" line="6944"/>
         <source>Add resource frame</source>
         <translation>Aggiungi riquadro delle risorse</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>Registrazione macro già attiva. Avvia nuovamente ?</translation>
     </message>
@@ -10347,12 +10347,12 @@
         <translation>Nessun formato di export impostato. Annullamento...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Imports Diagram</source>
         <translation>Importa diagrammi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Include imports from external modules?</source>
         <translation>Includi gli import dai moduli esterni ?</translation>
     </message>
@@ -10422,7 +10422,7 @@
         <translation>Selezione l&apos;analizzatore lessicale di Pygments da applicare.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7378"/>
+        <location filename="../QScintilla/Editor.py" line="7383"/>
         <source>Check spelling...</source>
         <translation>Controllo sillabazione...</translation>
     </message>
@@ -10432,12 +10432,12 @@
         <translation>Controllo sillabazione della selezione...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7386"/>
         <source>Add to dictionary</source>
         <translation>Aggiungi al dizionario</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7383"/>
+        <location filename="../QScintilla/Editor.py" line="7388"/>
         <source>Ignore All</source>
         <translation>Ignora tutto</translation>
     </message>
@@ -10477,32 +10477,32 @@
         <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/Editor.py" line="6362"/>
+        <location filename="../QScintilla/Editor.py" line="6367"/>
         <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="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <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="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <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="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6770"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <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="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <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>
@@ -10532,22 +10532,22 @@
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <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="6259"/>
+        <location filename="../QScintilla/Editor.py" line="6264"/>
         <source>Warning: {0}</source>
         <translation>Attenzione: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6266"/>
+        <location filename="../QScintilla/Editor.py" line="6271"/>
         <source>Error: {0}</source>
         <translation>Errore: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6597"/>
+        <location filename="../QScintilla/Editor.py" line="6602"/>
         <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>
@@ -10572,27 +10572,27 @@
         <translation>Modifica precedente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>Sort Lines</source>
         <translation>Righe ordinate</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <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="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>Warning</source>
         <translation>Attenzione</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>No warning messages available.</source>
         <translation>Nessun messaggio di attenzione disponibile.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6256"/>
+        <location filename="../QScintilla/Editor.py" line="6261"/>
         <source>Style: {0}</source>
         <translation>Stile: {0}</translation>
     </message>
@@ -10617,7 +10617,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6591"/>
+        <location filename="../QScintilla/Editor.py" line="6596"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; è stato modificato mentre era aperto in eric6. Rileggerlo ?&lt;/p&gt;</translation>
     </message>
@@ -10632,32 +10632,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46701,7 +46701,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="886"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="892"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46786,7 +46786,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="859"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="865"/>
         <source>Upgrade Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46806,7 +46806,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Uninstall Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46991,7 +46991,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="746"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="752"/>
         <source>Select Python Executable</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47006,17 +47006,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="729"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="735"/>
         <source>&lt;Default&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Upgrade pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Select pip Executable:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47026,27 +47026,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="757"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="763"/>
         <source>Repair PIP</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="821"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="827"/>
         <source>You are trying to upgrade PyQt packages. This will not work for the current instance of Python ({0}). Do you want to continue?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="907"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="913"/>
         <source>Install Packages from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Do you really want to uninstall these packages?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="982"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="988"/>
         <source>Uninstall Packages from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60502,7 +60502,7 @@
         <translation>Resetta e pulisci</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <source>Drop Error</source>
         <translation>Drop Error</translation>
     </message>
@@ -60579,14 +60579,14 @@
         <translation>StdErr: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1638"/>
+        <location filename="../QScintilla/Shell.py" line="1678"/>
         <source>Shell language &quot;{0}&quot; not supported.
 </source>
         <translation>Il linguaggio &quot;{0}&quot; della shell non è supportato.
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <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>
@@ -77461,8 +77461,8 @@
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3493"/>
-        <source>Toggle &amp;all folds</source>
-        <translation>Abilita/Disabilita tutti i r&amp;aggruppamenti</translation>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished">Abilita/Disabilita tutti i r&amp;aggruppamenti</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3499"/>
@@ -77485,247 +77485,247 @@
         <translation>&lt;b&gt;Abilita/Disabilita il raggruppamento corrente&lt;/b&gt;&lt;p&gt;Abilita/Disabilita il raggruppamento alla riga corrente dell&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3561"/>
         <source>Remove all highlights</source>
         <translation>Rimuovi tutti gli highlight</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rimuovi tutti gli highlight&lt;/b&gt;&lt;p&gt;Rimuovi tutti gli highlight da tutti gli editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
+        <location filename="../ViewManager/ViewManager.py" line="3609"/>
         <source>Split view</source>
         <translation>Dividi vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
-        <source>&amp;Split view</source>
-        <translation>Dividi vi&amp;sta</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Add a split to the view</source>
-        <translation>Aggiungi un divisione alla vista</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Dividi vista&lt;/b&gt;&lt;p&gt;Aggiungi un divisione alla vista.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange horizontally</source>
-        <translation>Sistema orizzontalmente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange &amp;horizontally</source>
-        <translation>Sistema o&amp;rizzontalmente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3613"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Sistema le finestre divise orizzontalmente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3615"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Sistema orizzontalmente&lt;/b&gt;&lt;p&gt;Sistema le finestre divise orizzontalmente.&lt;/p&gt;</translation>
+        <source>&amp;Split view</source>
+        <translation>Dividi vi&amp;sta</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Add a split to the view</source>
+        <translation>Aggiungi un divisione alla vista</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Dividi vista&lt;/b&gt;&lt;p&gt;Aggiungi un divisione alla vista.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3624"/>
-        <source>Remove split</source>
-        <translation>Rimuovi divisione</translation>
+        <source>Arrange horizontally</source>
+        <translation>Sistema orizzontalmente</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3624"/>
+        <source>Arrange &amp;horizontally</source>
+        <translation>Sistema o&amp;rizzontalmente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3628"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Sistema le finestre divise orizzontalmente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3630"/>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Sistema orizzontalmente&lt;/b&gt;&lt;p&gt;Sistema le finestre divise orizzontalmente.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3639"/>
+        <source>Remove split</source>
+        <translation>Rimuovi divisione</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3639"/>
         <source>&amp;Remove split</source>
         <translation>&amp;Rimuovi divisione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3629"/>
+        <location filename="../ViewManager/ViewManager.py" line="3644"/>
         <source>Remove the current split</source>
         <translation>Rimuovi la divisione corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <location filename="../ViewManager/ViewManager.py" line="3646"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rimuovi divisione&lt;/b&gt;&lt;p&gt;Rimuovi la divisione corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3777"/>
+        <location filename="../ViewManager/ViewManager.py" line="3792"/>
         <source>Start Macro Recording</source>
         <translation>Avvia registrazione della macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3771"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>S&amp;tart Macro Recording</source>
         <translation>Avvia regis&amp;trazione della macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Avvia registrazione della macro&lt;/b&gt;&lt;p&gt;Avvia la registrazione dei comandi dell&apos;editor in una nuova macro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
+        <location filename="../ViewManager/ViewManager.py" line="3806"/>
         <source>Stop Macro Recording</source>
         <translation>Interrompi registrazione macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3787"/>
+        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>Sto&amp;p Macro Recording</source>
         <translation>Interrom&amp;pi registrazione macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Interrompi registrazione macro&lt;/b&gt;&lt;p&gt;Interrompi la registrazione dei comandi dell&apos;editor in una nuova macro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <location filename="../ViewManager/ViewManager.py" line="3820"/>
         <source>Run Macro</source>
         <translation>Esegui Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3801"/>
+        <location filename="../ViewManager/ViewManager.py" line="3816"/>
         <source>&amp;Run Macro</source>
         <translation>Esegui Mac&amp;ro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3807"/>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Esegui Macro&lt;/b&gt;&lt;p&gt;Esegui una macro precedentemente registrata.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3819"/>
+        <location filename="../ViewManager/ViewManager.py" line="3834"/>
         <source>Delete Macro</source>
         <translation>Cancella Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <location filename="../ViewManager/ViewManager.py" line="3830"/>
         <source>&amp;Delete Macro</source>
         <translation>Canc&amp;ella Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3821"/>
+        <location filename="../ViewManager/ViewManager.py" line="3836"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cancella Macro&lt;/b&gt;&lt;p&gt;Cancella una macro precedentemente registrata.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3848"/>
         <source>Load Macro</source>
         <translation>Carica Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3829"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Load Macro</source>
         <translation>C&amp;arica Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3850"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Carica Macro&lt;/b&gt;&lt;p&gt;Carica una macro da un file.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3847"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>Save Macro</source>
         <translation>Salva Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3843"/>
+        <location filename="../ViewManager/ViewManager.py" line="3858"/>
         <source>&amp;Save Macro</source>
         <translation>&amp;Salva Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3849"/>
+        <location filename="../ViewManager/ViewManager.py" line="3864"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salva Macro&lt;/b&gt;&lt;p&gt;Salva una macro precedentemente registrata.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3891"/>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
         <source>Toggle Bookmark</source>
         <translation>Inverti bookmark</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>Inver&amp;ti bookmark</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3893"/>
+        <location filename="../ViewManager/ViewManager.py" line="3908"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Toggle bookmark&lt;/b&gt;&lt;p&gt;Attiva un bookmark sulla linea corrente dell&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
+        <location filename="../ViewManager/ViewManager.py" line="3925"/>
         <source>Next Bookmark</source>
         <translation>Prossimo segnalibro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>&amp;Next Bookmark</source>
         <translation>Prossimo seg&amp;nalibro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3912"/>
+        <location filename="../ViewManager/ViewManager.py" line="3927"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Prossimo segnalibro&lt;/b&gt;&lt;p&gt;Vai al segnalibro seguente dell&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3928"/>
+        <location filename="../ViewManager/ViewManager.py" line="3943"/>
         <source>Previous Bookmark</source>
         <translation>Segnalibro precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>&amp;Previous Bookmark</source>
         <translation>Segnalibro &amp;precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Segnalibro precedente&lt;/b&gt;&lt;p&gt;Va al segnalibro precedente dell&apos;editor corrente.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3945"/>
+        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Segnalibro precedente&lt;/b&gt;&lt;p&gt;Va al segnalibro precedente dell&apos;editor corrente.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
         <source>Clear Bookmarks</source>
         <translation>Pulisci segnalibri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>Pulis&amp;ci segnalibri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3947"/>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pulisci Segnalibri&lt;/b&gt;&lt;p&gt;Pulisci i segnalibri di tutti gli editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4156"/>
+        <location filename="../ViewManager/ViewManager.py" line="4171"/>
         <source>&amp;Bookmarks</source>
         <translation>Segnali&amp;bri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>File Modified</source>
         <translation>File modificato</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5155"/>
+        <location filename="../ViewManager/ViewManager.py" line="5170"/>
         <source>&amp;Clear</source>
         <translation>Pulis&amp;ci</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5149"/>
+        <location filename="../ViewManager/ViewManager.py" line="5164"/>
         <source>&amp;Add</source>
         <translation>&amp;Aggiungi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5152"/>
+        <location filename="../ViewManager/ViewManager.py" line="5167"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Modifica...</translation>
     </message>
@@ -77780,32 +77780,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3961"/>
+        <location filename="../ViewManager/ViewManager.py" line="3976"/>
         <source>Goto Syntax Error</source>
         <translation>Vai all&apos;errore di sintassi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3955"/>
+        <location filename="../ViewManager/ViewManager.py" line="3970"/>
         <source>&amp;Goto Syntax Error</source>
         <translation>&amp;Vai all&apos;errore di sintassi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3963"/>
-        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Vai all&apos;errore di sintassi&lt;/b&gt;&lt;p&gt;Vai all&apos;errore di sintassi successivo dell&apos;editor corrente.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Pulisci errori di sintassi</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3971"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>Pulisci errori di &amp;sintassi</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
+        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Vai all&apos;errore di sintassi&lt;/b&gt;&lt;p&gt;Vai all&apos;errore di sintassi successivo dell&apos;editor corrente.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Pulisci errori di sintassi</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>Pulisci errori di &amp;sintassi</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3993"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pulisci errori di sintassi&lt;/b&gt;&lt;p&gt;Pulisci gli errori di sintassi da tutti gli editor.&lt;/p&gt;</translation>
     </message>
@@ -77833,32 +77833,32 @@
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4046"/>
+        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>Next uncovered line</source>
         <translation>Prossima linea non analizzata</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4040"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next uncovered line</source>
         <translation>Prossima linea &amp;non analizzata</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4048"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Prossima linea  non analizzata&lt;/b&gt;&lt;p&gt;Vai alla prossima riga dell&apos;editor corrente marcato come non analizzata.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4065"/>
+        <location filename="../ViewManager/ViewManager.py" line="4080"/>
         <source>Previous uncovered line</source>
         <translation>Linea non analizzata precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
         <source>&amp;Previous uncovered line</source>
         <translation>Linea non analizzata &amp;precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4082"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Linea non analizzata precedente&lt;/b&gt;&lt;p&gt;Vai alla prossima riga dell&apos;editor corrente marcato come non analizzata.&lt;/p&gt;</translation>
     </message>
@@ -77956,42 +77956,42 @@
         <translation>&lt;b&gt;Smart indent&lt;/b&gt;&lt;p&gt;Indenta la riga attuale o le righe selezionate in maniera furba.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
         <source>Next split</source>
         <translation>Prossima divisione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
         <source>&amp;Next split</source>
         <translation>Prossima divisio&amp;ne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <location filename="../ViewManager/ViewManager.py" line="3661"/>
         <source>Move to the next split</source>
         <translation>Vai alla prossima divisione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <location filename="../ViewManager/ViewManager.py" line="3663"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Prossima divisione&lt;/b&gt;&lt;p&gt;Vai alla prossima divisione.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Previous split</source>
         <translation>Divisione precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>&amp;Previous split</source>
         <translation>Divisione &amp;precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3662"/>
+        <location filename="../ViewManager/ViewManager.py" line="3677"/>
         <source>Move to the previous split</source>
         <translation>Vai alla divisione precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3664"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Divisione precedente&lt;/b&gt;&lt;p&gt;Vai alla divisione precedente.&lt;/p&gt;</translation>
     </message>
@@ -78247,93 +78247,93 @@
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3708"/>
+        <location filename="../ViewManager/ViewManager.py" line="3723"/>
         <source>&amp;View</source>
         <translation>&amp;Visualizza</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <source>View</source>
         <translation>Visualizza</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3865"/>
+        <location filename="../ViewManager/ViewManager.py" line="3880"/>
         <source>&amp;Macros</source>
         <translation>&amp;Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4202"/>
+        <location filename="../ViewManager/ViewManager.py" line="4217"/>
         <source>Bookmarks</source>
         <translation>Segnalibri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4354"/>
+        <location filename="../ViewManager/ViewManager.py" line="4369"/>
         <source>Open files</source>
         <translation>Apri Files</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4083"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Next Task</source>
         <translation>Task seguente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4077"/>
+        <location filename="../ViewManager/ViewManager.py" line="4092"/>
         <source>&amp;Next Task</source>
         <translation>Task segue&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4085"/>
-        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Task seguente&lt;/b&gt;&lt;p&gt;Vai alla prossima riga dell&apos;editor che ha un task.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Task seguente&lt;/b&gt;&lt;p&gt;Vai alla prossima riga dell&apos;editor che ha un task.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4115"/>
         <source>Previous Task</source>
         <translation>Task Precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4093"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Previous Task</source>
         <translation>Task &amp;Precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
+        <location filename="../ViewManager/ViewManager.py" line="4117"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Task Precedente&lt;/b&gt;&lt;p&gt;Vai alla precedente riga dell&apos;editor che ha un task.&lt;/p&gt;</translation>
     </message>
@@ -78538,83 +78538,83 @@
         <translation>&lt;b&gt;Sostituisci nei File&lt;/b&gt;&lt;p&gt;Cerca per del testo nei file di una direcotry o del progetto e lo sostituisce. Un dialogo viene mostrato per inserire il testo da cercare, il testo da inserire e le opzioni per la ricerca e la visualizzazione del risultato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4244"/>
+        <location filename="../ViewManager/ViewManager.py" line="4259"/>
         <source>Perform spell check of current editor</source>
         <translation>Esegui la correzione automatica nella finestra corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>Automatic spell checking</source>
         <translation>Controllo sintassi automatico</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Controllo sintassi &amp;automatico</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4262"/>
+        <location filename="../ViewManager/ViewManager.py" line="4277"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation>(Dis-)Attiva il controllo sintassi automatico</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Controllo sintassi automatico&lt;/b&gt;&lt;p&gt;Attiva o disattiva la funzione di controllo sintassi automatico per tutti gli editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4346"/>
         <source>Spelling</source>
         <translation>Spelling</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; contiene modifiche non salvate.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4730"/>
+        <location filename="../ViewManager/ViewManager.py" line="4745"/>
         <source>Line: {0:5}</source>
         <translation>Linea: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4737"/>
+        <location filename="../ViewManager/ViewManager.py" line="4752"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3993"/>
+        <location filename="../ViewManager/ViewManager.py" line="4008"/>
         <source>Next warning message</source>
         <translation>Warning successivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3987"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&amp;Next warning message</source>
         <translation>Warni&amp;ng successivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <source>Previous warning message</source>
         <translation>Messaggio di warning precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4004"/>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
         <source>&amp;Previous warning message</source>
         <translation>Messaggio di warning &amp;precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4030"/>
+        <location filename="../ViewManager/ViewManager.py" line="4045"/>
         <source>Clear Warning Messages</source>
         <translation>Pulisci messaggi di warning</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4023"/>
+        <location filename="../ViewManager/ViewManager.py" line="4038"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>Pulisci messaggi di &amp;warning</translation>
     </message>
@@ -78698,17 +78698,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <location filename="../ViewManager/ViewManager.py" line="3687"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3677"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>Preview the current file in the web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -79122,97 +79122,97 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4117"/>
+        <location filename="../ViewManager/ViewManager.py" line="4132"/>
         <source>Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4111"/>
+        <location filename="../ViewManager/ViewManager.py" line="4126"/>
         <source>&amp;Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4119"/>
+        <location filename="../ViewManager/ViewManager.py" line="4134"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4150"/>
         <source>Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4128"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&amp;Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4137"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check spelling</source>
         <translation type="unfinished">Controllo sillabazione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4261"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4295"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Edit Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4297"/>
+        <location filename="../ViewManager/ViewManager.py" line="4312"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4300"/>
+        <location filename="../ViewManager/ViewManager.py" line="4315"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4305"/>
+        <location filename="../ViewManager/ViewManager.py" line="4320"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4323"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6356"/>
+        <location filename="../ViewManager/ViewManager.py" line="6379"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6341"/>
+        <location filename="../ViewManager/ViewManager.py" line="6364"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6368"/>
+        <location filename="../ViewManager/ViewManager.py" line="6391"/>
         <source>&lt;p&gt;The spelling dictionary 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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -79332,62 +79332,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4757"/>
+        <location filename="../ViewManager/ViewManager.py" line="4772"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4765"/>
+        <location filename="../ViewManager/ViewManager.py" line="4780"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New Document View</source>
         <translation type="unfinished">Nuova vista Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New &amp;Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3561"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Open a new view of the current document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3573"/>
+        <location filename="../ViewManager/ViewManager.py" line="3588"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished">Nuova vista Documento (con nuova divisione)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3580"/>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3598"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3995"/>
+        <location filename="../ViewManager/ViewManager.py" line="4010"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
+        <location filename="../ViewManager/ViewManager.py" line="4029"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4032"/>
+        <location filename="../ViewManager/ViewManager.py" line="4047"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -79525,6 +79525,21 @@
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3540"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/i18n/eric6_pt.ts	Fri Dec 22 16:07:49 2017 +0100
+++ b/i18n/eric6_pt.ts	Fri Dec 22 16:21:40 2017 +0100
@@ -112,22 +112,22 @@
         <translation>Ações</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Learn more about writing rules...</source>
         <translation>Aprender mais acerca de escrever regras...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="153"/>
         <source>Update Subscription</source>
         <translation>Atualizar a Subscrição</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Browse Subscriptions...</source>
         <translation>Navegar nas Subscrições...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="230"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="236"/>
         <source>Remove Subscription</source>
         <translation>Retirar Subscrição</translation>
     </message>
@@ -137,42 +137,42 @@
         <translation>Introduzir o período de atualização (de 1 a 14 dias)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="48"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="50"/>
         <source>Search...</source>
         <translation>Procurar...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="130"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
         <source>Add Rule</source>
         <translation>Adicionar Regra</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="132"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="137"/>
         <source>Remove Rule</source>
         <translation>Retirar Regra</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
         <source>Disable Subscription</source>
         <translation>Inabilitar Subscrição</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="145"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="150"/>
         <source>Enable Subscription</source>
         <translation>Habilitar Subscrição</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="151"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
         <source>Update All Subscriptions</source>
         <translation>Atualizar Todas as Subscrições</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="220"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="226"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation>&lt;p&gt;Tem a certeza de que quer retirar a subscrição &lt;b&gt;{0}&lt;/b&gt; e todas as subscrições que dependam dela?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="227"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Tem a certeza de que quer retirar a subscrição &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
@@ -220,7 +220,7 @@
         <translation>&amp;Apagar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="37"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="38"/>
         <source>Enter host to be added...</source>
         <translation>Introduzir o anfitrião a ser adicionado...</translation>
     </message>
@@ -228,17 +228,17 @@
 <context>
     <name>AdBlockIcon</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="38"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="39"/>
         <source>AdBlock lets you block unwanted content on web pages.</source>
         <translation>AdBlock permite-lhe bloquear o conteúdo não desejado nas páginas web.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="72"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="75"/>
         <source>Disable AdBlock</source>
         <translation>Inabilitar AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="77"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="80"/>
         <source>Enable AdBlock</source>
         <translation>Habilitar AdBlock</translation>
     </message>
@@ -258,27 +258,27 @@
         <translation>Não há conteúdo bloqueado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="108"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="112"/>
         <source>AdBlock</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="84"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="87"/>
         <source>Remove AdBlock Exception</source>
         <translation>Retirar Exceção de AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="89"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="92"/>
         <source>Add AdBlock Exception</source>
         <translation>Adicionar Exceção de AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="93"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="96"/>
         <source>AdBlock Exceptions...</source>
         <translation>Exceções de AdBlock...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="97"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="100"/>
         <source>AdBlock Configuration...</source>
         <translation>Configuração de AdBlock...</translation>
     </message>
@@ -286,17 +286,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="208"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="221"/>
         <source>Custom Rules</source>
         <translation>Regras Personalizadas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>Subscribe?</source>
         <translation>Subscrever?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Subscrever a esta subscrição AdBlock?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -304,7 +304,7 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>Load subscription rules</source>
         <translation>Carregar regras de subscrição</translation>
     </message>
@@ -314,17 +314,17 @@
         <translation>Incapaz de abrir o ficheiro adblock &apos;{0}&apos; para leitura.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>Downloading subscription rules</source>
         <translation>A descarregar regras de subscrição</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="387"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="392"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não se pôde descarregar as regras de subscrição.&lt;/p&gt;&lt;p&gt;Erro: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="405"/>
         <source>Got empty subscription rules.</source>
         <translation>Obtidas regras de subscrição vazias.</translation>
     </message>
@@ -334,27 +334,27 @@
         <translation>Impossível abrir o ficheiro adblock &apos;{0}&apos; para escritura.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Saving subscription rules</source>
         <translation>A guardar regras de subscrição</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation>O ficheiro AdBlock &apos;{0}&apos; não começa com [Adblock.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation>&lt;p&gt;A subscrição de AdBlock &lt;b&gt;{0}&lt;/b&gt; tem uma soma de verificação errada. &lt;br/&gt;Encontrado: {1}&lt;br/&gt;Calculado: {2}&lt;br/&gt;Usar de qualquer modo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="280"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="286"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation>Incapaz de ler o ficheiro AdBlock {0} para leitura.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation>Incapaz de abrir o ficheiro AdBlock {0} para escritura.</translation>
     </message>
@@ -362,27 +362,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Add Custom Rule</source>
         <translation>Adicionar Regra Personalizada</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Write your rule here:</source>
         <translation>Escrever a sua regra aqui:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="161"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="165"/>
         <source>Add Rule</source>
         <translation>Adicionar Regra</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="163"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="167"/>
         <source>Remove Rule</source>
         <translation>Retirar Regra</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="215"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="220"/>
         <source>{0} (recently updated)</source>
         <translation>{0} (atualizado recentemente)</translation>
     </message>
@@ -7552,28 +7552,28 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="112"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="113"/>
         <source>Invalid response received from DeepL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="115"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="116"/>
         <source>DeepL reported an error.
 Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="119"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="120"/>
         <source>DeepL call returned an unknown result</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="123"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="124"/>
         <source>Unsupported language code given (source: {0}, target: {1}).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="130"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="131"/>
         <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8128,7 +8128,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>.desktop Wizard</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8463,22 +8463,22 @@
         <translation type="unfinished">Preencher desde Projeto</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10392,7 +10392,7 @@
         <translation>Desselecionar tudo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7378"/>
+        <location filename="../QScintilla/Editor.py" line="7383"/>
         <source>Check spelling...</source>
         <translation>Verificação ortográfica...</translation>
     </message>
@@ -10632,7 +10632,7 @@
         <translation>Editar ponto de interrupção...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5290"/>
+        <location filename="../QScintilla/Editor.py" line="5295"/>
         <source>Enable breakpoint</source>
         <translation>Habilitar pontos de interrupção</translation>
     </message>
@@ -10817,257 +10817,257 @@
         <translation>Autocompletar não está disponivel porque a fonte de autocompletar não está definida.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5293"/>
+        <location filename="../QScintilla/Editor.py" line="5298"/>
         <source>Disable breakpoint</source>
         <translation>Inabilitar ponto de interrupção</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Please select a coverage file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>Show Code Coverage Annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5723"/>
+        <location filename="../QScintilla/Editor.py" line="5728"/>
         <source>All lines have been covered.</source>
         <translation>Foram cobertas as linhas todas.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>There is no coverage file available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Profile Data</source>
         <translation>Dados de Perfil</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Please select a profile file</source>
         <translation>Escolha um ficheiro de perfil por favor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>Syntax Error</source>
         <translation>Erro de Sintaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <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="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Macro Name</source>
         <translation>Nome de Macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Select a macro name:</source>
         <translation>Selecionar um nome de macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6348"/>
+        <location filename="../QScintilla/Editor.py" line="6353"/>
         <source>Load macro file</source>
         <translation>Carregar ficheiro macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Macro files (*.macro)</source>
         <translation>Ficheiros Macro (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <source>Error loading macro</source>
         <translation>Erro ao carregar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6362"/>
+        <location filename="../QScintilla/Editor.py" line="6367"/>
         <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="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <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="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Save macro file</source>
         <translation>Gravar ficheiro macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <source>Save macro</source>
         <translation>Gravar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <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="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <source>Error saving macro</source>
         <translation>Erro ao gravar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <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="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Start Macro Recording</source>
         <translation>Iniciar Registo de Macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <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="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Macro Recording</source>
         <translation>Gravação de Macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Enter name of the macro:</source>
         <translation>Introduza o nome de macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6601"/>
+        <location filename="../QScintilla/Editor.py" line="6606"/>
         <source>File changed</source>
         <translation>Ficheiro alterado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6770"/>
         <source>{0} (ro)</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <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="6926"/>
+        <location filename="../QScintilla/Editor.py" line="6931"/>
         <source>Resources</source>
         <translation>Recursos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6928"/>
+        <location filename="../QScintilla/Editor.py" line="6933"/>
         <source>Add file...</source>
         <translation>Adicionar Ficheiro...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6930"/>
-        <source>Add files...</source>
-        <translation>Adicionar Ficheiros...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6932"/>
-        <source>Add aliased file...</source>
-        <translation>Adicionar ficheiro com pseudónimo...</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6935"/>
+        <source>Add files...</source>
+        <translation>Adicionar Ficheiros...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6937"/>
+        <source>Add aliased file...</source>
+        <translation>Adicionar ficheiro com pseudónimo...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6940"/>
         <source>Add localized resource...</source>
         <translation>Adicionar recursos localizado...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6939"/>
+        <location filename="../QScintilla/Editor.py" line="6944"/>
         <source>Add resource frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6958"/>
+        <location filename="../QScintilla/Editor.py" line="6963"/>
         <source>Add file resource</source>
         <translation>Adicionar recurso de ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6974"/>
+        <location filename="../QScintilla/Editor.py" line="6979"/>
         <source>Add file resources</source>
         <translation>Adicionar recursos de ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <source>Add aliased file resource</source>
         <translation>Adicionar recurso de ficheiro com pseudónimo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <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="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Package Diagram</source>
         <translation>Diagrama do Pacote</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Include class attributes?</source>
         <translation>Incluir atributos de classes?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Imports Diagram</source>
         <translation>Diagrama de Imports</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Include imports from external modules?</source>
         <translation>Incluir imports de módulos externos?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Application Diagram</source>
         <translation>Diagrama da Aplicação</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Include module names?</source>
         <translation>Incluir nome dos módulos?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7386"/>
         <source>Add to dictionary</source>
         <translation>Adicionar dicionário</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7383"/>
+        <location filename="../QScintilla/Editor.py" line="7388"/>
         <source>Ignore All</source>
         <translation>Ignorar Tudo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6259"/>
+        <location filename="../QScintilla/Editor.py" line="6264"/>
         <source>Warning: {0}</source>
         <translation>Aviso: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6266"/>
+        <location filename="../QScintilla/Editor.py" line="6271"/>
         <source>Error: {0}</source>
         <translation>Erro: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6597"/>
+        <location filename="../QScintilla/Editor.py" line="6602"/>
         <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>
@@ -11082,7 +11082,7 @@
         <translation type="obsolete">Não se pode conetar o fornecedor de autocompletar porque já há outro ativo. Por favor verifique a sua configuração.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11112,27 +11112,27 @@
         <translation>Alteração anterior</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>Sort Lines</source>
         <translation>Ordenar Linhas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <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="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>Warning</source>
         <translation>Aviso</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <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="6256"/>
+        <location filename="../QScintilla/Editor.py" line="6261"/>
         <source>Style: {0}</source>
         <translation>Estilo: {0}</translation>
     </message>
@@ -11157,7 +11157,7 @@
         <translation>Reabrir Com Codificação</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6591"/>
+        <location filename="../QScintilla/Editor.py" line="6596"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; foi alterado enquanto estava aberto em eric6. Recarregar?&lt;/p&gt;</translation>
     </message>
@@ -11172,27 +11172,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48161,7 +48161,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="886"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="892"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48246,7 +48246,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="859"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="865"/>
         <source>Upgrade Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48266,7 +48266,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Uninstall Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48451,7 +48451,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="746"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="752"/>
         <source>Select Python Executable</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48466,17 +48466,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="729"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="735"/>
         <source>&lt;Default&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Upgrade pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Select pip Executable:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48486,27 +48486,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="757"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="763"/>
         <source>Repair PIP</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="821"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="827"/>
         <source>You are trying to upgrade PyQt packages. This will not work for the current instance of Python ({0}). Do you want to continue?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="907"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="913"/>
         <source>Install Packages from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Do you really want to uninstall these packages?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="982"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="988"/>
         <source>Uninstall Packages from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61998,18 +61998,18 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1638"/>
+        <location filename="../QScintilla/Shell.py" line="1678"/>
         <source>Shell language &quot;{0}&quot; not supported.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; não é um ficheiro.&lt;/p&gt;</translation>
     </message>
@@ -79718,8 +79718,8 @@
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3493"/>
-        <source>Toggle &amp;all folds</source>
-        <translation>Alternar dobras &amp;todas</translation>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished">Alternar dobras &amp;todas</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3499"/>
@@ -79757,519 +79757,519 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3561"/>
         <source>Remove all highlights</source>
         <translation>Retirar todo o ressaltado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
-        <source>Split view</source>
-        <translation>Vista dividida</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
-        <source>&amp;Split view</source>
-        <translation>Vista &amp;dividida</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Add a split to the view</source>
-        <translation>Adicionar uma divisão à vista</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Vista dividida&lt;/b&gt;&lt;p&gt;Adiciona uma divisão ao visor.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange horizontally</source>
-        <translation>Organizar horizontalmente</translation>
+        <source>Split view</source>
+        <translation>Vista dividida</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange &amp;horizontally</source>
-        <translation>Organizar &amp;horizontalmente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3613"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Organizar horizontalmente os visores divididos</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3615"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Ordenar horizontalmente&lt;/b&gt;&lt;p&gt;Ordena horizontalmente os visores divididos.&lt;/p&gt;</translation>
+        <source>&amp;Split view</source>
+        <translation>Vista &amp;dividida</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Add a split to the view</source>
+        <translation>Adicionar uma divisão à vista</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Vista dividida&lt;/b&gt;&lt;p&gt;Adiciona uma divisão ao visor.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3624"/>
-        <source>Remove split</source>
-        <translation>Retirar divisão</translation>
+        <source>Arrange horizontally</source>
+        <translation>Organizar horizontalmente</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3624"/>
-        <source>&amp;Remove split</source>
-        <translation>&amp;Retirar divisão</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3629"/>
-        <source>Remove the current split</source>
-        <translation>Retira a divisão atual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
-        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Retirar divisão&lt;/b&gt;&lt;p&gt;Retira a divisão atual.&lt;/p&gt;</translation>
+        <source>Arrange &amp;horizontally</source>
+        <translation>Organizar &amp;horizontalmente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3628"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Organizar horizontalmente os visores divididos</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3630"/>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Ordenar horizontalmente&lt;/b&gt;&lt;p&gt;Ordena horizontalmente os visores divididos.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>Next split</source>
-        <translation>Separação seguinte</translation>
+        <source>Remove split</source>
+        <translation>Retirar divisão</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>&amp;Next split</source>
-        <translation>Separação segui&amp;nte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>Ctrl+Alt+N</source>
-        <comment>View|Next split</comment>
-        <translation></translation>
+        <source>&amp;Remove split</source>
+        <translation>&amp;Retirar divisão</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3644"/>
+        <source>Remove the current split</source>
+        <translation>Retira a divisão atual</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Retirar divisão&lt;/b&gt;&lt;p&gt;Retira a divisão atual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>Next split</source>
+        <translation>Separação seguinte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>&amp;Next split</source>
+        <translation>Separação segui&amp;nte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>Ctrl+Alt+N</source>
+        <comment>View|Next split</comment>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3661"/>
         <source>Move to the next split</source>
         <translation>Mover à seguinte divisão</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <location filename="../ViewManager/ViewManager.py" line="3663"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Separação seguinte&lt;/b&gt;&lt;p&gt;Mover à proxima divisão.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Previous split</source>
         <translation>Divisão anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>&amp;Previous split</source>
         <translation>Divisão &amp;anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3662"/>
+        <location filename="../ViewManager/ViewManager.py" line="3677"/>
         <source>Move to the previous split</source>
         <translation>Mover à divisão anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3664"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Separação anterior&lt;/b&gt;&lt;p&gt;Mover à divisão anterior.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3708"/>
+        <location filename="../ViewManager/ViewManager.py" line="3723"/>
         <source>&amp;View</source>
         <translation>&amp;Vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <source>View</source>
         <translation>Vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3777"/>
+        <location filename="../ViewManager/ViewManager.py" line="3792"/>
         <source>Start Macro Recording</source>
         <translation>Iniciar Registo de Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3771"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>S&amp;tart Macro Recording</source>
         <translation>Iniciar Regis&amp;to de Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Iniciar Registo de Macro&lt;/b&gt;&lt;p&gt;Inicia o registo de comandos do editor num macro novo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
+        <location filename="../ViewManager/ViewManager.py" line="3806"/>
         <source>Stop Macro Recording</source>
         <translation>Para Registo de Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3787"/>
+        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>Sto&amp;p Macro Recording</source>
         <translation>&amp;Para Registo de Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Parar Registo de Macro&lt;/b&gt;&lt;p&gt;Pára o registo de comandos do editor num macro novo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <location filename="../ViewManager/ViewManager.py" line="3820"/>
         <source>Run Macro</source>
         <translation>Executar Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3801"/>
+        <location filename="../ViewManager/ViewManager.py" line="3816"/>
         <source>&amp;Run Macro</source>
         <translation>Executa&amp;r Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3807"/>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Executar Macro&lt;/b&gt;&lt;p&gt;Executa um macro de editor previamente registado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3819"/>
+        <location filename="../ViewManager/ViewManager.py" line="3834"/>
         <source>Delete Macro</source>
         <translation>Apagar Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <location filename="../ViewManager/ViewManager.py" line="3830"/>
         <source>&amp;Delete Macro</source>
         <translation>&amp;Apagar Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3821"/>
+        <location filename="../ViewManager/ViewManager.py" line="3836"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Apagar Macro&lt;/b&gt;&lt;p&gt;Apaga um macro de editor previamente registado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3848"/>
         <source>Load Macro</source>
         <translation>Carregar Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3829"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Load Macro</source>
         <translation>&amp;Carregar Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3850"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Carregar Macro&lt;/b&gt;&lt;p&gt;Carrega um macro de editor desde um ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3847"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>Save Macro</source>
         <translation>Gravar Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3843"/>
+        <location filename="../ViewManager/ViewManager.py" line="3858"/>
         <source>&amp;Save Macro</source>
         <translation>&amp;Gravar Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3849"/>
+        <location filename="../ViewManager/ViewManager.py" line="3864"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gravar Macro&lt;/b&gt;&lt;p&gt;Grava um macro de editor previamente registado num ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3865"/>
+        <location filename="../ViewManager/ViewManager.py" line="3880"/>
         <source>&amp;Macros</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3891"/>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
         <source>Toggle Bookmark</source>
         <translation>Alternar Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>&amp;Alternar Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3893"/>
+        <location filename="../ViewManager/ViewManager.py" line="3908"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
+        <location filename="../ViewManager/ViewManager.py" line="3925"/>
         <source>Next Bookmark</source>
         <translation>Marcador Seguinte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>&amp;Next Bookmark</source>
         <translation>Marcador Segui&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3912"/>
+        <location filename="../ViewManager/ViewManager.py" line="3927"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3928"/>
+        <location filename="../ViewManager/ViewManager.py" line="3943"/>
         <source>Previous Bookmark</source>
         <translation>Marcador Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>&amp;Previous Bookmark</source>
         <translation>Marcador &amp;Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3945"/>
+        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
         <source>Clear Bookmarks</source>
         <translation>Limpar Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>&amp;Limpar Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3947"/>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpar Marcadores&lt;/b&gt;&lt;p&gt;Limpa os marcadores de todos os editores&lt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3961"/>
-        <source>Goto Syntax Error</source>
-        <translation>Ir ao Erro de Sintaxe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3955"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>&amp;Ir ao Erro de Sintaxe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3963"/>
-        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Limpar Erros de Sintaxe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3971"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>Limpar Erros de &amp;Sintaxe</translation>
+        <source>Goto Syntax Error</source>
+        <translation>Ir ao Erro de Sintaxe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3970"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>&amp;Ir ao Erro de Sintaxe</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
-        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Limpar Erros de Sintaxe&lt;/b&gt;&lt;p&gt;Limpa os erros de sintaxe dos editores todos.&lt;/p&gt;</translation>
+        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Limpar Erros de Sintaxe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>Limpar Erros de &amp;Sintaxe</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3993"/>
+        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Limpar Erros de Sintaxe&lt;/b&gt;&lt;p&gt;Limpa os erros de sintaxe dos editores todos.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4008"/>
         <source>Next warning message</source>
         <translation>Mensagem de aviso seguinte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3987"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&amp;Next warning message</source>
         <translation>Mensagem de aviso segui&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <source>Previous warning message</source>
         <translation>Mensagem de aviso anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4004"/>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
         <source>&amp;Previous warning message</source>
         <translation>Mensagem de aviso &amp;anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4030"/>
+        <location filename="../ViewManager/ViewManager.py" line="4045"/>
         <source>Clear Warning Messages</source>
         <translation>Limpar Mensagens de Aviso</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4023"/>
+        <location filename="../ViewManager/ViewManager.py" line="4038"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>Limpar Mensagens de &amp;Aviso</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4046"/>
+        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>Next uncovered line</source>
         <translation>Linha seguinte sem cobrir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4040"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4048"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4065"/>
+        <location filename="../ViewManager/ViewManager.py" line="4080"/>
         <source>Previous uncovered line</source>
         <translation>Linha anterior sem cobrir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
         <source>&amp;Previous uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4082"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4083"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Next Task</source>
         <translation>Tarefa Seguinte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4077"/>
+        <location filename="../ViewManager/ViewManager.py" line="4092"/>
         <source>&amp;Next Task</source>
         <translation>Tarefa Segui&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4085"/>
-        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4115"/>
         <source>Previous Task</source>
         <translation>Tarefa Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4093"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Previous Task</source>
         <translation>Tarefa &amp;Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
+        <location filename="../ViewManager/ViewManager.py" line="4117"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4156"/>
+        <location filename="../ViewManager/ViewManager.py" line="4171"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4202"/>
+        <location filename="../ViewManager/ViewManager.py" line="4217"/>
         <source>Bookmarks</source>
         <translation>Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4244"/>
+        <location filename="../ViewManager/ViewManager.py" line="4259"/>
         <source>Perform spell check of current editor</source>
         <translation>Executar a verificação ortográfica do editor atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>Automatic spell checking</source>
         <translation>Verificação ortográfica automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Verificação ortográfica &amp;automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4262"/>
+        <location filename="../ViewManager/ViewManager.py" line="4277"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation>(Des)Ativar verificação ortográfica automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Verificação ortográfica automática&lt;/b&gt;&lt;p&gt;Ativa ou desativa a função de verificação ortográfica automática nos editores todos.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4346"/>
         <source>Spelling</source>
         <translation>Verificação ortográfica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4354"/>
+        <location filename="../ViewManager/ViewManager.py" line="4369"/>
         <source>Open files</source>
         <translation>Abrir ficheiros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>File Modified</source>
         <translation>Ficheiro Modificado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; tem alterações por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4730"/>
+        <location filename="../ViewManager/ViewManager.py" line="4745"/>
         <source>Line: {0:5}</source>
         <translation>Linha: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4737"/>
+        <location filename="../ViewManager/ViewManager.py" line="4752"/>
         <source>Pos: {0:5}</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5155"/>
+        <location filename="../ViewManager/ViewManager.py" line="5170"/>
         <source>&amp;Clear</source>
         <translation>&amp;Limpar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5149"/>
+        <location filename="../ViewManager/ViewManager.py" line="5164"/>
         <source>&amp;Add</source>
         <translation>&amp;Adicionar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5152"/>
+        <location filename="../ViewManager/ViewManager.py" line="5167"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Editar...</translation>
     </message>
@@ -80337,17 +80337,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <location filename="../ViewManager/ViewManager.py" line="3687"/>
         <source>Preview</source>
         <translation>Antevisão</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3677"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>Preview the current file in the web browser</source>
         <translation>Antevisão do ficheiro atual no navegador web</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80761,97 +80761,97 @@
         <translation>Gravar &amp;tudo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4117"/>
+        <location filename="../ViewManager/ViewManager.py" line="4132"/>
         <source>Next Change</source>
         <translation>Alteração Seguinte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4111"/>
+        <location filename="../ViewManager/ViewManager.py" line="4126"/>
         <source>&amp;Next Change</source>
         <translation>Alteração Segui&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4119"/>
+        <location filename="../ViewManager/ViewManager.py" line="4134"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4150"/>
         <source>Previous Change</source>
         <translation>Alteração Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4128"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&amp;Previous Change</source>
         <translation>Alteração &amp;Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4137"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check spelling</source>
         <translation>Verificar ortografia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check &amp;spelling...</source>
         <translation>Verificar &amp;ortografia...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4261"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Verificação ortográfica&lt;/b&gt;&lt;p&gt;Executa a verificação ortográfica do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4295"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Edit Dictionary</source>
         <translation>Editar Dicionário</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4297"/>
+        <location filename="../ViewManager/ViewManager.py" line="4312"/>
         <source>Project Word List</source>
         <translation>Lista de Palavras do Projeto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4300"/>
+        <location filename="../ViewManager/ViewManager.py" line="4315"/>
         <source>Project Exception List</source>
         <translation>Lista de Excepções do Projeto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4305"/>
+        <location filename="../ViewManager/ViewManager.py" line="4320"/>
         <source>User Word List</source>
         <translation>Lista de Palavras do Usuário</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4323"/>
         <source>User Exception List</source>
         <translation>Lista de Exceções do Usuário</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>Edit Spelling Dictionary</source>
         <translation>Editar Dicionário Ortográfico</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6356"/>
+        <location filename="../ViewManager/ViewManager.py" line="6379"/>
         <source>Editing {0}</source>
         <translation>A editar {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6341"/>
+        <location filename="../ViewManager/ViewManager.py" line="6364"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6368"/>
+        <location filename="../ViewManager/ViewManager.py" line="6391"/>
         <source>&lt;p&gt;The spelling dictionary 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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation>O dicionário ortográfico foi guradado com êxito.</translation>
     </message>
@@ -80971,62 +80971,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4757"/>
+        <location filename="../ViewManager/ViewManager.py" line="4772"/>
         <source>Language: {0}</source>
         <translation>Linguagem: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4765"/>
+        <location filename="../ViewManager/ViewManager.py" line="4780"/>
         <source>EOL Mode: {0}</source>
         <translation>Modo EOL: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New Document View</source>
         <translation>Novo Visor do Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New &amp;Document View</source>
         <translation>Novo Visor do &amp;Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3561"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Open a new view of the current document</source>
         <translation>Abrir um novo visor com o documento atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nova Vista de Documento&lt;/b&gt;&lt;p&gt;Abre uma vista nova do documento atual. Ambas vistas mostram o mesmo documento mas, os cursores podem estar em posições independentes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3573"/>
+        <location filename="../ViewManager/ViewManager.py" line="3588"/>
         <source>New Document View (with new split)</source>
         <translation>Nova Vista de Documento (com divisão nova)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3580"/>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
         <source>Open a new view of the current document in a new split</source>
         <translation>Abrir uma nova vista do documento atual numa nova divisão</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3598"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nova Vista de Documento&lt;/b&gt;&lt;p&gt;Abre uma vista nova do documento atual numa divisão nova. Ambas vistas mostram o mesmo documento mas, os cursores podem estar em posições independentes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3995"/>
+        <location filename="../ViewManager/ViewManager.py" line="4010"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
+        <location filename="../ViewManager/ViewManager.py" line="4029"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4032"/>
+        <location filename="../ViewManager/ViewManager.py" line="4047"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81170,6 +81170,21 @@
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3540"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/i18n/eric6_ru.ts	Fri Dec 22 16:07:49 2017 +0100
+++ b/i18n/eric6_ru.ts	Fri Dec 22 16:21:40 2017 +0100
@@ -112,22 +112,22 @@
         <translation>Действия</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Learn more about writing rules...</source>
         <translation>Узнать больше о написании правил...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="153"/>
         <source>Update Subscription</source>
         <translation>Обновить подписку</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Browse Subscriptions...</source>
         <translation>Просмотреть подписки...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="230"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="236"/>
         <source>Remove Subscription</source>
         <translation>Удалить подписку</translation>
     </message>
@@ -137,42 +137,42 @@
         <translation>Задайте период обновления (от 1 до 14 дней)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="48"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="50"/>
         <source>Search...</source>
         <translation>Поиск...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="130"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
         <source>Add Rule</source>
         <translation>Добавить правило</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="132"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="137"/>
         <source>Remove Rule</source>
         <translation>Удалить правило</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
         <source>Disable Subscription</source>
         <translation>Запретить подписку</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="145"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="150"/>
         <source>Enable Subscription</source>
         <translation>Разрешить подписку</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="151"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
         <source>Update All Subscriptions</source>
         <translation>Обновить все подписки</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="220"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="226"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation>&lt;p&gt;Вы действительно хотите удалить подписку &lt;b&gt;{0}&lt;/b&gt; и все подписки, связанные с нею?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;li&gt;&lt;/ul&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="227"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
         <source>&lt;p&gt;Do you really want to remove subscription &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>
@@ -220,7 +220,7 @@
         <translation>&amp;Удалить</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="37"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="38"/>
         <source>Enter host to be added...</source>
         <translation>Задайте хост, который нужно добавить...</translation>
     </message>
@@ -228,17 +228,17 @@
 <context>
     <name>AdBlockIcon</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="38"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="39"/>
         <source>AdBlock lets you block unwanted content on web pages.</source>
         <translation>AdBlock позволяет Вам блокировать нежелательное содержание web-страниц.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="72"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="75"/>
         <source>Disable AdBlock</source>
         <translation>Запретить AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="77"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="80"/>
         <source>Enable AdBlock</source>
         <translation>Разрешить AdBlock</translation>
     </message>
@@ -258,27 +258,27 @@
         <translation>Нет заблокированного содержания</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="108"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="112"/>
         <source>AdBlock</source>
         <translation>AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="84"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="87"/>
         <source>Remove AdBlock Exception</source>
         <translation>Удалить AdBlock исключение</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="89"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="92"/>
         <source>Add AdBlock Exception</source>
         <translation>Добавить AdBlock исключение</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="93"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="96"/>
         <source>AdBlock Exceptions...</source>
         <translation>Исключения AdBlock...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="97"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="100"/>
         <source>AdBlock Configuration...</source>
         <translation>Настройка AdBlock...</translation>
     </message>
@@ -286,17 +286,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="208"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="221"/>
         <source>Custom Rules</source>
         <translation>Пользовательские правила</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>Subscribe?</source>
         <translation>Подписаться?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Подписаться на AdBlock подписку?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -304,7 +304,7 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>Load subscription rules</source>
         <translation>Загрузить правила подписки</translation>
     </message>
@@ -314,17 +314,17 @@
         <translation>Невозможно открыть adblock файл &apos;{0}&apos; для чтения.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>Downloading subscription rules</source>
         <translation>Загрузка правил подписки</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="387"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="392"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно загрузить правила подписки.&lt;/p&gt;&lt;p&gt;Ошибка: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="405"/>
         <source>Got empty subscription rules.</source>
         <translation>Правила подписки пусты.</translation>
     </message>
@@ -334,27 +334,27 @@
         <translation>Невозможно открыть adblock файл &apos;{0}&apos; для записи.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Saving subscription rules</source>
         <translation>Сохранение правил подписки</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation>Adblock файл &apos;{0}&apos; начинается не с [Adblock.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Adblock подписка &lt;b&gt;{0}&lt;/b&gt; имеет неверную контрольную сумму.&lt;br/&gt;Найдено: {1}&lt;br/&gt;Вычислено: {2}&lt;br/&gt;Использовать её?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="280"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="286"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation>Невозможно открыть файл AdBlock &apos;{0}&apos; для чтения.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation>Невозможно открыть файл AdBlock &apos;{0}&apos; для записи.</translation>
     </message>
@@ -362,27 +362,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Add Custom Rule</source>
         <translation>Добавить пользовательское правило</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Write your rule here:</source>
         <translation>Записать Ваше правило здесь:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="161"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="165"/>
         <source>Add Rule</source>
         <translation>Добавить правило</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="163"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="167"/>
         <source>Remove Rule</source>
         <translation>Удалить правило</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="215"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="220"/>
         <source>{0} (recently updated)</source>
         <translation>{0} (недавно обновлен)</translation>
     </message>
@@ -7170,29 +7170,29 @@
         <translation>Текст, подлежащий переводу, превышает лимит перевода в {0} символов.</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="112"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="113"/>
         <source>Invalid response received from DeepL</source>
         <translation>От DeepL получен недопустимый ответ</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="115"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="116"/>
         <source>DeepL reported an error.
 Message: {0}</source>
         <translation>Сообщение DeepL об ошибке.
 Сообщение: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="119"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="120"/>
         <source>DeepL call returned an unknown result</source>
         <translation>Вызов DeepL вернул неизвестный результат</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="123"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="124"/>
         <source>Unsupported language code given (source: {0}, target: {1}).</source>
         <translation>Неподдерживаемый язык (исходный: {0}, целевой: {1}).</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="130"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="131"/>
         <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
         <translation>&lt;p&gt;Перевод не найден&lt;/p&gt;</translation>
     </message>
@@ -7737,7 +7737,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>.desktop Wizard</source>
         <translation>Мастер создания ярлыков приложений .desktop</translation>
     </message>
@@ -8062,22 +8062,22 @@
         <translation>Заполнить из проекта</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation>FreeDesktop Standard .desktop</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation>KDE Plasma MetaData .desktop</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation>Ubuntu Unity QuickList .desktop</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation>Разрешен только один вариант: &apos;Показывать только в&apos;  или  &apos;Не показывать в&apos;.</translation>
     </message>
@@ -9944,7 +9944,7 @@
         <translation>Снять выделение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7378"/>
+        <location filename="../QScintilla/Editor.py" line="7383"/>
         <source>Check spelling...</source>
         <translation>Проверка орфографии...</translation>
     </message>
@@ -10169,7 +10169,7 @@
         <translation>Редактировать точку останова...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5290"/>
+        <location filename="../QScintilla/Editor.py" line="5295"/>
         <source>Enable breakpoint</source>
         <translation>Разрешить точку останова</translation>
     </message>
@@ -10354,257 +10354,257 @@
         <translation>Автодополнение недоступно, так как не задан источник автодополнения.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5293"/>
+        <location filename="../QScintilla/Editor.py" line="5298"/>
         <source>Disable breakpoint</source>
         <translation>Запретить точку останова</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Code Coverage</source>
         <translation>Охват кода</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Please select a coverage file</source>
         <translation>Пожалуйста, выберите файл для информации охвата</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Показать аннотации по охвату</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5723"/>
+        <location filename="../QScintilla/Editor.py" line="5728"/>
         <source>All lines have been covered.</source>
         <translation>Все строки выполняются.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>There is no coverage file available.</source>
         <translation>Нет файла с информацией по охвату.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Profile Data</source>
         <translation>Данные профайлера</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Please select a profile file</source>
         <translation>Пожалуйста, выберите файл профиля</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>Syntax Error</source>
         <translation>Синтаксическая ошибка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>No syntax error message available.</source>
         <translation>Нет сообщения о синтаксической ошибке.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Macro Name</source>
         <translation>Имя макроса</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Select a macro name:</source>
         <translation>Задайте имя макроса:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6348"/>
+        <location filename="../QScintilla/Editor.py" line="6353"/>
         <source>Load macro file</source>
         <translation>Загрузить макрос</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Macro files (*.macro)</source>
         <translation>Макросы (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <source>Error loading macro</source>
         <translation>Ошибка при загрузке макроса</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6362"/>
+        <location filename="../QScintilla/Editor.py" line="6367"/>
         <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="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <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="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Save macro file</source>
         <translation>Сохранить файл с макросами</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <source>Save macro</source>
         <translation>Сохранить макрос</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <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="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <source>Error saving macro</source>
         <translation>Ошибка при сохранении макроса</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <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="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Start Macro Recording</source>
         <translation>Начать запись макроса</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>Запись макроса уже идёт. Начать новую запись?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Macro Recording</source>
         <translation>Запись макроса</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Enter name of the macro:</source>
         <translation>Задайте имя макроса:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6601"/>
+        <location filename="../QScintilla/Editor.py" line="6606"/>
         <source>File changed</source>
         <translation>Файл изменен</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6770"/>
         <source>{0} (ro)</source>
         <translation>{0} (только чтение)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <source>Drop Error</source>
         <translation>Ошибка Drag&amp;&amp;Drop</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <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="6926"/>
+        <location filename="../QScintilla/Editor.py" line="6931"/>
         <source>Resources</source>
         <translation>Ресурсы</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6928"/>
+        <location filename="../QScintilla/Editor.py" line="6933"/>
         <source>Add file...</source>
         <translation>Добавить файл...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6930"/>
-        <source>Add files...</source>
-        <translation>Добавить файлы...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6932"/>
-        <source>Add aliased file...</source>
-        <translation>Добавить файл под другим именем...</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6935"/>
+        <source>Add files...</source>
+        <translation>Добавить файлы...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6937"/>
+        <source>Add aliased file...</source>
+        <translation>Добавить файл под другим именем...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6940"/>
         <source>Add localized resource...</source>
         <translation>Добавить локализованный ресурс...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6939"/>
+        <location filename="../QScintilla/Editor.py" line="6944"/>
         <source>Add resource frame</source>
         <translation>Добавить фрагмент ресурсов</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6958"/>
+        <location filename="../QScintilla/Editor.py" line="6963"/>
         <source>Add file resource</source>
         <translation>Добавить файл ресурсов</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6974"/>
+        <location filename="../QScintilla/Editor.py" line="6979"/>
         <source>Add file resources</source>
         <translation>Добавить файлы ресурсов</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <source>Add aliased file resource</source>
         <translation>Добавить файл ресурсов под другим именем</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <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="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Package Diagram</source>
         <translation>Диаграмма пакетов</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Include class attributes?</source>
         <translation>Включать атрибуты класса?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Imports Diagram</source>
         <translation>Диаграмма импортов</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Include imports from external modules?</source>
         <translation>Включать импорты из внешних модулей?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Application Diagram</source>
         <translation>Диаграмма приложения</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Include module names?</source>
         <translation>Включать имена модулей?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7386"/>
         <source>Add to dictionary</source>
         <translation>Добавить в словарь</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7383"/>
+        <location filename="../QScintilla/Editor.py" line="7388"/>
         <source>Ignore All</source>
         <translation>Игнорировать всё</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6259"/>
+        <location filename="../QScintilla/Editor.py" line="6264"/>
         <source>Warning: {0}</source>
         <translation>Предупреждение: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6266"/>
+        <location filename="../QScintilla/Editor.py" line="6271"/>
         <source>Error: {0}</source>
         <translation>Ошибка: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6597"/>
+        <location filename="../QScintilla/Editor.py" line="6602"/>
         <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>
@@ -10629,27 +10629,27 @@
         <translation>Предыдущее изменение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>Sort Lines</source>
         <translation>Сортировать строки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation>Выборка содержит данные неподходящие для сортировки как числа.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>Warning</source>
         <translation>Предупреждение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>No warning messages available.</source>
         <translation>Нет предупреждающего сообщения.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6256"/>
+        <location filename="../QScintilla/Editor.py" line="6261"/>
         <source>Style: {0}</source>
         <translation>Стиль: {0}</translation>
     </message>
@@ -10674,7 +10674,7 @@
         <translation>Открыть заново с кодировкой</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6591"/>
+        <location filename="../QScintilla/Editor.py" line="6596"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; был изменён, будучи открытым в Eric6. Обновить?&lt;/p&gt;</translation>
     </message>
@@ -10689,32 +10689,32 @@
         <translation>Дополнить</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>Auto-Completion Provider</source>
         <translation>Источник автодополнений</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation>Список дополнений источника &apos;{0}&apos; уже зарегистрирован. Повторный запрос проигнорирован.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>Call-Tips Provider</source>
         <translation>Источник всплывающих подсказок</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation>Источник всплывающих подсказок &apos;{0}&apos; уже зарегистрирован. Повторный запрос проигнорирован.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>Register Mouse Click Handler</source>
         <translation>Регистрация обработчика кликов мышки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation>Обработчик кликов мышки для &quot;{0}&quot; уже зарегистрирован &quot;{1}&quot;. Запрос прерван &quot;{2}&quot;...</translation>
     </message>
@@ -46862,7 +46862,7 @@
         <translation>&lt;b&gt;Список актуальных пакетов&lt;/b&gt;&lt;p&gt;В этом списке перечислены все установленные, устаревшие пакеты с указанием их текущих и последних версий.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="886"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="892"/>
         <source>Install Packages</source>
         <translation>Установка пакетов</translation>
     </message>
@@ -46897,7 +46897,7 @@
         <translation>&lt;b&gt;Инсталяция зависимостей&lt;/b&gt;&lt;p&gt;Установка пакетов в соответствии с условиями файла зависимостей.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="859"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="865"/>
         <source>Upgrade Packages</source>
         <translation>Обновление пакетов</translation>
     </message>
@@ -46917,7 +46917,7 @@
         <translation>&lt;b&gt;Обновление пакетов&lt;/b&gt;&lt;p&gt;Обновление пакетов в соответствии с заданием пользователя.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Uninstall Packages</source>
         <translation>Деинсталяция пакетов</translation>
     </message>
@@ -47022,17 +47022,17 @@
         <translation>Выберите исполняемый файл pip:</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="907"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="913"/>
         <source>Install Packages from Requirements</source>
         <translation>Установка пакетов, перечисленных в зависимостях</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Do you really want to uninstall these packages?</source>
         <translation>Вы действительно хотите деинсталировать эти пакеты?</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="982"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="988"/>
         <source>Uninstall Packages from Requirements</source>
         <translation>Деинсталяция пакетов, перечисленных в зависимостях</translation>
     </message>
@@ -47152,7 +47152,7 @@
         <translation>&lt;b&gt;Установка Pip&lt;/b&gt;&lt;p&gt;Инсталяция пакета pip.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="746"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="752"/>
         <source>Select Python Executable</source>
         <translation>Выбор исполняемого файла Python</translation>
     </message>
@@ -47172,17 +47172,17 @@
         <translation>Обновление PIP</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="729"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="735"/>
         <source>&lt;Default&gt;</source>
         <translation>&lt;Default&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Upgrade pip</source>
         <translation>Обновить pip</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Select pip Executable:</source>
         <translation>Выберите исполняемый файл pip:</translation>
     </message>
@@ -47202,12 +47202,12 @@
         <translation>&lt;b&gt;Восстановление Pip&lt;/b&gt;&lt;p&gt;Восстановление пакета pip путем его переустановки.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="757"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="763"/>
         <source>Repair PIP</source>
         <translation>Восстановление PIP</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="821"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="827"/>
         <source>You are trying to upgrade PyQt packages. This will not work for the current instance of Python ({0}). Do you want to continue?</source>
         <translation>Вы пытаетесь обновить пакеты PyQt. Они не будут работать с текущим экземпляром Python ({0}). Хотите продолжить?</translation>
     </message>
@@ -60890,19 +60890,19 @@
         <translation>StdErr: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1638"/>
+        <location filename="../QScintilla/Shell.py" line="1678"/>
         <source>Shell language &quot;{0}&quot; not supported.
 </source>
         <translation>Язык оболочки &quot;{0}&quot; не поддерживается.
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <source>Drop Error</source>
         <translation>Ошибка Drag&amp;&amp;Drop</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <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>
@@ -78390,8 +78390,8 @@
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3493"/>
-        <source>Toggle &amp;all folds</source>
-        <translation>&amp;Свернуть/Развернуть все свертки</translation>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished">&amp;Свернуть/Развернуть все свертки</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3499"/>
@@ -78430,528 +78430,528 @@
 &lt;p&gt;Свернуть/Развернуть свертку текущей строки текущего редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3561"/>
         <source>Remove all highlights</source>
         <translation>Снять все выделения</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&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="3594"/>
+        <location filename="../ViewManager/ViewManager.py" line="3609"/>
         <source>Split view</source>
         <translation>Разделить окно</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
-        <source>&amp;Split view</source>
-        <translation>&amp;Разделить окно</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Add a split to the view</source>
-        <translation>Разделить текущее окно</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&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="3609"/>
+        <source>&amp;Split view</source>
+        <translation>&amp;Разделить окно</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Add a split to the view</source>
+        <translation>Разделить текущее окно</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&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="3624"/>
         <source>Arrange horizontally</source>
         <translation>Расположить окна горизонтально</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange &amp;horizontally</source>
-        <translation>Расположить окна &amp;горизонтально</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3613"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Расположить разделённые окна горизонтально</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3615"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&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="3624"/>
-        <source>Remove split</source>
-        <translation>Отменить разделение</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3624"/>
-        <source>&amp;Remove split</source>
-        <translation>&amp;Отменить разделение</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3629"/>
-        <source>Remove the current split</source>
-        <translation>Отменить текущее разделение</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
-        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Отменить разделение&lt;/b&gt;&lt;p&gt;Отмена текущего разделения.&lt;/p&gt;</translation>
+        <source>Arrange &amp;horizontally</source>
+        <translation>Расположить окна &amp;горизонтально</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3628"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Расположить разделённые окна горизонтально</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3630"/>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&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="3639"/>
-        <source>Next split</source>
-        <translation>Следующее разделение</translation>
+        <source>Remove split</source>
+        <translation>Отменить разделение</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>&amp;Next split</source>
-        <translation>&amp;Следующее разделение</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>Ctrl+Alt+N</source>
-        <comment>View|Next split</comment>
-        <translation>Ctrl+Alt+N</translation>
+        <source>&amp;Remove split</source>
+        <translation>&amp;Отменить разделение</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3644"/>
+        <source>Remove the current split</source>
+        <translation>Отменить текущее разделение</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&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="3654"/>
+        <source>Next split</source>
+        <translation>Следующее разделение</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>&amp;Next split</source>
+        <translation>&amp;Следующее разделение</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>Ctrl+Alt+N</source>
+        <comment>View|Next split</comment>
+        <translation>Ctrl+Alt+N</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3661"/>
         <source>Move to the next split</source>
         <translation>Перейти в следующее разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <location filename="../ViewManager/ViewManager.py" line="3663"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&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="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Previous split</source>
         <translation>Предыдущее разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>&amp;Previous split</source>
         <translation>&amp;Предыдущее разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3662"/>
+        <location filename="../ViewManager/ViewManager.py" line="3677"/>
         <source>Move to the previous split</source>
         <translation>Перейти в предыдущее разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3664"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&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="3708"/>
+        <location filename="../ViewManager/ViewManager.py" line="3723"/>
         <source>&amp;View</source>
         <translation>&amp;Вид</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <source>View</source>
         <translation>Вид</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3777"/>
+        <location filename="../ViewManager/ViewManager.py" line="3792"/>
         <source>Start Macro Recording</source>
         <translation>Начать запись макроса</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3771"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>S&amp;tart Macro Recording</source>
         <translation>&amp;Начать запись макроса</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&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="3791"/>
+        <location filename="../ViewManager/ViewManager.py" line="3806"/>
         <source>Stop Macro Recording</source>
         <translation>Закончить запись макроса</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3787"/>
+        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>Sto&amp;p Macro Recording</source>
         <translation>&amp;Закончить запись макроса</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&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="3805"/>
+        <location filename="../ViewManager/ViewManager.py" line="3820"/>
         <source>Run Macro</source>
         <translation>Выполнить макрос</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3801"/>
+        <location filename="../ViewManager/ViewManager.py" line="3816"/>
         <source>&amp;Run Macro</source>
         <translation>&amp;Выполнить макрос</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3807"/>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&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="3819"/>
+        <location filename="../ViewManager/ViewManager.py" line="3834"/>
         <source>Delete Macro</source>
         <translation>Удалить макрос</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <location filename="../ViewManager/ViewManager.py" line="3830"/>
         <source>&amp;Delete Macro</source>
         <translation>&amp;Удалить макрос</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3821"/>
+        <location filename="../ViewManager/ViewManager.py" line="3836"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&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="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3848"/>
         <source>Load Macro</source>
         <translation>Загрузить макрос</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3829"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Load Macro</source>
         <translation>&amp;Загрузить макрос</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3850"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&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="3847"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>Save Macro</source>
         <translation>Сохранить макрос</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3843"/>
+        <location filename="../ViewManager/ViewManager.py" line="3858"/>
         <source>&amp;Save Macro</source>
         <translation>&amp;Сохранить макрос</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3849"/>
+        <location filename="../ViewManager/ViewManager.py" line="3864"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&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="3865"/>
+        <location filename="../ViewManager/ViewManager.py" line="3880"/>
         <source>&amp;Macros</source>
         <translation>&amp;Макросы</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3891"/>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
         <source>Toggle Bookmark</source>
         <translation>Создать/Удалить закладку</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>&amp;Создать/Удалить закладку</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3893"/>
+        <location filename="../ViewManager/ViewManager.py" line="3908"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line 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="../ViewManager/ViewManager.py" line="3910"/>
+        <location filename="../ViewManager/ViewManager.py" line="3925"/>
         <source>Next Bookmark</source>
         <translation>Следующая закладка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>&amp;Next Bookmark</source>
         <translation>&amp;Следующая закладка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3912"/>
+        <location filename="../ViewManager/ViewManager.py" line="3927"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark 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="../ViewManager/ViewManager.py" line="3928"/>
+        <location filename="../ViewManager/ViewManager.py" line="3943"/>
         <source>Previous Bookmark</source>
         <translation>Предыдущая закладка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>&amp;Previous Bookmark</source>
         <translation>&amp;Предыдущая закладка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark 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="../ViewManager/ViewManager.py" line="3945"/>
+        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark 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="../ViewManager/ViewManager.py" line="3960"/>
         <source>Clear Bookmarks</source>
         <translation>Стереть закладки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>&amp;Стереть закладки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3947"/>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&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="3961"/>
+        <location filename="../ViewManager/ViewManager.py" line="3976"/>
         <source>Goto Syntax Error</source>
         <translation>Перейти к синтаксической ошибке</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3955"/>
+        <location filename="../ViewManager/ViewManager.py" line="3970"/>
         <source>&amp;Goto Syntax Error</source>
         <translation>&amp;Перейти к синтаксической ошибке</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3963"/>
+        <location filename="../ViewManager/ViewManager.py" line="3978"/>
         <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error 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="../ViewManager/ViewManager.py" line="3976"/>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
         <source>Clear Syntax Errors</source>
         <translation>Очистить синтаксические ошибки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3971"/>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
         <source>Clear &amp;Syntax Errors</source>
         <translation>Очистить синтаксические &amp;ошибки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3978"/>
-        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&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="3993"/>
+        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&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="4008"/>
         <source>Next warning message</source>
         <translation>Следующее предупреждение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3987"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&amp;Next warning message</source>
         <translation>&amp;Следующее предупреждение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <source>Previous warning message</source>
         <translation>Предыдущее предупреждение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4004"/>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Предыдущее предупреждение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4030"/>
+        <location filename="../ViewManager/ViewManager.py" line="4045"/>
         <source>Clear Warning Messages</source>
         <translation>Очистить предупреждения</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4023"/>
+        <location filename="../ViewManager/ViewManager.py" line="4038"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>&amp;Очистить предупреждения</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4046"/>
+        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>Next uncovered line</source>
         <translation>Следующая неохваченная строка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4040"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next uncovered line</source>
         <translation>&amp;Следующая неохваченная строка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4048"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&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="4065"/>
+        <location filename="../ViewManager/ViewManager.py" line="4080"/>
         <source>Previous uncovered line</source>
         <translation>Предыдущая неохваченная строка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
         <source>&amp;Previous uncovered line</source>
         <translation>&amp;Предыдущая неохваченная строка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4082"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&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="4083"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Next Task</source>
         <translation>Следующая задача</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4077"/>
+        <location filename="../ViewManager/ViewManager.py" line="4092"/>
         <source>&amp;Next Task</source>
         <translation>&amp;Следующая задача</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4085"/>
-        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&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="4100"/>
+        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&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="4115"/>
         <source>Previous Task</source>
         <translation>Предыдущая задача</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4093"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Previous Task</source>
         <translation>&amp;Предыдущая задача</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
+        <location filename="../ViewManager/ViewManager.py" line="4117"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&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="4156"/>
+        <location filename="../ViewManager/ViewManager.py" line="4171"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Закладки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4202"/>
+        <location filename="../ViewManager/ViewManager.py" line="4217"/>
         <source>Bookmarks</source>
         <translation>Закладки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4244"/>
+        <location filename="../ViewManager/ViewManager.py" line="4259"/>
         <source>Perform spell check of current editor</source>
         <translation>Проверить орфографию в текущем редакторе</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>Automatic spell checking</source>
         <translation>Автоматическая проверка орфографии</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>&amp;Automatic spell checking</source>
         <translation>&amp;Автоматическая проверка орфографии</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4262"/>
+        <location filename="../ViewManager/ViewManager.py" line="4277"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation>Разрешить/Запретить автоматическую проверку орфографии</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&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="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4346"/>
         <source>Spelling</source>
         <translation>Проверка орфографии</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4354"/>
+        <location filename="../ViewManager/ViewManager.py" line="4369"/>
         <source>Open files</source>
         <translation>Открыть файлы</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>File Modified</source>
         <translation>Файл изменён</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;В файле &lt;b&gt;{0}&lt;/b&gt; есть несохранённые изменения.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4730"/>
+        <location filename="../ViewManager/ViewManager.py" line="4745"/>
         <source>Line: {0:5}</source>
         <translation>Строка: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4737"/>
+        <location filename="../ViewManager/ViewManager.py" line="4752"/>
         <source>Pos: {0:5}</source>
         <translation>Позиция: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5155"/>
+        <location filename="../ViewManager/ViewManager.py" line="5170"/>
         <source>&amp;Clear</source>
         <translation>&amp;Очистить</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5149"/>
+        <location filename="../ViewManager/ViewManager.py" line="5164"/>
         <source>&amp;Add</source>
         <translation>&amp;Добавить</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5152"/>
+        <location filename="../ViewManager/ViewManager.py" line="5167"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Правка...</translation>
     </message>
@@ -79019,17 +79019,17 @@
         <translation>&lt;b&gt;Перейти к следующему методу или классу&lt;/b&gt;&lt;p&gt;Переход к следующему объявлению метода или класса и подсветка его имени.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <location filename="../ViewManager/ViewManager.py" line="3687"/>
         <source>Preview</source>
         <translation>Предварительный просмотр</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3677"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>Preview the current file in the web browser</source>
         <translation>Предварительный просмотр текущего файла в web браузере</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Предварительный просмотр&lt;/b&gt;&lt;p&gt;Предварительный просмотр текущего файла в web браузере.&lt;/p&gt;</translation>
     </message>
@@ -79443,97 +79443,97 @@
         <translation>Сохранить &amp;всё</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4117"/>
+        <location filename="../ViewManager/ViewManager.py" line="4132"/>
         <source>Next Change</source>
         <translation>Следующее изменение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4111"/>
+        <location filename="../ViewManager/ViewManager.py" line="4126"/>
         <source>&amp;Next Change</source>
         <translation>&amp;Следующее изменение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4119"/>
+        <location filename="../ViewManager/ViewManager.py" line="4134"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&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="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4150"/>
         <source>Previous Change</source>
         <translation>Предыдущее изменение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4128"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&amp;Previous Change</source>
         <translation>&amp;Предыдущее изменение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4137"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&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="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check spelling</source>
         <translation>Проверка орфографии</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check &amp;spelling...</source>
         <translation>Проверка &amp;орфографии...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4261"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check 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="../ViewManager/ViewManager.py" line="4295"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Edit Dictionary</source>
         <translation>Редактировать словарь</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4297"/>
+        <location filename="../ViewManager/ViewManager.py" line="4312"/>
         <source>Project Word List</source>
         <translation>Словарь проекта</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4300"/>
+        <location filename="../ViewManager/ViewManager.py" line="4315"/>
         <source>Project Exception List</source>
         <translation>Список исключений проекта</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4305"/>
+        <location filename="../ViewManager/ViewManager.py" line="4320"/>
         <source>User Word List</source>
         <translation>Словарь пользователя</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4323"/>
         <source>User Exception List</source>
         <translation>Список исключений пользователя</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>Edit Spelling Dictionary</source>
         <translation>Редактировать орфографический словарь</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6356"/>
+        <location filename="../ViewManager/ViewManager.py" line="6379"/>
         <source>Editing {0}</source>
         <translation>Редактирование {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6341"/>
+        <location filename="../ViewManager/ViewManager.py" line="6364"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно прочитать файл словаря&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6368"/>
+        <location filename="../ViewManager/ViewManager.py" line="6391"/>
         <source>&lt;p&gt;The spelling dictionary 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="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation>Файл словаря успешно сохранён.</translation>
     </message>
@@ -79653,62 +79653,62 @@
         <translation>&lt;b&gt;Сортировка&lt;/b&gt;&lt;p&gt;Сортировать строки в прямоугольной выборке, принимая во внимание только выделенную часть и игнорируя пробелы.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4757"/>
+        <location filename="../ViewManager/ViewManager.py" line="4772"/>
         <source>Language: {0}</source>
         <translation>Язык: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4765"/>
+        <location filename="../ViewManager/ViewManager.py" line="4780"/>
         <source>EOL Mode: {0}</source>
         <translation>Режим конца строк: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New Document View</source>
         <translation>Новое окно для документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New &amp;Document View</source>
         <translation>Новое окно для &amp;документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3561"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Open a new view of the current document</source>
         <translation>Открыть новое окно для текущего документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&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="3573"/>
+        <location filename="../ViewManager/ViewManager.py" line="3588"/>
         <source>New Document View (with new split)</source>
         <translation>Новое окно для документа (в новом разделе)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3580"/>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
         <source>Open a new view of the current document in a new split</source>
         <translation>Открыть новое окно для текущего документа в новом разделе</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3598"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&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="3995"/>
+        <location filename="../ViewManager/ViewManager.py" line="4010"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Следующее предупреждение&lt;/b&gt;&lt;p&gt;Переход к следующей строке текущего редактора, имеющей предупреждение pyflakes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
+        <location filename="../ViewManager/ViewManager.py" line="4029"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Предыдущее предупреждение&lt;/b&gt;&lt;p&gt;Переход к предыдущей строке текущего редактора, имеющей предупреждение pyflakes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4032"/>
+        <location filename="../ViewManager/ViewManager.py" line="4047"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Очистить предупреждения&lt;/b&gt;&lt;p&gt;Очистить предупреждения от pyflakes во всех окнах редактора.&lt;/p&gt;</translation>
     </message>
@@ -79917,6 +79917,21 @@
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&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="3544"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3540"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/i18n/eric6_tr.ts	Fri Dec 22 16:07:49 2017 +0100
+++ b/i18n/eric6_tr.ts	Fri Dec 22 16:21:40 2017 +0100
@@ -112,22 +112,22 @@
         <translation>İşlemler</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Learn more about writing rules...</source>
         <translation>Yazım kuralları hakkında daha fazla bilgi...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="153"/>
         <source>Update Subscription</source>
         <translation>Üyeliği Güncelle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Browse Subscriptions...</source>
         <translation>Üyeliğe Gözat...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="230"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="236"/>
         <source>Remove Subscription</source>
         <translation>Üyeliği İpta Et</translation>
     </message>
@@ -137,42 +137,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="48"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="50"/>
         <source>Search...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="130"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
         <source>Add Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="132"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="137"/>
         <source>Remove Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
         <source>Disable Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="145"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="150"/>
         <source>Enable Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="151"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
         <source>Update All Subscriptions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="220"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="226"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="227"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -220,7 +220,7 @@
         <translation type="unfinished">&amp;Sil</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="37"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="38"/>
         <source>Enter host to be added...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -228,17 +228,17 @@
 <context>
     <name>AdBlockIcon</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="38"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="39"/>
         <source>AdBlock lets you block unwanted content on web pages.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="72"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="75"/>
         <source>Disable AdBlock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="77"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="80"/>
         <source>Enable AdBlock</source>
         <translation type="unfinished">AdBlock&apos;u etkinleştir</translation>
     </message>
@@ -258,27 +258,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="108"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="112"/>
         <source>AdBlock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="84"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="87"/>
         <source>Remove AdBlock Exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="89"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="92"/>
         <source>Add AdBlock Exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="93"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="96"/>
         <source>AdBlock Exceptions...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="97"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="100"/>
         <source>AdBlock Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -286,17 +286,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="208"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="221"/>
         <source>Custom Rules</source>
         <translation>Özel Kurallar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>Subscribe?</source>
         <translation type="unfinished">Üye olunacak mı?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Bu Bloğun üyeliği yahılacak mı?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -304,7 +304,7 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>Load subscription rules</source>
         <translation>Üyelik kuralları yükleniyor</translation>
     </message>
@@ -314,17 +314,17 @@
         <translation>&apos;{0}&apos; dosyasına okuma blokesini kaldır.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>Downloading subscription rules</source>
         <translation>Üyelik kuralları indiriliyor</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="387"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="392"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Üyelik kuralları indirilemiyor.&lt;/p&gt;&lt;p&gt;Hatar: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="405"/>
         <source>Got empty subscription rules.</source>
         <translation>Boş üyelik kuralları alındı.</translation>
     </message>
@@ -334,27 +334,27 @@
         <translation>&apos;{0}&apos; dosyasına yazma blokesini kaldır.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Saving subscription rules</source>
         <translation>Üyelik kurallarını kaydediliyor</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="280"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="286"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -362,27 +362,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Add Custom Rule</source>
         <translation type="unfinished">Özel Kural Ekle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Write your rule here:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="161"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="165"/>
         <source>Add Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="163"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="167"/>
         <source>Remove Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="215"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="220"/>
         <source>{0} (recently updated)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7439,28 +7439,28 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="112"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="113"/>
         <source>Invalid response received from DeepL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="115"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="116"/>
         <source>DeepL reported an error.
 Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="119"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="120"/>
         <source>DeepL call returned an unknown result</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="123"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="124"/>
         <source>Unsupported language code given (source: {0}, target: {1}).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="130"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="131"/>
         <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8012,7 +8012,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>.desktop Wizard</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8347,22 +8347,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10256,7 +10256,7 @@
         <translation>Tüm seçimi iptal et</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7378"/>
+        <location filename="../QScintilla/Editor.py" line="7383"/>
         <source>Check spelling...</source>
         <translation>Yazım Kontrolü...</translation>
     </message>
@@ -10496,7 +10496,7 @@
         <translation>Bekleme noktasını düzenle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5290"/>
+        <location filename="../QScintilla/Editor.py" line="5295"/>
         <source>Enable breakpoint</source>
         <translation>Beklemenoktasını etkinleştir</translation>
     </message>
@@ -10676,237 +10676,237 @@
         <translation>Otomatiktamamlama uygun değil çünkü bu otomatiktamamlama kaynağı değil.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5293"/>
+        <location filename="../QScintilla/Editor.py" line="5298"/>
         <source>Disable breakpoint</source>
         <translation>Durmanoktasını iptal et</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Code Coverage</source>
         <translation>Kod Koruyucu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Please select a coverage file</source>
         <translation>Lütfen bir koruyucu dosya seçiniz</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Kodların Dipnotunu Göster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5723"/>
+        <location filename="../QScintilla/Editor.py" line="5728"/>
         <source>All lines have been covered.</source>
         <translation>Tüm satırlar korumaya alındı.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>There is no coverage file available.</source>
         <translation>Hazırda koruma dosyası yok.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Profile Data</source>
         <translation>Veri Kesiti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Please select a profile file</source>
         <translation>Lütfen kesit dosyasını seçiniz</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>Syntax Error</source>
         <translation>Sözdizimi Hatası</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>No syntax error message available.</source>
         <translation>Uygun söz dizimi hata mesajı yok.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Macro Name</source>
         <translation>Makro Adı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Select a macro name:</source>
         <translation>Bir makro ismi seç:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6348"/>
+        <location filename="../QScintilla/Editor.py" line="6353"/>
         <source>Load macro file</source>
         <translation>Makro dosyasını yükle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Macro files (*.macro)</source>
         <translation>Makro dosyaları (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <source>Error loading macro</source>
         <translation>Makronun yüklenmesinde hata</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6362"/>
+        <location filename="../QScintilla/Editor.py" line="6367"/>
         <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="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <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="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Save macro file</source>
         <translation>Makro Dosyasını Kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <source>Save macro</source>
         <translation>Makro Kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <source>Error saving macro</source>
         <translation>Makronun kaydedilmesinde hata</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <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="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Start Macro Recording</source>
         <translation>Makro Kaydı Başladı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <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="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Macro Recording</source>
         <translation>Makro Kaydediliyor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Enter name of the macro:</source>
         <translation>Makronun ismini gir:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6601"/>
+        <location filename="../QScintilla/Editor.py" line="6606"/>
         <source>File changed</source>
         <translation>Dosya değiştirilmiş</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6770"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <source>Drop Error</source>
         <translation>Düşme hatası</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <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="6926"/>
+        <location filename="../QScintilla/Editor.py" line="6931"/>
         <source>Resources</source>
         <translation>Kaynaklar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6928"/>
+        <location filename="../QScintilla/Editor.py" line="6933"/>
         <source>Add file...</source>
         <translation>Dosya ekle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6930"/>
-        <source>Add files...</source>
-        <translation>Dosyaları ekle...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6932"/>
-        <source>Add aliased file...</source>
-        <translation>Kısaltmalar dosyasına ekle...</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6935"/>
+        <source>Add files...</source>
+        <translation>Dosyaları ekle...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6937"/>
+        <source>Add aliased file...</source>
+        <translation>Kısaltmalar dosyasına ekle...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6940"/>
         <source>Add localized resource...</source>
         <translation>Yaral kaynak ekle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6939"/>
+        <location filename="../QScintilla/Editor.py" line="6944"/>
         <source>Add resource frame</source>
         <translation>Çerçeve kaynağı ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6958"/>
+        <location filename="../QScintilla/Editor.py" line="6963"/>
         <source>Add file resource</source>
         <translation>Dosya kaynağını ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6974"/>
+        <location filename="../QScintilla/Editor.py" line="6979"/>
         <source>Add file resources</source>
         <translation>Dosya kaynaklarını ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <source>Add aliased file resource</source>
         <translation>Kısaltmalar dosyası kaynağını ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <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="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Package Diagram</source>
         <translation>Paket Şeması</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Include class attributes?</source>
         <translation>Sınıf nitelikleri dahil edilsin mi?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Imports Diagram</source>
         <translation>Şemayı İçe Aktar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <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="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Application Diagram</source>
         <translation>Uygulama Şeması</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Include module names?</source>
         <translation>Modül isimleri dahil edilsin mi?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7386"/>
         <source>Add to dictionary</source>
         <translation>Sözlüğe ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7383"/>
+        <location filename="../QScintilla/Editor.py" line="7388"/>
         <source>Ignore All</source>
         <translation>Hepsini Yoksay</translation>
     </message>
@@ -10916,22 +10916,22 @@
         <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="../QScintilla/Editor.py" line="6259"/>
+        <location filename="../QScintilla/Editor.py" line="6264"/>
         <source>Warning: {0}</source>
         <translation>Dikkat: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6266"/>
+        <location filename="../QScintilla/Editor.py" line="6271"/>
         <source>Error: {0}</source>
         <translation>Hata: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <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="6597"/>
+        <location filename="../QScintilla/Editor.py" line="6602"/>
         <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10956,27 +10956,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>Warning</source>
         <translation type="unfinished">Dikkat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6256"/>
+        <location filename="../QScintilla/Editor.py" line="6261"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11001,7 +11001,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6591"/>
+        <location filename="../QScintilla/Editor.py" line="6596"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Eric5 ile açıldıktan sonra &lt;b&gt;{0}&lt;/b&gt; dosyasında değişiklik olmuş. Yeniden açılsın mı?&lt;/p&gt; {0}?} {6.?}</translation>
     </message>
@@ -11016,32 +11016,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47554,7 +47554,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="886"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="892"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47639,7 +47639,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="859"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="865"/>
         <source>Upgrade Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47659,7 +47659,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Uninstall Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47844,7 +47844,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="746"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="752"/>
         <source>Select Python Executable</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47859,17 +47859,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="729"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="735"/>
         <source>&lt;Default&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Upgrade pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Select pip Executable:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47879,27 +47879,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="757"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="763"/>
         <source>Repair PIP</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="821"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="827"/>
         <source>You are trying to upgrade PyQt packages. This will not work for the current instance of Python ({0}). Do you want to continue?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="907"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="913"/>
         <source>Install Packages from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Do you really want to uninstall these packages?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="982"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="988"/>
         <source>Uninstall Packages from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61397,19 +61397,19 @@
         <translation>stdhata: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1638"/>
+        <location filename="../QScintilla/Shell.py" line="1678"/>
         <source>Shell language &quot;{0}&quot; not supported.
 </source>
         <translation>Kabuk dili &quot;{0}&quot; desteklenmiyor.
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <source>Drop Error</source>
         <translation>Düşme hatası</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <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>
@@ -79128,8 +79128,8 @@
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3493"/>
-        <source>Toggle &amp;all folds</source>
-        <translation>Tüm açk&amp;apaları kapat</translation>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished">Tüm açk&amp;apaları kapat</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3499"/>
@@ -79167,519 +79167,519 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3561"/>
         <source>Remove all highlights</source>
         <translation>Bütün parlatılmış alanları kaldır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
-        <source>Split view</source>
-        <translation>Bölünmüş görünüm</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
-        <source>&amp;Split view</source>
-        <translation>Bölünmü&amp;ş görünüm</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Add a split to the view</source>
-        <translation>Görünüme yeni bir ayrım ekle</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange horizontally</source>
-        <translation>Yatay düzenleme</translation>
+        <source>Split view</source>
+        <translation>Bölünmüş görünüm</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange &amp;horizontally</source>
-        <translation>Yatay &amp;düzenleme</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3613"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Bölünmüş görünümleri yatay olarak düzenle</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3615"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Yatay ayarlama&lt;/b&gt;&lt;p&gt;Bölünmüş görünümler yatay olarak düzenlenir.&lt;/p&gt;</translation>
+        <source>&amp;Split view</source>
+        <translation>Bölünmü&amp;ş görünüm</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Add a split to the view</source>
+        <translation>Görünüme yeni bir ayrım ekle</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3624"/>
-        <source>Remove split</source>
-        <translation>Bölümlemeyi kaldır</translation>
+        <source>Arrange horizontally</source>
+        <translation>Yatay düzenleme</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3624"/>
-        <source>&amp;Remove split</source>
-        <translation>Bölümlemeyi kaldı&amp;r</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3629"/>
-        <source>Remove the current split</source>
-        <translation>Geçerli ayrımı kaldır</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
-        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
+        <source>Arrange &amp;horizontally</source>
+        <translation>Yatay &amp;düzenleme</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3628"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Bölünmüş görünümleri yatay olarak düzenle</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3630"/>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Yatay ayarlama&lt;/b&gt;&lt;p&gt;Bölünmüş görünümler yatay olarak düzenlenir.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>Next split</source>
-        <translation>Sonraki ayrım</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>&amp;Next split</source>
-        <translation>So&amp;nraki ayrım</translation>
+        <source>Remove split</source>
+        <translation>Bölümlemeyi kaldır</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>Ctrl+Alt+N</source>
-        <comment>View|Next split</comment>
-        <translation>Ctrl+Alt+N</translation>
+        <source>&amp;Remove split</source>
+        <translation>Bölümlemeyi kaldı&amp;r</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3644"/>
+        <source>Remove the current split</source>
+        <translation>Geçerli ayrımı kaldır</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>Next split</source>
+        <translation>Sonraki ayrım</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>&amp;Next split</source>
+        <translation>So&amp;nraki ayrım</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>Ctrl+Alt+N</source>
+        <comment>View|Next split</comment>
+        <translation>Ctrl+Alt+N</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3661"/>
         <source>Move to the next split</source>
         <translation>Sonraki ayrıma taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <location filename="../ViewManager/ViewManager.py" line="3663"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sonraki ayrım&lt;/b&gt;&lt;p&gt;Sonraki ayrıma götürür.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Previous split</source>
         <translation>Önceki ayrım</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>&amp;Previous split</source>
         <translation>Önceki a&amp;yrım</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3662"/>
+        <location filename="../ViewManager/ViewManager.py" line="3677"/>
         <source>Move to the previous split</source>
         <translation>Önceki ayrıma taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3664"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3708"/>
+        <location filename="../ViewManager/ViewManager.py" line="3723"/>
         <source>&amp;View</source>
         <translation>&amp;Görünüm</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <source>View</source>
         <translation>Görünüm</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3777"/>
+        <location filename="../ViewManager/ViewManager.py" line="3792"/>
         <source>Start Macro Recording</source>
         <translation>Makro Kaydı Başladı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3771"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>S&amp;tart Macro Recording</source>
         <translation>Makro Kaydını Başla&amp;t</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
+        <location filename="../ViewManager/ViewManager.py" line="3806"/>
         <source>Stop Macro Recording</source>
         <translation>Makro Kaydetmeyi Durdur</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3787"/>
+        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>Sto&amp;p Macro Recording</source>
         <translation>Makro Kaydetmeyi D&amp;urdur</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <location filename="../ViewManager/ViewManager.py" line="3820"/>
         <source>Run Macro</source>
         <translation>Makroyu çalıştır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3801"/>
+        <location filename="../ViewManager/ViewManager.py" line="3816"/>
         <source>&amp;Run Macro</source>
         <translation>Mak&amp;royu çalıştır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3807"/>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makroyu Çalıştır&lt;/b&gt;&lt;p&gt;Daha önceden kaydedilmiş düzenleyici makrosu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3819"/>
+        <location filename="../ViewManager/ViewManager.py" line="3834"/>
         <source>Delete Macro</source>
         <translation>Makroyu Sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <location filename="../ViewManager/ViewManager.py" line="3830"/>
         <source>&amp;Delete Macro</source>
         <translation>Makroy&amp;u Sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3821"/>
+        <location filename="../ViewManager/ViewManager.py" line="3836"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makroyu Sil&lt;/b&gt;&lt;p&gt;Birönce kaydedilen düzenleyici makrosunu sil.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3848"/>
         <source>Load Macro</source>
         <translation>Makroyu Yükle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3829"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Load Macro</source>
         <translation>Makroyu Yük&amp;le</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3850"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3847"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>Save Macro</source>
         <translation>Makroyu Kaydet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3843"/>
+        <location filename="../ViewManager/ViewManager.py" line="3858"/>
         <source>&amp;Save Macro</source>
         <translation>Ma&amp;kroyu Kaydet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3849"/>
+        <location filename="../ViewManager/ViewManager.py" line="3864"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makro Kaydet&lt;/b&gt;&lt;p&gt;Önceden kayıt edilen makroyu bir dosyada sakla.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3865"/>
+        <location filename="../ViewManager/ViewManager.py" line="3880"/>
         <source>&amp;Macros</source>
         <translation>&amp;Makrolar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3891"/>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
         <source>Toggle Bookmark</source>
         <translation>Yerimi Açkapa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>Yerimi A&amp;çkapa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3893"/>
+        <location filename="../ViewManager/ViewManager.py" line="3908"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3910"/>
+        <location filename="../ViewManager/ViewManager.py" line="3925"/>
         <source>Next Bookmark</source>
         <translation>Sonraki Yerimi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>&amp;Next Bookmark</source>
         <translation>So&amp;nraki Yerimi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3912"/>
+        <location filename="../ViewManager/ViewManager.py" line="3927"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3928"/>
+        <location filename="../ViewManager/ViewManager.py" line="3943"/>
         <source>Previous Bookmark</source>
         <translation>Önceki Yerimi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>&amp;Previous Bookmark</source>
         <translation>Önceki Yeri&amp;mi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3945"/>
+        <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
         <source>Clear Bookmarks</source>
         <translation>Yerimlerini Temizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>Yerimlerini &amp;Temizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3947"/>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Yerimlerini Temizle&lt;/b&gt;&lt;p&gt;Tüm düzenleyicilerin yerimlerini temizle&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3961"/>
-        <source>Goto Syntax Error</source>
-        <translation>Sözdizimi Hatasına Git</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3955"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>Sözdizimi Hatasına &amp;Git</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3963"/>
-        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Sözdizimi Hatalarını Temizle</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3971"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>&amp;Sözdizimi Hatalarını Temizli</translation>
+        <source>Goto Syntax Error</source>
+        <translation>Sözdizimi Hatasına Git</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3970"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>Sözdizimi Hatasına &amp;Git</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
-        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Sözdizimi Hatalarını Temizle&lt;/b&gt;&lt;p&gt;Tüm düsenleyicilerdeki sözdizimi hatalarını temizle.&lt;/p&gt;</translation>
+        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Sözdizimi Hatalarını Temizle</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>&amp;Sözdizimi Hatalarını Temizli</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3993"/>
+        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Sözdizimi Hatalarını Temizle&lt;/b&gt;&lt;p&gt;Tüm düsenleyicilerdeki sözdizimi hatalarını temizle.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4008"/>
         <source>Next warning message</source>
         <translation>Sonraki uyarı mesajı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3987"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&amp;Next warning message</source>
         <translation>So&amp;nraki uyarı mesajı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <source>Previous warning message</source>
         <translation>Önceki uyarı mesajı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4004"/>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Önceki uyarı mesajı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4030"/>
+        <location filename="../ViewManager/ViewManager.py" line="4045"/>
         <source>Clear Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4023"/>
+        <location filename="../ViewManager/ViewManager.py" line="4038"/>
         <source>Clear &amp;Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4046"/>
+        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>Next uncovered line</source>
         <translation>Sonraki kapanmamış satır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4040"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next uncovered line</source>
         <translation>So&amp;nraki kapanmamış satır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4048"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4065"/>
+        <location filename="../ViewManager/ViewManager.py" line="4080"/>
         <source>Previous uncovered line</source>
         <translation>Önceki kaplanmamış satır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
         <source>&amp;Previous uncovered line</source>
         <translation>&amp;Önceki kaplanmamış satır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4082"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4083"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Next Task</source>
         <translation>Sonraki Görev</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4077"/>
+        <location filename="../ViewManager/ViewManager.py" line="4092"/>
         <source>&amp;Next Task</source>
         <translation>So&amp;nraki Görev</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4085"/>
-        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Sonraki Görev &lt;/b&gt;&lt;p&gt;Geçerli düzenleyicideki bir sonraki satıra görev almak için git.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Sonraki Görev &lt;/b&gt;&lt;p&gt;Geçerli düzenleyicideki bir sonraki satıra görev almak için git.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4115"/>
         <source>Previous Task</source>
         <translation>Önceki Görev</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4093"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Previous Task</source>
         <translation>Ön&amp;ceki Görev</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
+        <location filename="../ViewManager/ViewManager.py" line="4117"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4156"/>
+        <location filename="../ViewManager/ViewManager.py" line="4171"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Yerimleri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4202"/>
+        <location filename="../ViewManager/ViewManager.py" line="4217"/>
         <source>Bookmarks</source>
         <translation>Yerimleri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4244"/>
+        <location filename="../ViewManager/ViewManager.py" line="4259"/>
         <source>Perform spell check of current editor</source>
         <translation>Geçerli düzenleyicide yazım denetimini gerçekleştir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>Automatic spell checking</source>
         <translation>Otomatik yazım kontrolü</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Otom&amp;atik yazım kontrolü</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4262"/>
+        <location filename="../ViewManager/ViewManager.py" line="4277"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Otomatik metin kontrolü&lt;/b&gt;&lt;p&gt;Tüm düzenleyicilerdeki otomatik metin kontrolünü aktifleştir yada etkinliğini kaldır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4346"/>
         <source>Spelling</source>
         <translation>Yazım kontolü yapılıyor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4354"/>
+        <location filename="../ViewManager/ViewManager.py" line="4369"/>
         <source>Open files</source>
         <translation>Dosyaları aç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>File Modified</source>
         <translation>Dosya Değiştirildi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;dosyasında kaydedilmemiş değişiklikler var.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4730"/>
+        <location filename="../ViewManager/ViewManager.py" line="4745"/>
         <source>Line: {0:5}</source>
         <translation>Satır: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4737"/>
+        <location filename="../ViewManager/ViewManager.py" line="4752"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5155"/>
+        <location filename="../ViewManager/ViewManager.py" line="5170"/>
         <source>&amp;Clear</source>
         <translation>T&amp;emizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5149"/>
+        <location filename="../ViewManager/ViewManager.py" line="5164"/>
         <source>&amp;Add</source>
         <translation>&amp;Ekle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5152"/>
+        <location filename="../ViewManager/ViewManager.py" line="5167"/>
         <source>&amp;Edit...</source>
         <translation>Düz&amp;en...</translation>
     </message>
@@ -79763,17 +79763,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <location filename="../ViewManager/ViewManager.py" line="3687"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3677"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>Preview the current file in the web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80187,97 +80187,97 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4117"/>
+        <location filename="../ViewManager/ViewManager.py" line="4132"/>
         <source>Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4111"/>
+        <location filename="../ViewManager/ViewManager.py" line="4126"/>
         <source>&amp;Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4119"/>
+        <location filename="../ViewManager/ViewManager.py" line="4134"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4150"/>
         <source>Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4128"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&amp;Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4137"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check spelling</source>
         <translation type="unfinished">Yazım denetimi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4261"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4295"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Edit Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4297"/>
+        <location filename="../ViewManager/ViewManager.py" line="4312"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4300"/>
+        <location filename="../ViewManager/ViewManager.py" line="4315"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4305"/>
+        <location filename="../ViewManager/ViewManager.py" line="4320"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4323"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6356"/>
+        <location filename="../ViewManager/ViewManager.py" line="6379"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6341"/>
+        <location filename="../ViewManager/ViewManager.py" line="6364"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6368"/>
+        <location filename="../ViewManager/ViewManager.py" line="6391"/>
         <source>&lt;p&gt;The spelling dictionary 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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80397,62 +80397,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4757"/>
+        <location filename="../ViewManager/ViewManager.py" line="4772"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4765"/>
+        <location filename="../ViewManager/ViewManager.py" line="4780"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New &amp;Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3561"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Open a new view of the current document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3573"/>
+        <location filename="../ViewManager/ViewManager.py" line="3588"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3580"/>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3598"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3995"/>
+        <location filename="../ViewManager/ViewManager.py" line="4010"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
+        <location filename="../ViewManager/ViewManager.py" line="4029"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4032"/>
+        <location filename="../ViewManager/ViewManager.py" line="4047"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80610,6 +80610,21 @@
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3540"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/i18n/eric6_zh_CN.ts	Fri Dec 22 16:07:49 2017 +0100
+++ b/i18n/eric6_zh_CN.ts	Fri Dec 22 16:21:40 2017 +0100
@@ -107,22 +107,22 @@
         <translation>动作</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Learn more about writing rules...</source>
         <translation>了解更多有关书写规则的信息…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="153"/>
         <source>Update Subscription</source>
         <translation>更新订阅组</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Browse Subscriptions...</source>
         <translation>浏览订阅组…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="230"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="236"/>
         <source>Remove Subscription</source>
         <translation>移除订阅组</translation>
     </message>
@@ -137,42 +137,42 @@
         <translation>输入更新周期(1 至 14 天)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="48"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="50"/>
         <source>Search...</source>
         <translation>搜索…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="130"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="135"/>
         <source>Add Rule</source>
         <translation>添加规则</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="132"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="137"/>
         <source>Remove Rule</source>
         <translation>移除规则</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="148"/>
         <source>Disable Subscription</source>
         <translation>禁用订阅组</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="145"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="150"/>
         <source>Enable Subscription</source>
         <translation>启用订阅组</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="151"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
         <source>Update All Subscriptions</source>
         <translation>更新所有订阅组</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="220"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="226"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation>&lt;p&gt;确定要移除订阅组 &lt;b&gt;{0}&lt;/b&gt; 以及所有依赖它的其它订阅组吗?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="227"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
         <source>&lt;p&gt;Do you really want to remove subscription &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>
@@ -220,7 +220,7 @@
         <translation>删除(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="37"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockExceptionsDialog.py" line="38"/>
         <source>Enter host to be added...</source>
         <translation>输入要添加的主机…</translation>
     </message>
@@ -228,17 +228,17 @@
 <context>
     <name>AdBlockIcon</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="38"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="39"/>
         <source>AdBlock lets you block unwanted content on web pages.</source>
         <translation>AdBlock 允许你拦截网页上不想要的内容。</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="72"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="75"/>
         <source>Disable AdBlock</source>
         <translation>禁用 AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="77"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="80"/>
         <source>Enable AdBlock</source>
         <translation>启用 AdBlock</translation>
     </message>
@@ -258,27 +258,27 @@
         <translation>没有被拦截的内容</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="108"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="112"/>
         <source>AdBlock</source>
         <translation>AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="84"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="87"/>
         <source>Remove AdBlock Exception</source>
         <translation>移除 AdBlock 例外</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="89"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="92"/>
         <source>Add AdBlock Exception</source>
         <translation>添加 AdBlock 例外</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="93"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="96"/>
         <source>AdBlock Exceptions...</source>
         <translation>AdBlock 例外…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="97"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockIcon.py" line="100"/>
         <source>AdBlock Configuration...</source>
         <translation>AdBlock 配置…</translation>
     </message>
@@ -286,17 +286,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="208"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="221"/>
         <source>Custom Rules</source>
         <translation>自定义规则</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>Subscribe?</source>
         <translation type="unfinished">订阅?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="305"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="323"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;订阅这个 AdBlock 订阅组?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -304,22 +304,22 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>Load subscription rules</source>
         <translation>载入订阅组规则</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>Downloading subscription rules</source>
         <translation>正在下载订阅组规则</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="405"/>
         <source>Got empty subscription rules.</source>
         <translation>得到的订阅组规则为空。</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Saving subscription rules</source>
         <translation>正在保存订阅组规则</translation>
     </message>
@@ -329,7 +329,7 @@
         <translation>无法打开 adblock 文件“{0}”以读取数据。</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="387"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="392"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;订阅组规则无法下载。&lt;/p&gt;&lt;p&gt;错误:{0}&lt;/p&gt;</translation>
     </message>
@@ -339,22 +339,22 @@
         <translation>无法打开 adblock 文件“{0}”以写入数据。</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="290"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="296"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation>AdBlock 文件“{0}”不以 [Adblock 开头。</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="486"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="493"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation>&lt;p&gt;AdBlock 订阅组 &lt;b&gt;{0}&lt;/b&gt; 的校验和错误。&lt;br/&gt;原本得到:{1}&lt;br/&gt;计算值:{2}&lt;br/&gt;仍然使用吗?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="280"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="286"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="509"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="516"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -362,27 +362,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Add Custom Rule</source>
         <translation>添加自定义规则</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="124"/>
         <source>Write your rule here:</source>
         <translation>在这里写入您的规则:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="161"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="165"/>
         <source>Add Rule</source>
         <translation>添加规则</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="163"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="167"/>
         <source>Remove Rule</source>
         <translation>移除规则</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="215"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="220"/>
         <source>{0} (recently updated)</source>
         <translation>{0}(最近更新)</translation>
     </message>
@@ -7447,28 +7447,28 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="112"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="113"/>
         <source>Invalid response received from DeepL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="115"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="116"/>
         <source>DeepL reported an error.
 Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="119"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="120"/>
         <source>DeepL call returned an unknown result</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="123"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="124"/>
         <source>Unsupported language code given (source: {0}, target: {1}).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="130"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/DeepLEngine.py" line="131"/>
         <source>&lt;p&gt;No translation found&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8022,7 +8022,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>.desktop Wizard</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8357,22 +8357,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="83"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="82"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="315"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10246,7 +10246,7 @@
         <translation>全部取消选择</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7378"/>
+        <location filename="../QScintilla/Editor.py" line="7383"/>
         <source>Check spelling...</source>
         <translation>正在进行拼写检查…</translation>
     </message>
@@ -10481,7 +10481,7 @@
         <translation>编辑断点…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5290"/>
+        <location filename="../QScintilla/Editor.py" line="5295"/>
         <source>Enable breakpoint</source>
         <translation>允许断点</translation>
     </message>
@@ -10616,207 +10616,207 @@
         <translation>自动完成无效,没有设定自动完成源。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5293"/>
+        <location filename="../QScintilla/Editor.py" line="5298"/>
         <source>Disable breakpoint</source>
         <translation>去除断点</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Code Coverage</source>
         <translation>代码覆盖率</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5667"/>
+        <location filename="../QScintilla/Editor.py" line="5672"/>
         <source>Please select a coverage file</source>
         <translation>请选择一个覆盖率文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>Show Code Coverage Annotations</source>
         <translation>显示代码覆盖率注解</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5723"/>
+        <location filename="../QScintilla/Editor.py" line="5728"/>
         <source>All lines have been covered.</source>
         <translation>所有行均被已覆盖。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5730"/>
+        <location filename="../QScintilla/Editor.py" line="5735"/>
         <source>There is no coverage file available.</source>
         <translation>没有有效的覆盖率文件。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Profile Data</source>
         <translation>剖析数据</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5845"/>
+        <location filename="../QScintilla/Editor.py" line="5850"/>
         <source>Please select a profile file</source>
         <translation>请选择一个剖析文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>Syntax Error</source>
         <translation>语法错误</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6005"/>
+        <location filename="../QScintilla/Editor.py" line="6010"/>
         <source>No syntax error message available.</source>
         <translation>语法错误消息无效。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Macro Name</source>
         <translation>宏名称</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6320"/>
+        <location filename="../QScintilla/Editor.py" line="6325"/>
         <source>Select a macro name:</source>
         <translation>选择一个宏名称:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6348"/>
+        <location filename="../QScintilla/Editor.py" line="6353"/>
         <source>Load macro file</source>
         <translation>输入宏文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Macro files (*.macro)</source>
         <translation>宏文件 (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <source>Error loading macro</source>
         <translation>载入宏文件出错</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6391"/>
+        <location filename="../QScintilla/Editor.py" line="6396"/>
         <source>Save macro file</source>
         <translation>保存宏文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <source>Save macro</source>
         <translation>保存宏</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <source>Error saving macro</source>
         <translation>保存宏出错</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Start Macro Recording</source>
         <translation>开始宏录制</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6437"/>
+        <location filename="../QScintilla/Editor.py" line="6442"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>宏录制已激活。开始录制新宏?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Macro Recording</source>
         <translation>宏录制</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6463"/>
+        <location filename="../QScintilla/Editor.py" line="6468"/>
         <source>Enter name of the macro:</source>
         <translation>输入宏名称:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6601"/>
+        <location filename="../QScintilla/Editor.py" line="6606"/>
         <source>File changed</source>
         <translation>文件已改变</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <source>Drop Error</source>
         <translation>降落误差</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6926"/>
+        <location filename="../QScintilla/Editor.py" line="6931"/>
         <source>Resources</source>
         <translation>资源</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6928"/>
+        <location filename="../QScintilla/Editor.py" line="6933"/>
         <source>Add file...</source>
         <translation>添加文件…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6930"/>
-        <source>Add files...</source>
-        <translation>添加文件…</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6932"/>
-        <source>Add aliased file...</source>
-        <translation>添加别名文件…</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6935"/>
+        <source>Add files...</source>
+        <translation>添加文件…</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6937"/>
+        <source>Add aliased file...</source>
+        <translation>添加别名文件…</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6940"/>
         <source>Add localized resource...</source>
         <translation>添加本地资源…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6939"/>
+        <location filename="../QScintilla/Editor.py" line="6944"/>
         <source>Add resource frame</source>
         <translation>添加资源结构</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6958"/>
+        <location filename="../QScintilla/Editor.py" line="6963"/>
         <source>Add file resource</source>
         <translation>添加文件资源</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6974"/>
+        <location filename="../QScintilla/Editor.py" line="6979"/>
         <source>Add file resources</source>
         <translation>添加多个文件资源</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <source>Add aliased file resource</source>
         <translation>添加别名文件资源</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Package Diagram</source>
         <translation>程序包图</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7071"/>
         <source>Include class attributes?</source>
         <translation>包含类属性?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Imports Diagram</source>
         <translation>引用图</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7086"/>
+        <location filename="../QScintilla/Editor.py" line="7091"/>
         <source>Include imports from external modules?</source>
         <translation>从外部模块包含引用?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Application Diagram</source>
         <translation>应用程序图</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7100"/>
+        <location filename="../QScintilla/Editor.py" line="7105"/>
         <source>Include module names?</source>
         <translation>包含模块名?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7386"/>
         <source>Add to dictionary</source>
         <translation>添加到文件夹</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7383"/>
+        <location filename="../QScintilla/Editor.py" line="7388"/>
         <source>Ignore All</source>
         <translation>全部忽略</translation>
     </message>
@@ -10856,32 +10856,32 @@
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 无法保存。&lt;br /&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6362"/>
+        <location filename="../QScintilla/Editor.py" line="6367"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6371"/>
+        <location filename="../QScintilla/Editor.py" line="6376"/>
         <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6424"/>
+        <location filename="../QScintilla/Editor.py" line="6429"/>
         <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"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6770"/>
         <source>{0} (ro)</source>
         <translation>{0}(只读)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6905"/>
+        <location filename="../QScintilla/Editor.py" line="6910"/>
         <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="7002"/>
+        <location filename="../QScintilla/Editor.py" line="7007"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10911,22 +10911,22 @@
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6408"/>
+        <location filename="../QScintilla/Editor.py" line="6413"/>
         <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="6259"/>
+        <location filename="../QScintilla/Editor.py" line="6264"/>
         <source>Warning: {0}</source>
         <translation>警告:{0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6266"/>
+        <location filename="../QScintilla/Editor.py" line="6271"/>
         <source>Error: {0}</source>
         <translation>错误:{0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6597"/>
+        <location filename="../QScintilla/Editor.py" line="6602"/>
         <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>
@@ -10951,27 +10951,27 @@
         <translation>上一个更改</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7795"/>
+        <location filename="../QScintilla/Editor.py" line="7800"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>Warning</source>
         <translation>警告</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6195"/>
+        <location filename="../QScintilla/Editor.py" line="6200"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6256"/>
+        <location filename="../QScintilla/Editor.py" line="6261"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10996,7 +10996,7 @@
         <translation>使用指定编码重新打开</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6591"/>
+        <location filename="../QScintilla/Editor.py" line="6596"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric6. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11011,32 +11011,32 @@
         <translation>补全</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4621"/>
+        <location filename="../QScintilla/Editor.py" line="4623"/>
         <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4876"/>
+        <location filename="../QScintilla/Editor.py" line="4881"/>
         <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7882"/>
+        <location filename="../QScintilla/Editor.py" line="7887"/>
         <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47543,7 +47543,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="886"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="892"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47628,7 +47628,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="859"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="865"/>
         <source>Upgrade Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47648,7 +47648,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Uninstall Packages</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47833,7 +47833,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="746"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="752"/>
         <source>Select Python Executable</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47848,17 +47848,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="729"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="735"/>
         <source>&lt;Default&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Upgrade pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="732"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="738"/>
         <source>Select pip Executable:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47868,27 +47868,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="757"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="763"/>
         <source>Repair PIP</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="821"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="827"/>
         <source>You are trying to upgrade PyQt packages. This will not work for the current instance of Python ({0}). Do you want to continue?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="907"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="913"/>
         <source>Install Packages from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="971"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="977"/>
         <source>Do you really want to uninstall these packages?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="982"/>
+        <location filename="../Plugins/UiExtensionPlugins/PipInterface/Pip.py" line="988"/>
         <source>Uninstall Packages from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61528,7 +61528,7 @@
         <translation>No.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <source>Drop Error</source>
         <translation>降落误差</translation>
     </message>
@@ -61553,13 +61553,13 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1638"/>
+        <location filename="../QScintilla/Shell.py" line="1678"/>
         <source>Shell language &quot;{0}&quot; not supported.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1952"/>
+        <location filename="../QScintilla/Shell.py" line="1992"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; 不是一个文件。&lt;/p&gt;</translation>
     </message>
@@ -79394,8 +79394,8 @@
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3493"/>
-        <source>Toggle &amp;all folds</source>
-        <translation>开关所有折叠(&amp;A)</translation>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished">开关所有折叠(&amp;A)</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3499"/>
@@ -79433,519 +79433,519 @@
         <translation>&lt;b&gt;开关当前折叠&lt;/b&gt;&lt;p&gt;打开或关闭当前编辑器的当前行中的折叠。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <location filename="../ViewManager/ViewManager.py" line="3561"/>
         <source>Remove all highlights</source>
         <translation>取消所有高亮</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <location filename="../ViewManager/ViewManager.py" line="3563"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&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="3594"/>
+        <location filename="../ViewManager/ViewManager.py" line="3609"/>
         <source>Split view</source>
         <translation>拆分视图</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3594"/>
-        <source>&amp;Split view</source>
-        <translation>拆分视图(&amp;S)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Add a split to the view</source>
-        <translation>对视图进行拆分</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3601"/>
-        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&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="3609"/>
+        <source>&amp;Split view</source>
+        <translation>拆分视图(&amp;S)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <source>Add a split to the view</source>
+        <translation>对视图进行拆分</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&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="3624"/>
         <source>Arrange horizontally</source>
         <translation>水平排列</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3609"/>
-        <source>Arrange &amp;horizontally</source>
-        <translation>水平排列(&amp;H)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3613"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>将拆分的视图进行水平排列</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3615"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&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="3624"/>
-        <source>Remove split</source>
-        <translation>移除拆分</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3624"/>
-        <source>&amp;Remove split</source>
-        <translation>移除拆分(&amp;R)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3629"/>
-        <source>Remove the current split</source>
-        <translation>移除当前拆分</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
-        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;移除拆分&lt;/b&gt;&lt;p&gt;移除当前拆分。&lt;/p&gt;</translation>
+        <source>Arrange &amp;horizontally</source>
+        <translation>水平排列(&amp;H)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3628"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>将拆分的视图进行水平排列</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3630"/>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&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="3639"/>
-        <source>Next split</source>
-        <translation>下一个拆分</translation>
+        <source>Remove split</source>
+        <translation>移除拆分</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>&amp;Next split</source>
-        <translation>下一个拆分(&amp;N)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3639"/>
-        <source>Ctrl+Alt+N</source>
-        <comment>View|Next split</comment>
-        <translation>Ctrl+Alt+N</translation>
+        <source>&amp;Remove split</source>
+        <translation>移除拆分(&amp;R)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3644"/>
+        <source>Remove the current split</source>
+        <translation>移除当前拆分</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3646"/>
+        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&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="3654"/>
+        <source>Next split</source>
+        <translation>下一个拆分</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>&amp;Next split</source>
+        <translation>下一个拆分(&amp;N)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3654"/>
+        <source>Ctrl+Alt+N</source>
+        <comment>View|Next split</comment>
+        <translation>Ctrl+Alt+N</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3661"/>
         <source>Move to the next split</source>
         <translation>移动到下一个拆分中</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <location filename="../ViewManager/ViewManager.py" line="3663"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&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="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Previous split</source>
         <translation>上一个拆分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>&amp;Previous split</source>
         <translation>上一个拆分(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3656"/>
+        <location filename="../ViewManager/ViewManager.py" line="3671"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3662"/>
+        <location filename="../ViewManager/ViewManager.py" line="3677"/>
         <source>Move to the previous split</source>
         <translation>移动到上一个拆分中</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3664"/>
+        <location filename="../ViewManager/ViewManager.py" line="3679"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&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="3708"/>
+        <location filename="../ViewManager/ViewManager.py" line="3723"/>
         <source>&amp;View</source>
         <translation>视图(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3743"/>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <source>View</source>
         <translation>视图</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3777"/>
+        <location filename="../ViewManager/ViewManager.py" line="3792"/>
         <source>Start Macro Recording</source>
         <translation>开始宏录制</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3771"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>S&amp;tart Macro Recording</source>
         <translation>开始宏录制(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&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="3791"/>
+        <location filename="../ViewManager/ViewManager.py" line="3806"/>
         <source>Stop Macro Recording</source>
         <translation>中止宏录制</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3787"/>
+        <location filename="../ViewManager/ViewManager.py" line="3802"/>
         <source>Sto&amp;p Macro Recording</source>
         <translation>中止宏录制(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3793"/>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
         <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&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="3805"/>
+        <location filename="../ViewManager/ViewManager.py" line="3820"/>
         <source>Run Macro</source>
         <translation>运行宏</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3801"/>
+        <location filename="../ViewManager/ViewManager.py" line="3816"/>
         <source>&amp;Run Macro</source>
         <translation>运行宏(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3807"/>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&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="3819"/>
+        <location filename="../ViewManager/ViewManager.py" line="3834"/>
         <source>Delete Macro</source>
         <translation>删除宏</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <location filename="../ViewManager/ViewManager.py" line="3830"/>
         <source>&amp;Delete Macro</source>
         <translation>删除宏(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3821"/>
+        <location filename="../ViewManager/ViewManager.py" line="3836"/>
         <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&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="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3848"/>
         <source>Load Macro</source>
         <translation>载入宏</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3829"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Load Macro</source>
         <translation>载入宏(&amp;L)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3835"/>
+        <location filename="../ViewManager/ViewManager.py" line="3850"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&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="3847"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>Save Macro</source>
         <translation>保存宏</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3843"/>
+        <location filename="../ViewManager/ViewManager.py" line="3858"/>
         <source>&amp;Save Macro</source>
         <translation>保存宏(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3849"/>
+        <location filename="../ViewManager/ViewManager.py" line="3864"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&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="3865"/>
+        <location filename="../ViewManager/ViewManager.py" line="3880"/>
         <source>&amp;Macros</source>
         <translation>宏(&amp;M)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3891"/>
+        <location filename="../ViewManager/ViewManager.py" line="3906"/>
         <source>Toggle Bookmark</source>
         <translation>切换书签</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>切换书签(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3883"/>
+        <location filename="../ViewManager/ViewManager.py" line="3898"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3893"/>
+        <location filename="../ViewManager/ViewManager.py" line="3908"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line 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="../ViewManager/ViewManager.py" line="3910"/>
+        <location filename="../ViewManager/ViewManager.py" line="3925"/>
         <source>Next Bookmark</source>
         <translation>下一个书签</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>&amp;Next Bookmark</source>
         <translation>下一个书签(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3902"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3912"/>
+        <location filename="../ViewManager/ViewManager.py" line="3927"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark 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="../ViewManager/ViewManager.py" line="3928"/>
+        <location filename="../ViewManager/ViewManager.py" line="3943"/>
         <source>Previous Bookmark</source>
         <translation>上一个书签</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>&amp;Previous Bookmark</source>
         <translation>上一个书签(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
+        <location filename="../ViewManager/ViewManager.py" line="3935"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3930"/>
+        <location filename="../ViewManager/ViewManager.py" line="3945"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark 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="../ViewManager/ViewManager.py" line="3945"/>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
         <source>Clear Bookmarks</source>
         <translation>清除书签</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>清除书签(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
+        <location filename="../ViewManager/ViewManager.py" line="3953"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3947"/>
+        <location filename="../ViewManager/ViewManager.py" line="3962"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&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="3961"/>
-        <source>Goto Syntax Error</source>
-        <translation>转到语法错误处</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3955"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>转到语法错误处(&amp;G)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3963"/>
-        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error 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="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Clear Syntax Errors</source>
-        <translation>清除语法错误</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3971"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>清除语法错误(&amp;S)</translation>
+        <source>Goto Syntax Error</source>
+        <translation>转到语法错误处</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3970"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>转到语法错误处(&amp;G)</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3978"/>
+        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error 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="../ViewManager/ViewManager.py" line="3991"/>
+        <source>Clear Syntax Errors</source>
+        <translation>清除语法错误</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>清除语法错误(&amp;S)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3993"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&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="4046"/>
+        <location filename="../ViewManager/ViewManager.py" line="4061"/>
         <source>Next uncovered line</source>
         <translation>下一个未覆盖行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4040"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next uncovered line</source>
         <translation>下一个未覆盖行(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4048"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&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="4065"/>
+        <location filename="../ViewManager/ViewManager.py" line="4080"/>
         <source>Previous uncovered line</source>
         <translation>上一个未覆盖行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
         <source>&amp;Previous uncovered line</source>
         <translation>上一个未覆盖行(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4082"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&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="4083"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Next Task</source>
         <translation>下一个任务</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4077"/>
+        <location filename="../ViewManager/ViewManager.py" line="4092"/>
         <source>&amp;Next Task</source>
         <translation>下一个任务(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4085"/>
-        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&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="4100"/>
+        <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&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="4115"/>
         <source>Previous Task</source>
         <translation>上一个任务</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4093"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Previous Task</source>
         <translation>上一个任务(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4102"/>
+        <location filename="../ViewManager/ViewManager.py" line="4117"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&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="4156"/>
+        <location filename="../ViewManager/ViewManager.py" line="4171"/>
         <source>&amp;Bookmarks</source>
         <translation>书签(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4202"/>
+        <location filename="../ViewManager/ViewManager.py" line="4217"/>
         <source>Bookmarks</source>
         <translation>书签</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4244"/>
+        <location filename="../ViewManager/ViewManager.py" line="4259"/>
         <source>Perform spell check of current editor</source>
         <translation>对当前编辑器进行拼写检查</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>Automatic spell checking</source>
         <translation>自动拼写检查</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4254"/>
+        <location filename="../ViewManager/ViewManager.py" line="4269"/>
         <source>&amp;Automatic spell checking</source>
         <translation>自动拼写检查(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4262"/>
+        <location filename="../ViewManager/ViewManager.py" line="4277"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation>(不)激活自动拼写检查</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&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="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4346"/>
         <source>Spelling</source>
         <translation>拼写法</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4354"/>
+        <location filename="../ViewManager/ViewManager.py" line="4369"/>
         <source>Open files</source>
         <translation>打开多个文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>File Modified</source>
         <translation>文件已改变</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5155"/>
+        <location filename="../ViewManager/ViewManager.py" line="5170"/>
         <source>&amp;Clear</source>
         <translation>清除(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5149"/>
+        <location filename="../ViewManager/ViewManager.py" line="5164"/>
         <source>&amp;Add</source>
         <translation>添加(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5152"/>
+        <location filename="../ViewManager/ViewManager.py" line="5167"/>
         <source>&amp;Edit...</source>
         <translation>编辑(&amp;E)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4395"/>
+        <location filename="../ViewManager/ViewManager.py" line="4410"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 有未保存的更改。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4730"/>
+        <location filename="../ViewManager/ViewManager.py" line="4745"/>
         <source>Line: {0:5}</source>
         <translation>行:{0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4737"/>
+        <location filename="../ViewManager/ViewManager.py" line="4752"/>
         <source>Pos: {0:5}</source>
         <translation>列:{0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3993"/>
+        <location filename="../ViewManager/ViewManager.py" line="4008"/>
         <source>Next warning message</source>
         <translation>下一个警告消息</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3987"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&amp;Next warning message</source>
         <translation>下一个警告消息(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <source>Previous warning message</source>
         <translation>上一个警告消息</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4004"/>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
         <source>&amp;Previous warning message</source>
         <translation>上一个警告消息(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4030"/>
+        <location filename="../ViewManager/ViewManager.py" line="4045"/>
         <source>Clear Warning Messages</source>
         <translation>清空警告消息</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4023"/>
+        <location filename="../ViewManager/ViewManager.py" line="4038"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>清空警告消息(&amp;W)</translation>
     </message>
@@ -80029,17 +80029,17 @@
         <translation>&lt;b&gt;跳转至下一个方法或类&lt;/b&gt;&lt;p&gt;跳转至下一个方法或类的定义所在行并高亮其名称。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <location filename="../ViewManager/ViewManager.py" line="3687"/>
         <source>Preview</source>
         <translation>预览</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3677"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>Preview the current file in the web browser</source>
         <translation>在网页浏览器中预览当前文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3694"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;预览&lt;/b&gt;&lt;p&gt;在网页浏览器中打开当前文件,显示预览。&lt;/p&gt;</translation>
     </message>
@@ -80453,97 +80453,97 @@
         <translation>全部保存(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4117"/>
+        <location filename="../ViewManager/ViewManager.py" line="4132"/>
         <source>Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4111"/>
+        <location filename="../ViewManager/ViewManager.py" line="4126"/>
         <source>&amp;Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4119"/>
+        <location filename="../ViewManager/ViewManager.py" line="4134"/>
         <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4135"/>
+        <location filename="../ViewManager/ViewManager.py" line="4150"/>
         <source>Previous Change</source>
         <translation>上一个更改</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4128"/>
+        <location filename="../ViewManager/ViewManager.py" line="4143"/>
         <source>&amp;Previous Change</source>
         <translation>上一个更改(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4137"/>
+        <location filename="../ViewManager/ViewManager.py" line="4152"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check spelling</source>
         <translation>检查拼写</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4235"/>
+        <location filename="../ViewManager/ViewManager.py" line="4250"/>
         <source>Check &amp;spelling...</source>
         <translation>检查拼写(&amp;S)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4261"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4295"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Edit Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4297"/>
+        <location filename="../ViewManager/ViewManager.py" line="4312"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4300"/>
+        <location filename="../ViewManager/ViewManager.py" line="4315"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4305"/>
+        <location filename="../ViewManager/ViewManager.py" line="4320"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4323"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished">编辑拼写字典</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6356"/>
+        <location filename="../ViewManager/ViewManager.py" line="6379"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6341"/>
+        <location filename="../ViewManager/ViewManager.py" line="6364"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6368"/>
+        <location filename="../ViewManager/ViewManager.py" line="6391"/>
         <source>&lt;p&gt;The spelling dictionary 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"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6381"/>
+        <location filename="../ViewManager/ViewManager.py" line="6404"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80663,62 +80663,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4757"/>
+        <location filename="../ViewManager/ViewManager.py" line="4772"/>
         <source>Language: {0}</source>
         <translation>语言:{0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4765"/>
+        <location filename="../ViewManager/ViewManager.py" line="4780"/>
         <source>EOL Mode: {0}</source>
         <translation>行尾模式:{0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New Document View</source>
         <translation>新建文档视图</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3556"/>
+        <location filename="../ViewManager/ViewManager.py" line="3571"/>
         <source>New &amp;Document View</source>
         <translation>新建文档视图(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3561"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Open a new view of the current document</source>
         <translation>在新视图(新选项卡)中打开当前文档</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&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="3573"/>
+        <location filename="../ViewManager/ViewManager.py" line="3588"/>
         <source>New Document View (with new split)</source>
         <translation>新建文档视图(在新拆分页中)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3580"/>
+        <location filename="../ViewManager/ViewManager.py" line="3595"/>
         <source>Open a new view of the current document in a new split</source>
         <translation>在新拆分页中的新视图(新选项卡)中打开当前文档</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3598"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&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="3995"/>
+        <location filename="../ViewManager/ViewManager.py" line="4010"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;下一个警告信息&lt;/b&gt;&lt;p&gt;跳转至当前编辑器中下一个出现 pyflakes 警告的行。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4014"/>
+        <location filename="../ViewManager/ViewManager.py" line="4029"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;上一个警告信息&lt;/b&gt;&lt;p&gt;跳转至当前编辑器中上一个出现 pyflakes 警告的行。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4032"/>
+        <location filename="../ViewManager/ViewManager.py" line="4047"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;清空警告信息&lt;/b&gt;&lt;p&gt;在所有编辑器中清空 pyflakes 警告信息。&lt;/p&gt;</translation>
     </message>
@@ -80856,6 +80856,21 @@
         <source>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Show code information based on the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3540"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3546"/>
+        <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>

eric ide

mercurial