Editor

Fri, 22 Jan 2021 16:48:43 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 22 Jan 2021 16:48:43 +0100
changeset 7998
cd41c844862f
parent 7997
2ca23396c25c
child 7999
159689297bc0

Editor
- added functionality to insert docstring templates via the context menu (cursor placed on first line of function definition) or after entering the docstring start string (e.g. """ for Python)

DTDs/Project-6.4.dtd file | annotate | diff | comparison | revisions
DTDs/Project-6.5.dtd file | annotate | diff | comparison | revisions
docs/changelog file | annotate | diff | comparison | revisions
eric6.e4p file | annotate | diff | comparison | revisions
eric6/APIs/Python3/eric6.api file | annotate | diff | comparison | revisions
eric6/APIs/Python3/eric6.bas file | annotate | diff | comparison | revisions
eric6/Documentation/Help/source.qch file | annotate | diff | comparison | revisions
eric6/Documentation/Help/source.qhp file | annotate | diff | comparison | revisions
eric6/Documentation/Source/eric6.E5XML.Config.html file | annotate | diff | comparison | revisions
eric6/Documentation/Source/eric6.Project.Project.html file | annotate | diff | comparison | revisions
eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html file | annotate | diff | comparison | revisions
eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.EricdocGenerator.html file | annotate | diff | comparison | revisions
eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.GoogledocGenerator.html file | annotate | diff | comparison | revisions
eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.NumpydocGenerator.html file | annotate | diff | comparison | revisions
eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html file | annotate | diff | comparison | revisions
eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.SphinxdocGenerator.html file | annotate | diff | comparison | revisions
eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.__init__.html file | annotate | diff | comparison | revisions
eric6/Documentation/Source/eric6.QScintilla.Editor.html file | annotate | diff | comparison | revisions
eric6/Documentation/Source/eric6.QScintilla.QsciScintillaCompat.html file | annotate | diff | comparison | revisions
eric6/Documentation/Source/index-eric6.QScintilla.DocstringGenerator.html file | annotate | diff | comparison | revisions
eric6/Documentation/Source/index-eric6.QScintilla.html file | annotate | diff | comparison | revisions
eric6/E5XML/Config.py file | annotate | diff | comparison | revisions
eric6/E5XML/ProjectReader.py file | annotate | diff | comparison | revisions
eric6/E5XML/ProjectWriter.py file | annotate | diff | comparison | revisions
eric6/Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/DocStyleChecker.py file | annotate | diff | comparison | revisions
eric6/Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py file | annotate | diff | comparison | revisions
eric6/Preferences/ConfigurationPages/EditorGeneralPage.py file | annotate | diff | comparison | revisions
eric6/Preferences/ConfigurationPages/EditorGeneralPage.ui file | annotate | diff | comparison | revisions
eric6/Preferences/__init__.py file | annotate | diff | comparison | revisions
eric6/Project/Project.py file | annotate | diff | comparison | revisions
eric6/Project/PropertiesDialog.py file | annotate | diff | comparison | revisions
eric6/Project/PropertiesDialog.ui file | annotate | diff | comparison | revisions
eric6/QScintilla/DocstringGenerator/BaseDocstringGenerator.py file | annotate | diff | comparison | revisions
eric6/QScintilla/DocstringGenerator/EricdocGenerator.py file | annotate | diff | comparison | revisions
eric6/QScintilla/DocstringGenerator/GoogledocGenerator.py file | annotate | diff | comparison | revisions
eric6/QScintilla/DocstringGenerator/NumpydocGenerator.py file | annotate | diff | comparison | revisions
eric6/QScintilla/DocstringGenerator/PyDocstringGenerator.py file | annotate | diff | comparison | revisions
eric6/QScintilla/DocstringGenerator/SphinxdocGenerator.py file | annotate | diff | comparison | revisions
eric6/QScintilla/DocstringGenerator/__init__.py file | annotate | diff | comparison | revisions
eric6/QScintilla/Editor.py file | annotate | diff | comparison | revisions
eric6/QScintilla/QsciScintillaCompat.py file | annotate | diff | comparison | revisions
eric6/i18n/eric6_cs.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_de.qm file | annotate | diff | comparison | revisions
eric6/i18n/eric6_de.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_empty.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_en.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_es.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_fr.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_it.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_pt.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_ru.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_tr.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_zh_CN.ts file | annotate | diff | comparison | revisions
--- a/DTDs/Project-6.4.dtd	Fri Jan 22 14:14:15 2021 +0100
+++ b/DTDs/Project-6.4.dtd	Fri Jan 22 16:48:43 2021 +0100
@@ -1,4 +1,4 @@
-<!-- This is the DTD for eric's project file version 6.3 -->
+<!-- This is the DTD for eric's project file version 6.4 -->
 
 <!-- This is a copy of the Basic DTD -->
 <!ELEMENT   int         (#PCDATA)>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/DTDs/Project-6.5.dtd	Fri Jan 22 16:48:43 2021 +0100
@@ -0,0 +1,191 @@
+<!-- This is the DTD for eric's project file version 6.4 -->
+
+<!-- This is a copy of the Basic DTD -->
+<!ELEMENT   int         (#PCDATA)>
+<!ELEMENT   long        (#PCDATA)>
+<!ELEMENT   float       (#PCDATA)>
+<!ELEMENT   complex     (#PCDATA)>
+<!ELEMENT   bool        (#PCDATA)>
+<!ELEMENT   string      (#PCDATA)>
+<!ELEMENT   bytes       (#PCDATA)>
+<!ELEMENT   bytearray   (#PCDATA)>
+<!ELEMENT   none        EMPTY>
+
+<!ELEMENT   pickle      (#PCDATA)>
+<!ATTLIST   pickle
+    method      CDATA   #REQUIRED
+    encoding    CDATA   #REQUIRED>
+
+<!ELEMENT   key         (int | long | float | complex | string | bytes)>
+<!ELEMENT   value       (int | long | float | complex | bool | string | bytes | 
+    bytearray | none | dict | tuple | list | set | frozenset | pickle)>
+
+<!ELEMENT   dict        (key, value)*>
+
+<!ELEMENT   tuple       (int | long | float | complex | bool | string | bytes | 
+    bytearray | none | dict | tuple | list | set | frozenset | pickle)*>
+
+<!ELEMENT   list        (int | long | float | complex | bool | string | bytes | 
+    bytearray | none | dict | tuple | list | set | frozenset | pickle)*>
+
+<!ELEMENT   set         (int | long | float | complex | bool | string | bytes | 
+    bytearray | none | dict | tuple | list | set | frozenset | pickle)*>
+
+<!ELEMENT   frozenset   (int | long | float | complex | bool | string | bytes | 
+    bytearray | none | dict | tuple | list | set | frozenset | pickle)*>
+<!-- End of the Basic DTD -->
+
+<!ELEMENT   ProgLanguage        (#PCDATA)>
+<!ATTLIST   ProgLanguage
+    mixed       CDATA   #REQUIRED>
+
+<!ELEMENT   ProjectType         (#PCDATA)>
+
+<!ELEMENT   Description         (#PCDATA)>
+
+<!ELEMENT   Version             (#PCDATA)>
+
+<!ELEMENT   Author              (#PCDATA)>
+
+<!ELEMENT   Email               (#PCDATA)>
+
+<!ELEMENT   TranslationPattern  (#PCDATA)>
+
+<!ELEMENT   TranslationsBinPath (#PCDATA)>
+
+<!ELEMENT   Source              (#PCDATA)>
+
+<!ELEMENT   Sources             (Source*)>
+
+<!ELEMENT   Form                (#PCDATA)>
+
+<!ELEMENT   Forms               (Form*)>
+
+<!ELEMENT   Translation         (#PCDATA)>
+
+<!ELEMENT   Translations        (Translation*)>
+
+<!ELEMENT   TranslationException  (#PCDATA)>
+
+<!ELEMENT   TranslationExceptions (TranslationException*)>
+
+<!ELEMENT   Resource            (#PCDATA)>
+
+<!ELEMENT   Resources           (Resource*)>
+
+<!ELEMENT   Interface           (#PCDATA)>
+
+<!ELEMENT   Interfaces          (Interface*)>
+
+<!ELEMENT   Protocol            (#PCDATA)>
+
+<!ELEMENT   Protocols           (Protocol*)>
+
+<!ELEMENT   Other               (#PCDATA)>
+
+<!ELEMENT   Others              (Other*)>
+
+<!ELEMENT   MainScript          (#PCDATA)>
+
+<!ELEMENT   VcsType             (#PCDATA)>
+<!ELEMENT   VcsOptions          (dict)>
+<!ELEMENT   VcsOtherData        (dict)>
+
+<!ELEMENT   Vcs                 (VcsType?,
+                                 VcsOptions?,
+                                 VcsOtherData?)>
+
+<!ELEMENT   FiletypeAssociation EMPTY>
+<!ATTLIST   FiletypeAssociation
+    pattern     CDATA   #REQUIRED
+    type        CDATA   #REQUIRED>
+
+<!ELEMENT   FiletypeAssociations (FiletypeAssociation*)>
+
+<!ELEMENT   LexerAssociation EMPTY>
+<!ATTLIST   LexerAssociation
+    pattern     CDATA   #REQUIRED
+    lexer       CDATA   #REQUIRED>
+
+<!ELEMENT   LexerAssociations   (LexerAssociation*)>
+
+<!ELEMENT   MakeParameters      (dict)>
+
+<!ELEMENT   Make                (MakeParameters?)>
+
+<!ELEMENT   IdlCompiler         (IdlCompilerParameters?)>
+
+<!ELEMENT   UicCompiler         (UicCompilerParameters?)>
+
+<!ELEMENT   RccCompiler         (RccCompilerParameters?)>
+
+<!ELEMENT   DocstringStyle      (#PCDATA)
+
+<!ELEMENT   ProjectTypeSpecificData (dict)>
+
+<!ELEMENT   ProjectTypeSpecific (ProjectTypeSpecific?)>
+
+<!ELEMENT   DocumentationParams (dict)>
+
+<!ELEMENT   Documentation       (DocumentationParams?)>
+
+<!ELEMENT   PackagersParams     (dict)>
+
+<!ELEMENT   Packagers           (PackagersParams?)>
+
+<!ELEMENT   CheckersParams      (dict)>
+
+<!ELEMENT   Checkers            (CheckersParams?)>
+
+<!ELEMENT   OtherToolsParams    (dict)>
+
+<!ELEMENT   OtherTools          (OtherToolsParams?)>
+
+<!ELEMENT   Language            (#PCDATA)>
+
+<!ELEMENT   ProjectWordList     (#PCDATA)>
+
+<!ELEMENT   ProjectExcludeList  (#PCDATA)>
+
+<!ELEMENT   Hash                (#PCDATA)>
+
+<!ELEMENT   Eol EMPTY>
+<!ATTLIST   Eol
+    index       CDATA   #REQUIRED>
+
+<!ELEMENT   Project             (Language,
+                                 ProjectWordList?,
+                                 ProjectExcludeList?,
+                                 Hash,
+                                 ProgLanguage,
+                                 ProjectType,
+                                 Description?,
+                                 Version?,
+                                 Author?,
+                                 Email?,
+                                 TranslationPattern?,
+                                 TranslationsBinPath?,
+                                 Eol?,
+                                 Sources,
+                                 Forms,
+                                 Translations,
+                                 TranslationExceptions?,
+                                 Resources,
+                                 Interfaces,
+                                 Others,
+                                 MainScript?,
+                                 Vcs,
+                                 FiletypeAssociations,
+                                 LexerAssociations?,
+                                 Make?,
+                                 IdlCompiler?,
+                                 UicCompiler?,
+                                 RccCompiler?,
+                                 DocstringStyle?,
+                                 ProjectTypeSpecific?,
+                                 Documentation?,
+                                 Packagers?,
+                                 Checkers?,
+                                 OtherTools?)>
+<!ATTLIST   Project
+    version     CDATA   #REQUIRED>
--- a/docs/changelog	Fri Jan 22 14:14:15 2021 +0100
+++ b/docs/changelog	Fri Jan 22 16:48:43 2021 +0100
@@ -27,6 +27,9 @@
   -- added code to enclose the current selection by entering ", ' or a bracket
      ( (, ), [, ], {, }, <, > ) characters
   -- extended the exporters to support sub-styles
+  -- added functionality to insert docstring templates via the context menu
+     (cursor placed on first line of function definition) or after entering
+     the docstring start string (e.g. """ for Python)
 - Find File Dialog
   -- added option to exclude hidden files and directories
   -- changed directory tree search logic to derive the file patterns from the
--- a/eric6.e4p	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6.e4p	Fri Jan 22 16:48:43 2021 +0100
@@ -820,6 +820,13 @@
     <Source>eric6/PyUnit/UnittestDialog.py</Source>
     <Source>eric6/PyUnit/__init__.py</Source>
     <Source>eric6/QScintilla/APIsManager.py</Source>
+    <Source>eric6/QScintilla/DocstringGenerator/BaseDocstringGenerator.py</Source>
+    <Source>eric6/QScintilla/DocstringGenerator/EricdocGenerator.py</Source>
+    <Source>eric6/QScintilla/DocstringGenerator/GoogledocGenerator.py</Source>
+    <Source>eric6/QScintilla/DocstringGenerator/NumpydocGenerator.py</Source>
+    <Source>eric6/QScintilla/DocstringGenerator/PyDocstringGenerator.py</Source>
+    <Source>eric6/QScintilla/DocstringGenerator/SphinxdocGenerator.py</Source>
+    <Source>eric6/QScintilla/DocstringGenerator/__init__.py</Source>
     <Source>eric6/QScintilla/Editor.py</Source>
     <Source>eric6/QScintilla/EditorAssembly.py</Source>
     <Source>eric6/QScintilla/EditorButtonsWidget.py</Source>
@@ -2110,6 +2117,9 @@
     <Other>eric6/APIs/MicroPython/circuitpython.api</Other>
     <Other>eric6/APIs/MicroPython/microbit.api</Other>
     <Other>eric6/APIs/MicroPython/micropython.api</Other>
+    <Other>eric6/APIs/Python/zope-2.10.7.api</Other>
+    <Other>eric6/APIs/Python/zope-2.11.2.api</Other>
+    <Other>eric6/APIs/Python/zope-3.3.1.api</Other>
     <Other>eric6/APIs/Python3/PyQt4.bas</Other>
     <Other>eric6/APIs/Python3/PyQt5.bas</Other>
     <Other>eric6/APIs/Python3/PyQtChart.bas</Other>
@@ -2117,9 +2127,6 @@
     <Other>eric6/APIs/Python3/QScintilla2.bas</Other>
     <Other>eric6/APIs/Python3/eric6.api</Other>
     <Other>eric6/APIs/Python3/eric6.bas</Other>
-    <Other>eric6/APIs/Python/zope-2.10.7.api</Other>
-    <Other>eric6/APIs/Python/zope-2.11.2.api</Other>
-    <Other>eric6/APIs/Python/zope-3.3.1.api</Other>
     <Other>eric6/APIs/QSS/qss.api</Other>
     <Other>eric6/APIs/Ruby/Ruby-1.8.7.api</Other>
     <Other>eric6/APIs/Ruby/Ruby-1.8.7.bas</Other>
--- a/eric6/APIs/Python3/eric6.api	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/APIs/Python3/eric6.api	Fri Jan 22 16:48:43 2021 +0100
@@ -1810,6 +1810,7 @@
 eric6.E5XML.Config.projectFileFormatVersionIdl?7
 eric6.E5XML.Config.projectFileFormatVersionMake?7
 eric6.E5XML.Config.projectFileFormatVersionProto?7
+eric6.E5XML.Config.projectFileFormatVersionRcc?7
 eric6.E5XML.Config.projectFileFormatVersionUic?7
 eric6.E5XML.Config.sessionFileFormatVersion?7
 eric6.E5XML.Config.shortcutsFileFormatVersion?7
@@ -6957,6 +6958,7 @@
 eric6.Project.Project.Project.getDebuggerFilters?4(language)
 eric6.Project.Project.Project.getDefaultRccCompilerParameters?4()
 eric6.Project.Project.Project.getDefaultSourceExtension?4()
+eric6.Project.Project.Project.getDocstringType?4()
 eric6.Project.Project.Project.getEditorLexerAssoc?4(filename)
 eric6.Project.Project.Project.getEolString?4()
 eric6.Project.Project.Project.getFiles?4(start)
@@ -6991,6 +6993,7 @@
 eric6.Project.Project.Project.getVcs?4()
 eric6.Project.Project.Project.handleApplicationDiagram?4()
 eric6.Project.Project.Project.handlePreferencesChanged?4()
+eric6.Project.Project.Project.hasDefaultDocstringParameter?4()
 eric6.Project.Project.Project.hasDefaultIdlCompilerParameters?4()
 eric6.Project.Project.Project.hasDefaultMakeParameters?4()
 eric6.Project.Project.Project.hasDefaultRccCompilerParameters?4()
@@ -7361,6 +7364,31 @@
 eric6.QScintilla.APIsManager.APIsManager.getAPIs?4(language, projectType="", forPreparation=False)
 eric6.QScintilla.APIsManager.APIsManager.reloadAPIs?4()
 eric6.QScintilla.APIsManager.APIsManager?1(parent=None)
+eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.BaseDocstringGenerator._generateDocstringList?5(functionInfo, docstringType)
+eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.BaseDocstringGenerator.getDocstringType?4()
+eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.BaseDocstringGenerator.hasFunctionDefinition?4(cursorPosition)
+eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.BaseDocstringGenerator.insertDocstring?4(cursorPosition, fromStart=True)
+eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.BaseDocstringGenerator.isDocstringIntro?4(cursorPosition)
+eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.BaseDocstringGenerator.isFunctionStart?4(text)
+eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.BaseDocstringGenerator?1(editor)
+eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.DocstringMenuForEnterOnly.keyPressEvent?4(evt)
+eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.DocstringMenuForEnterOnly?1(editor)
+eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.FunctionInfo?1()
+eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.getIndentStr?4(text)
+eric6.QScintilla.DocstringGenerator.EricdocGenerator.generateEricDoc?4(functionInfo)
+eric6.QScintilla.DocstringGenerator.GoogledocGenerator.generateGoogleDoc?4(functionInfo, editor)
+eric6.QScintilla.DocstringGenerator.NumpydocGenerator.generateNumpyDoc?4(functionInfo, editor)
+eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.PyDocstringGenerator.hasFunctionDefinition?4(cursorPosition)
+eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.PyDocstringGenerator.insertDocstring?4(cursorPosition, fromStart=True)
+eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.PyDocstringGenerator.isDocstringIntro?4(cursorPosition)
+eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.PyDocstringGenerator.isFunctionStart?4(text)
+eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.PyDocstringGenerator?1(editor)
+eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.PyFunctionInfo.parseBody?4(text)
+eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.PyFunctionInfo.parseDefinition?4(text, quote, quoteReplace)
+eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.PyFunctionInfo?1()
+eric6.QScintilla.DocstringGenerator.SphinxdocGenerator.generateSphinxDoc?4(functionInfo)
+eric6.QScintilla.DocstringGenerator.getDocstringGenerator?4(editor)
+eric6.QScintilla.DocstringGenerator.getSupportedDocstringTypes?4()
 eric6.QScintilla.Editor.Editor.AttributeID?7
 eric6.QScintilla.Editor.Editor.AttributePrivateID?7
 eric6.QScintilla.Editor.Editor.AttributeProtectedID?7
@@ -7464,6 +7492,7 @@
 eric6.QScintilla.Editor.Editor.getCoverageLines?4()
 eric6.QScintilla.Editor.Editor.getCurrentWord?4()
 eric6.QScintilla.Editor.Editor.getCurrentWordBoundaries?4()
+eric6.QScintilla.Editor.Editor.getDocstringGenerator?4()
 eric6.QScintilla.Editor.Editor.getEditorConfig?4(option)
 eric6.QScintilla.Editor.Editor.getEncoding?4()
 eric6.QScintilla.Editor.Editor.getFileName?4()
@@ -8243,6 +8272,7 @@
 eric6.QScintilla.QsciScintillaCompat.QsciScintillaCompat.getEolIndicator?4()
 eric6.QScintilla.QsciScintillaCompat.QsciScintillaCompat.getFileName?4()
 eric6.QScintilla.QsciScintillaCompat.QsciScintillaCompat.getFoundTarget?4()
+eric6.QScintilla.QsciScintillaCompat.QsciScintillaCompat.getGlobalCursorPosition?4()
 eric6.QScintilla.QsciScintillaCompat.QsciScintillaCompat.getIndicatorEndPos?4(indicator, pos)
 eric6.QScintilla.QsciScintillaCompat.QsciScintillaCompat.getIndicatorStartPos?4(indicator, pos)
 eric6.QScintilla.QsciScintillaCompat.QsciScintillaCompat.getLineSeparator?4()
--- a/eric6/APIs/Python3/eric6.bas	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/APIs/Python3/eric6.bas	Fri Jan 22 16:48:43 2021 +0100
@@ -147,6 +147,7 @@
 DispositionParm str
 DispositionParmList UniqueNamespace
 DispositionType peg.List
+DocstringMenuForEnterOnly QMenu
 DocumentationViewerWidget QWidget
 DotDesktopListSelectionDialog QDialog Ui_DotDesktopListSelectionDialog
 DotDesktopWizard QObject
@@ -733,6 +734,8 @@
 PurgeProjectHelper HgExtensionProjectHelper
 PyBoardDevice MicroPythonDevice
 PyCoverageDialog QDialog Ui_PyCoverageDialog
+PyDocstringGenerator BaseDocstringGenerator
+PyFunctionInfo FunctionInfo
 PyProfile profile.Profile
 PyProfileDialog QDialog Ui_PyProfileDialog
 PyRegExpWizard QObject
Binary file eric6/Documentation/Help/source.qch has changed
--- a/eric6/Documentation/Help/source.qhp	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/Documentation/Help/source.qhp	Fri Jan 22 16:48:43 2021 +0100
@@ -857,6 +857,15 @@
             <section title="eric6.PyUnit.UnittestDialog" ref="eric6.PyUnit.UnittestDialog.html" />
           </section>
           <section title="eric6.QScintilla" ref="index-eric6.QScintilla.html">
+            <section title="eric6.QScintilla.DocstringGenerator" ref="index-eric6.QScintilla.DocstringGenerator.html">
+              <section title="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html" />
+              <section title="eric6.QScintilla.DocstringGenerator.EricdocGenerator" ref="eric6.QScintilla.DocstringGenerator.EricdocGenerator.html" />
+              <section title="eric6.QScintilla.DocstringGenerator.GoogledocGenerator" ref="eric6.QScintilla.DocstringGenerator.GoogledocGenerator.html" />
+              <section title="eric6.QScintilla.DocstringGenerator.NumpydocGenerator" ref="eric6.QScintilla.DocstringGenerator.NumpydocGenerator.html" />
+              <section title="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html" />
+              <section title="eric6.QScintilla.DocstringGenerator.SphinxdocGenerator" ref="eric6.QScintilla.DocstringGenerator.SphinxdocGenerator.html" />
+              <section title="eric6.QScintilla.DocstringGenerator.__init__" ref="eric6.QScintilla.DocstringGenerator.__init__.html" />
+            </section>
             <section title="eric6.QScintilla.Exporters" ref="index-eric6.QScintilla.Exporters.html">
               <section title="eric6.QScintilla.Exporters.ExporterBase" ref="eric6.QScintilla.Exporters.ExporterBase.html" />
               <section title="eric6.QScintilla.Exporters.ExporterHTML" ref="eric6.QScintilla.Exporters.ExporterHTML.html" />
@@ -1853,6 +1862,15 @@
       <keyword name="BackgroundService.serviceConnect" id="BackgroundService.serviceConnect" ref="eric6.Utilities.BackgroundService.html#BackgroundService.serviceConnect" />
       <keyword name="BackgroundService.serviceDisconnect" id="BackgroundService.serviceDisconnect" ref="eric6.Utilities.BackgroundService.html#BackgroundService.serviceDisconnect" />
       <keyword name="BackgroundService.shutdown" id="BackgroundService.shutdown" ref="eric6.Utilities.BackgroundService.html#BackgroundService.shutdown" />
+      <keyword name="BaseDocstringGenerator" id="BaseDocstringGenerator" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#BaseDocstringGenerator" />
+      <keyword name="BaseDocstringGenerator (Constructor)" id="BaseDocstringGenerator (Constructor)" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#BaseDocstringGenerator.__init__" />
+      <keyword name="BaseDocstringGenerator (Module)" id="BaseDocstringGenerator (Module)" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html" />
+      <keyword name="BaseDocstringGenerator._generateDocstringList" id="BaseDocstringGenerator._generateDocstringList" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#BaseDocstringGenerator._generateDocstringList" />
+      <keyword name="BaseDocstringGenerator.getDocstringType" id="BaseDocstringGenerator.getDocstringType" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#BaseDocstringGenerator.getDocstringType" />
+      <keyword name="BaseDocstringGenerator.hasFunctionDefinition" id="BaseDocstringGenerator.hasFunctionDefinition" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#BaseDocstringGenerator.hasFunctionDefinition" />
+      <keyword name="BaseDocstringGenerator.insertDocstring" id="BaseDocstringGenerator.insertDocstring" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#BaseDocstringGenerator.insertDocstring" />
+      <keyword name="BaseDocstringGenerator.isDocstringIntro" id="BaseDocstringGenerator.isDocstringIntro" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#BaseDocstringGenerator.isDocstringIntro" />
+      <keyword name="BaseDocstringGenerator.isFunctionStart" id="BaseDocstringGenerator.isFunctionStart" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#BaseDocstringGenerator.isFunctionStart" />
       <keyword name="BaseReport" id="BaseReport" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.html#BaseReport" />
       <keyword name="BaseReport (Constructor)" id="BaseReport (Constructor)" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.html#BaseReport.__init__" />
       <keyword name="BaseReport.error" id="BaseReport.error" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.html#BaseReport.error" />
@@ -3749,6 +3767,10 @@
       <keyword name="DocStyleContext.special" id="DocStyleContext.special" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.DocStyle.DocStyleChecker.html#DocStyleContext.special" />
       <keyword name="DocStyleContext.ssource" id="DocStyleContext.ssource" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.DocStyle.DocStyleChecker.html#DocStyleContext.ssource" />
       <keyword name="DocStyleContext.start" id="DocStyleContext.start" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.DocStyle.DocStyleChecker.html#DocStyleContext.start" />
+      <keyword name="DocstringGenerator (Package)" id="DocstringGenerator (Package)" ref="index-eric6.QScintilla.DocstringGenerator.html" />
+      <keyword name="DocstringMenuForEnterOnly" id="DocstringMenuForEnterOnly" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#DocstringMenuForEnterOnly" />
+      <keyword name="DocstringMenuForEnterOnly (Constructor)" id="DocstringMenuForEnterOnly (Constructor)" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#DocstringMenuForEnterOnly.__init__" />
+      <keyword name="DocstringMenuForEnterOnly.keyPressEvent" id="DocstringMenuForEnterOnly.keyPressEvent" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#DocstringMenuForEnterOnly.keyPressEvent" />
       <keyword name="DocumentationPlugins (Package)" id="DocumentationPlugins (Package)" ref="index-eric6.Plugins.DocumentationPlugins.html" />
       <keyword name="DocumentationTools (Package)" id="DocumentationTools (Package)" ref="index-eric6.DocumentationTools.html" />
       <keyword name="DocumentationViewerWidget" id="DocumentationViewerWidget" ref="eric6.UI.CodeDocumentationViewer.html#DocumentationViewerWidget" />
@@ -4823,6 +4845,7 @@
       <keyword name="Editor.__convertTabs" id="Editor.__convertTabs" ref="eric6.QScintilla.Editor.html#Editor.__convertTabs" />
       <keyword name="Editor.__createChangeMarkerPixmap" id="Editor.__createChangeMarkerPixmap" ref="eric6.QScintilla.Editor.html#Editor.__createChangeMarkerPixmap" />
       <keyword name="Editor.__cursorPositionChanged" id="Editor.__cursorPositionChanged" ref="eric6.QScintilla.Editor.html#Editor.__cursorPositionChanged" />
+      <keyword name="Editor.__delayedDocstringMenuPopup" id="Editor.__delayedDocstringMenuPopup" ref="eric6.QScintilla.Editor.html#Editor.__delayedDocstringMenuPopup" />
       <keyword name="Editor.__deleteAllChangeMarkers" id="Editor.__deleteAllChangeMarkers" ref="eric6.QScintilla.Editor.html#Editor.__deleteAllChangeMarkers" />
       <keyword name="Editor.__deleteBreakPoints" id="Editor.__deleteBreakPoints" ref="eric6.QScintilla.Editor.html#Editor.__deleteBreakPoints" />
       <keyword name="Editor.__deselectAll" id="Editor.__deselectAll" ref="eric6.QScintilla.Editor.html#Editor.__deselectAll" />
@@ -4860,6 +4883,7 @@
       <keyword name="Editor.__initContextMenuTools" id="Editor.__initContextMenuTools" ref="eric6.QScintilla.Editor.html#Editor.__initContextMenuTools" />
       <keyword name="Editor.__initOnlineChangeTrace" id="Editor.__initOnlineChangeTrace" ref="eric6.QScintilla.Editor.html#Editor.__initOnlineChangeTrace" />
       <keyword name="Editor.__initOnlineSyntaxCheck" id="Editor.__initOnlineSyntaxCheck" ref="eric6.QScintilla.Editor.html#Editor.__initOnlineSyntaxCheck" />
+      <keyword name="Editor.__insertDocstring" id="Editor.__insertDocstring" ref="eric6.QScintilla.Editor.html#Editor.__insertDocstring" />
       <keyword name="Editor.__isCommentedLine" id="Editor.__isCommentedLine" ref="eric6.QScintilla.Editor.html#Editor.__isCommentedLine" />
       <keyword name="Editor.__isStartChar" id="Editor.__isStartChar" ref="eric6.QScintilla.Editor.html#Editor.__isStartChar" />
       <keyword name="Editor.__languageChanged" id="Editor.__languageChanged" ref="eric6.QScintilla.Editor.html#Editor.__languageChanged" />
@@ -4882,6 +4906,7 @@
       <keyword name="Editor.__newViewNewSplit" id="Editor.__newViewNewSplit" ref="eric6.QScintilla.Editor.html#Editor.__newViewNewSplit" />
       <keyword name="Editor.__normalizedEncoding" id="Editor.__normalizedEncoding" ref="eric6.QScintilla.Editor.html#Editor.__normalizedEncoding" />
       <keyword name="Editor.__onlineChangeTraceTimerTimeout" id="Editor.__onlineChangeTraceTimerTimeout" ref="eric6.QScintilla.Editor.html#Editor.__onlineChangeTraceTimerTimeout" />
+      <keyword name="Editor.__popupDocstringMenu" id="Editor.__popupDocstringMenu" ref="eric6.QScintilla.Editor.html#Editor.__popupDocstringMenu" />
       <keyword name="Editor.__printPreview" id="Editor.__printPreview" ref="eric6.QScintilla.Editor.html#Editor.__printPreview" />
       <keyword name="Editor.__processEndEditCommand" id="Editor.__processEndEditCommand" ref="eric6.QScintilla.Editor.html#Editor.__processEndEditCommand" />
       <keyword name="Editor.__processFlags" id="Editor.__processFlags" ref="eric6.QScintilla.Editor.html#Editor.__processFlags" />
@@ -5021,6 +5046,7 @@
       <keyword name="Editor.getCoverageLines" id="Editor.getCoverageLines" ref="eric6.QScintilla.Editor.html#Editor.getCoverageLines" />
       <keyword name="Editor.getCurrentWord" id="Editor.getCurrentWord" ref="eric6.QScintilla.Editor.html#Editor.getCurrentWord" />
       <keyword name="Editor.getCurrentWordBoundaries" id="Editor.getCurrentWordBoundaries" ref="eric6.QScintilla.Editor.html#Editor.getCurrentWordBoundaries" />
+      <keyword name="Editor.getDocstringGenerator" id="Editor.getDocstringGenerator" ref="eric6.QScintilla.Editor.html#Editor.getDocstringGenerator" />
       <keyword name="Editor.getEditorConfig" id="Editor.getEditorConfig" ref="eric6.QScintilla.Editor.html#Editor.getEditorConfig" />
       <keyword name="Editor.getEncoding" id="Editor.getEncoding" ref="eric6.QScintilla.Editor.html#Editor.getEncoding" />
       <keyword name="Editor.getFileName" id="Editor.getFileName" ref="eric6.QScintilla.Editor.html#Editor.getFileName" />
@@ -5537,6 +5563,7 @@
       <keyword name="EricdocExecDialog.__readStdout" id="EricdocExecDialog.__readStdout" ref="eric6.Plugins.DocumentationPlugins.Ericdoc.EricdocExecDialog.html#EricdocExecDialog.__readStdout" />
       <keyword name="EricdocExecDialog.on_buttonBox_clicked" id="EricdocExecDialog.on_buttonBox_clicked" ref="eric6.Plugins.DocumentationPlugins.Ericdoc.EricdocExecDialog.html#EricdocExecDialog.on_buttonBox_clicked" />
       <keyword name="EricdocExecDialog.start" id="EricdocExecDialog.start" ref="eric6.Plugins.DocumentationPlugins.Ericdoc.EricdocExecDialog.html#EricdocExecDialog.start" />
+      <keyword name="EricdocGenerator (Module)" id="EricdocGenerator (Module)" ref="eric6.QScintilla.DocstringGenerator.EricdocGenerator.html" />
       <keyword name="EricdocPlugin" id="EricdocPlugin" ref="eric6.Plugins.PluginEricdoc.html#EricdocPlugin" />
       <keyword name="EricdocPlugin (Constructor)" id="EricdocPlugin (Constructor)" ref="eric6.Plugins.PluginEricdoc.html#EricdocPlugin.__init__" />
       <keyword name="EricdocPlugin.__doEricdoc" id="EricdocPlugin.__doEricdoc" ref="eric6.Plugins.PluginEricdoc.html#EricdocPlugin.__doEricdoc" />
@@ -5962,6 +5989,8 @@
       <keyword name="Function (Constructor)" id="Function (Constructor)" ref="eric6.Utilities.ModuleParser.html#Function.__init__" />
       <keyword name="Function.addDescription" id="Function.addDescription" ref="eric6.Utilities.ModuleParser.html#Function.addDescription" />
       <keyword name="Function.setEndLine" id="Function.setEndLine" ref="eric6.Utilities.ModuleParser.html#Function.setEndLine" />
+      <keyword name="FunctionInfo" id="FunctionInfo" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#FunctionInfo" />
+      <keyword name="FunctionInfo (Constructor)" id="FunctionInfo (Constructor)" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#FunctionInfo.__init__" />
       <keyword name="FunctionVisitor" id="FunctionVisitor" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html#FunctionVisitor" />
       <keyword name="FunctionVisitor (Constructor)" id="FunctionVisitor (Constructor)" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html#FunctionVisitor.__init__" />
       <keyword name="FunctionVisitor.__checkFunctionNode" id="FunctionVisitor.__checkFunctionNode" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Annotations.AnnotationsChecker.html#FunctionVisitor.__checkFunctionNode" />
@@ -6844,6 +6873,7 @@
       <keyword name="GoogleV2Engine.engineName" id="GoogleV2Engine.engineName" ref="eric6.Plugins.UiExtensionPlugins.Translator.TranslatorEngines.GoogleV2Engine.html#GoogleV2Engine.engineName" />
       <keyword name="GoogleV2Engine.getTranslation" id="GoogleV2Engine.getTranslation" ref="eric6.Plugins.UiExtensionPlugins.Translator.TranslatorEngines.GoogleV2Engine.html#GoogleV2Engine.getTranslation" />
       <keyword name="GoogleV2Engine.supportedLanguages" id="GoogleV2Engine.supportedLanguages" ref="eric6.Plugins.UiExtensionPlugins.Translator.TranslatorEngines.GoogleV2Engine.html#GoogleV2Engine.supportedLanguages" />
+      <keyword name="GoogledocGenerator (Module)" id="GoogledocGenerator (Module)" ref="eric6.QScintilla.DocstringGenerator.GoogledocGenerator.html" />
       <keyword name="GotoDialog" id="GotoDialog" ref="eric6.QScintilla.GotoDialog.html#GotoDialog" />
       <keyword name="GotoDialog (Constructor)" id="GotoDialog (Constructor)" ref="eric6.QScintilla.GotoDialog.html#GotoDialog.__init__" />
       <keyword name="GotoDialog (Module)" id="GotoDialog (Module)" ref="eric6.QScintilla.GotoDialog.html" />
@@ -10456,6 +10486,7 @@
       <keyword name="NumbersWidget.on_octInButton_clicked" id="NumbersWidget.on_octInButton_clicked" ref="eric6.UI.NumbersWidget.html#NumbersWidget.on_octInButton_clicked" />
       <keyword name="NumbersWidget.on_octOutButton_clicked" id="NumbersWidget.on_octOutButton_clicked" ref="eric6.UI.NumbersWidget.html#NumbersWidget.on_octOutButton_clicked" />
       <keyword name="NumbersWidget.on_sizeBox_valueChanged" id="NumbersWidget.on_sizeBox_valueChanged" ref="eric6.UI.NumbersWidget.html#NumbersWidget.on_sizeBox_valueChanged" />
+      <keyword name="NumpydocGenerator (Module)" id="NumpydocGenerator (Module)" ref="eric6.QScintilla.DocstringGenerator.NumpydocGenerator.html" />
       <keyword name="OpenSearch (Package)" id="OpenSearch (Package)" ref="index-eric6.WebBrowser.OpenSearch.html" />
       <keyword name="OpenSearchDialog" id="OpenSearchDialog" ref="eric6.WebBrowser.OpenSearch.OpenSearchDialog.html#OpenSearchDialog" />
       <keyword name="OpenSearchDialog (Constructor)" id="OpenSearchDialog (Constructor)" ref="eric6.WebBrowser.OpenSearch.OpenSearchDialog.html#OpenSearchDialog.__init__" />
@@ -11348,6 +11379,7 @@
       <keyword name="Project.getDebuggerFilters" id="Project.getDebuggerFilters" ref="eric6.Project.Project.html#Project.getDebuggerFilters" />
       <keyword name="Project.getDefaultRccCompilerParameters" id="Project.getDefaultRccCompilerParameters" ref="eric6.Project.Project.html#Project.getDefaultRccCompilerParameters" />
       <keyword name="Project.getDefaultSourceExtension" id="Project.getDefaultSourceExtension" ref="eric6.Project.Project.html#Project.getDefaultSourceExtension" />
+      <keyword name="Project.getDocstringType" id="Project.getDocstringType" ref="eric6.Project.Project.html#Project.getDocstringType" />
       <keyword name="Project.getEditorLexerAssoc" id="Project.getEditorLexerAssoc" ref="eric6.Project.Project.html#Project.getEditorLexerAssoc" />
       <keyword name="Project.getEolString" id="Project.getEolString" ref="eric6.Project.Project.html#Project.getEolString" />
       <keyword name="Project.getFiles" id="Project.getFiles" ref="eric6.Project.Project.html#Project.getFiles" />
@@ -11382,6 +11414,7 @@
       <keyword name="Project.getVcs" id="Project.getVcs" ref="eric6.Project.Project.html#Project.getVcs" />
       <keyword name="Project.handleApplicationDiagram" id="Project.handleApplicationDiagram" ref="eric6.Project.Project.html#Project.handleApplicationDiagram" />
       <keyword name="Project.handlePreferencesChanged" id="Project.handlePreferencesChanged" ref="eric6.Project.Project.html#Project.handlePreferencesChanged" />
+      <keyword name="Project.hasDefaultDocstringParameter" id="Project.hasDefaultDocstringParameter" ref="eric6.Project.Project.html#Project.hasDefaultDocstringParameter" />
       <keyword name="Project.hasDefaultIdlCompilerParameters" id="Project.hasDefaultIdlCompilerParameters" ref="eric6.Project.Project.html#Project.hasDefaultIdlCompilerParameters" />
       <keyword name="Project.hasDefaultMakeParameters" id="Project.hasDefaultMakeParameters" ref="eric6.Project.Project.html#Project.hasDefaultMakeParameters" />
       <keyword name="Project.hasDefaultRccCompilerParameters" id="Project.hasDefaultRccCompilerParameters" ref="eric6.Project.Project.html#Project.hasDefaultRccCompilerParameters" />
@@ -11905,6 +11938,30 @@
       <keyword name="PyCoverageDialog.on_resultList_itemActivated" id="PyCoverageDialog.on_resultList_itemActivated" ref="eric6.DataViews.PyCoverageDialog.html#PyCoverageDialog.on_resultList_itemActivated" />
       <keyword name="PyCoverageDialog.start" id="PyCoverageDialog.start" ref="eric6.DataViews.PyCoverageDialog.html#PyCoverageDialog.start" />
       <keyword name="PyCoverageDialog.stringify" id="PyCoverageDialog.stringify" ref="eric6.DataViews.PyCoverageDialog.html#PyCoverageDialog.stringify" />
+      <keyword name="PyDocstringGenerator" id="PyDocstringGenerator" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator" />
+      <keyword name="PyDocstringGenerator (Constructor)" id="PyDocstringGenerator (Constructor)" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.__init__" />
+      <keyword name="PyDocstringGenerator (Module)" id="PyDocstringGenerator (Module)" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html" />
+      <keyword name="PyDocstringGenerator.__generateDocstring" id="PyDocstringGenerator.__generateDocstring" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.__generateDocstring" />
+      <keyword name="PyDocstringGenerator.__generateDocstringFromBelow" id="PyDocstringGenerator.__generateDocstringFromBelow" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.__generateDocstringFromBelow" />
+      <keyword name="PyDocstringGenerator.__generateDocstringFromStart" id="PyDocstringGenerator.__generateDocstringFromStart" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.__generateDocstringFromStart" />
+      <keyword name="PyDocstringGenerator.__getFunctionBody" id="PyDocstringGenerator.__getFunctionBody" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.__getFunctionBody" />
+      <keyword name="PyDocstringGenerator.__getFunctionDefinitionFromBelow" id="PyDocstringGenerator.__getFunctionDefinitionFromBelow" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.__getFunctionDefinitionFromBelow" />
+      <keyword name="PyDocstringGenerator.__getFunctionDefinitionFromStart" id="PyDocstringGenerator.__getFunctionDefinitionFromStart" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.__getFunctionDefinitionFromStart" />
+      <keyword name="PyDocstringGenerator.__getIndentationInsertString" id="PyDocstringGenerator.__getIndentationInsertString" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.__getIndentationInsertString" />
+      <keyword name="PyDocstringGenerator.__isTripleQuotesStart" id="PyDocstringGenerator.__isTripleQuotesStart" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.__isTripleQuotesStart" />
+      <keyword name="PyDocstringGenerator.hasFunctionDefinition" id="PyDocstringGenerator.hasFunctionDefinition" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.hasFunctionDefinition" />
+      <keyword name="PyDocstringGenerator.insertDocstring" id="PyDocstringGenerator.insertDocstring" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.insertDocstring" />
+      <keyword name="PyDocstringGenerator.isDocstringIntro" id="PyDocstringGenerator.isDocstringIntro" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.isDocstringIntro" />
+      <keyword name="PyDocstringGenerator.isFunctionStart" id="PyDocstringGenerator.isFunctionStart" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.isFunctionStart" />
+      <keyword name="PyFunctionInfo" id="PyFunctionInfo" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyFunctionInfo" />
+      <keyword name="PyFunctionInfo (Constructor)" id="PyFunctionInfo (Constructor)" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyFunctionInfo.__init__" />
+      <keyword name="PyFunctionInfo.__findBracketPosition" id="PyFunctionInfo.__findBracketPosition" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyFunctionInfo.__findBracketPosition" />
+      <keyword name="PyFunctionInfo.__findQuotePosition" id="PyFunctionInfo.__findQuotePosition" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyFunctionInfo.__findQuotePosition" />
+      <keyword name="PyFunctionInfo.__isCharInPairs" id="PyFunctionInfo.__isCharInPairs" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyFunctionInfo.__isCharInPairs" />
+      <keyword name="PyFunctionInfo.__splitArgumentToNameTypeValue" id="PyFunctionInfo.__splitArgumentToNameTypeValue" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyFunctionInfo.__splitArgumentToNameTypeValue" />
+      <keyword name="PyFunctionInfo.__splitArgumentsTextToList" id="PyFunctionInfo.__splitArgumentsTextToList" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyFunctionInfo.__splitArgumentsTextToList" />
+      <keyword name="PyFunctionInfo.parseBody" id="PyFunctionInfo.parseBody" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyFunctionInfo.parseBody" />
+      <keyword name="PyFunctionInfo.parseDefinition" id="PyFunctionInfo.parseDefinition" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyFunctionInfo.parseDefinition" />
       <keyword name="PyProfile" id="PyProfile" ref="eric6.DebugClients.Python.PyProfile.html#PyProfile" />
       <keyword name="PyProfile (Constructor)" id="PyProfile (Constructor)" ref="eric6.DebugClients.Python.PyProfile.html#PyProfile.__init__" />
       <keyword name="PyProfile (Module)" id="PyProfile (Module)" ref="eric6.DebugClients.Python.PyProfile.html" />
@@ -12229,6 +12286,7 @@
       <keyword name="QsciScintillaCompat.getEolIndicator" id="QsciScintillaCompat.getEolIndicator" ref="eric6.QScintilla.QsciScintillaCompat.html#QsciScintillaCompat.getEolIndicator" />
       <keyword name="QsciScintillaCompat.getFileName" id="QsciScintillaCompat.getFileName" ref="eric6.QScintilla.QsciScintillaCompat.html#QsciScintillaCompat.getFileName" />
       <keyword name="QsciScintillaCompat.getFoundTarget" id="QsciScintillaCompat.getFoundTarget" ref="eric6.QScintilla.QsciScintillaCompat.html#QsciScintillaCompat.getFoundTarget" />
+      <keyword name="QsciScintillaCompat.getGlobalCursorPosition" id="QsciScintillaCompat.getGlobalCursorPosition" ref="eric6.QScintilla.QsciScintillaCompat.html#QsciScintillaCompat.getGlobalCursorPosition" />
       <keyword name="QsciScintillaCompat.getIndicatorEndPos" id="QsciScintillaCompat.getIndicatorEndPos" ref="eric6.QScintilla.QsciScintillaCompat.html#QsciScintillaCompat.getIndicatorEndPos" />
       <keyword name="QsciScintillaCompat.getIndicatorStartPos" id="QsciScintillaCompat.getIndicatorStartPos" ref="eric6.QScintilla.QsciScintillaCompat.html#QsciScintillaCompat.getIndicatorStartPos" />
       <keyword name="QsciScintillaCompat.getLineSeparator" id="QsciScintillaCompat.getLineSeparator" ref="eric6.QScintilla.QsciScintillaCompat.html#QsciScintillaCompat.getLineSeparator" />
@@ -13443,6 +13501,7 @@
       <keyword name="SpellingPropertiesDialog (Module)" id="SpellingPropertiesDialog (Module)" ref="eric6.Project.SpellingPropertiesDialog.html" />
       <keyword name="SpellingPropertiesDialog.initDialog" id="SpellingPropertiesDialog.initDialog" ref="eric6.Project.SpellingPropertiesDialog.html#SpellingPropertiesDialog.initDialog" />
       <keyword name="SpellingPropertiesDialog.storeData" id="SpellingPropertiesDialog.storeData" ref="eric6.Project.SpellingPropertiesDialog.html#SpellingPropertiesDialog.storeData" />
+      <keyword name="SphinxdocGenerator (Module)" id="SphinxdocGenerator (Module)" ref="eric6.QScintilla.DocstringGenerator.SphinxdocGenerator.html" />
       <keyword name="SplashScreen" id="SplashScreen" ref="eric6.UI.SplashScreen.html#SplashScreen" />
       <keyword name="SplashScreen (Constructor)" id="SplashScreen (Constructor)" ref="eric6.UI.SplashScreen.html#SplashScreen.__init__" />
       <keyword name="SplashScreen (Module)" id="SplashScreen (Module)" ref="eric6.UI.SplashScreen.html" />
@@ -17456,10 +17515,14 @@
       <keyword name="generalHardcodedTmp (Module)" id="generalHardcodedTmp (Module)" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Security.Checks.generalHardcodedTmp.html" />
       <keyword name="generateCheckersDict" id="generateCheckersDict" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.Security.Checks.__init__.html#generateCheckersDict" />
       <keyword name="generateDistroInfo" id="generateDistroInfo" ref="eric6.Utilities.__init__.html#generateDistroInfo" />
+      <keyword name="generateEricDoc" id="generateEricDoc" ref="eric6.QScintilla.DocstringGenerator.EricdocGenerator.html#generateEricDoc" />
+      <keyword name="generateGoogleDoc" id="generateGoogleDoc" ref="eric6.QScintilla.DocstringGenerator.GoogledocGenerator.html#generateGoogleDoc" />
+      <keyword name="generateNumpyDoc" id="generateNumpyDoc" ref="eric6.QScintilla.DocstringGenerator.NumpydocGenerator.html#generateNumpyDoc" />
       <keyword name="generatePluginsVersionInfo" id="generatePluginsVersionInfo" ref="eric6.Utilities.__init__.html#generatePluginsVersionInfo" />
       <keyword name="generatePyQtToolPath" id="generatePyQtToolPath" ref="eric6.Utilities.__init__.html#generatePyQtToolPath" />
       <keyword name="generatePySideToolPath" id="generatePySideToolPath" ref="eric6.Utilities.__init__.html#generatePySideToolPath" />
       <keyword name="generateQtToolName" id="generateQtToolName" ref="eric6.Utilities.__init__.html#generateQtToolName" />
+      <keyword name="generateSphinxDoc" id="generateSphinxDoc" ref="eric6.QScintilla.DocstringGenerator.SphinxdocGenerator.html#generateSphinxDoc" />
       <keyword name="generateVersionInfo" id="generateVersionInfo" ref="eric6.Utilities.__init__.html#generateVersionInfo" />
       <keyword name="getAllImages" id="getAllImages" ref="eric6.WebBrowser.Tools.Scripts.html#getAllImages" />
       <keyword name="getAllMetaAttributes" id="getAllMetaAttributes" ref="eric6.WebBrowser.Tools.Scripts.html#getAllMetaAttributes" />
@@ -17521,6 +17584,7 @@
       <keyword name="getDeviceIcon" id="getDeviceIcon" ref="eric6.MicroPython.MicroPythonDevices.html#getDeviceIcon" />
       <keyword name="getDiffColour" id="getDiffColour" ref="eric6.Preferences.__init__.html#getDiffColour" />
       <keyword name="getDirs" id="getDirs" ref="eric6.Utilities.__init__.html#getDirs" />
+      <keyword name="getDocstringGenerator" id="getDocstringGenerator" ref="eric6.QScintilla.DocstringGenerator.__init__.html#getDocstringGenerator" />
       <keyword name="getDocuViewer" id="getDocuViewer" ref="eric6.Preferences.__init__.html#getDocuViewer" />
       <keyword name="getEditor" id="getEditor" ref="eric6.Preferences.__init__.html#getEditor" />
       <keyword name="getEditorAPI" id="getEditorAPI" ref="eric6.Preferences.__init__.html#getEditorAPI" />
@@ -17561,6 +17625,7 @@
       <keyword name="getImporterInfo" id="getImporterInfo" ref="eric6.WebBrowser.Bookmarks.BookmarksImporters.XbelImporter.html#getImporterInfo" />
       <keyword name="getImporterInfo" id="getImporterInfo" ref="eric6.WebBrowser.Bookmarks.BookmarksImporters.__init__.html#getImporterInfo" />
       <keyword name="getImporters" id="getImporters" ref="eric6.WebBrowser.Bookmarks.BookmarksImporters.__init__.html#getImporters" />
+      <keyword name="getIndentStr" id="getIndentStr" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#getIndentStr" />
       <keyword name="getInstallCommand" id="getInstallCommand" ref="eric6.E5Network.E5GoogleMailHelpers.html#getInstallCommand" />
       <keyword name="getInstallInfoFilePath" id="getInstallInfoFilePath" ref="eric6.Globals.__init__.html#getInstallInfoFilePath" />
       <keyword name="getIrc" id="getIrc" ref="eric6.Preferences.__init__.html#getIrc" />
@@ -17615,6 +17680,7 @@
       <keyword name="getShell" id="getShell" ref="eric6.Preferences.__init__.html#getShell" />
       <keyword name="getSupportedApiLanguages" id="getSupportedApiLanguages" ref="eric6.QScintilla.Lexers.__init__.html#getSupportedApiLanguages" />
       <keyword name="getSupportedDevices" id="getSupportedDevices" ref="eric6.MicroPython.MicroPythonDevices.html#getSupportedDevices" />
+      <keyword name="getSupportedDocstringTypes" id="getSupportedDocstringTypes" ref="eric6.QScintilla.DocstringGenerator.__init__.html#getSupportedDocstringTypes" />
       <keyword name="getSupportedFormats" id="getSupportedFormats" ref="eric6.QScintilla.Exporters.__init__.html#getSupportedFormats" />
       <keyword name="getSupportedLanguages" id="getSupportedLanguages" ref="eric6.QScintilla.Lexers.__init__.html#getSupportedLanguages" />
       <keyword name="getSymlinkIcon" id="getSymlinkIcon" ref="eric6.UI.PixmapCache.html#getSymlinkIcon" />
@@ -18847,6 +18913,13 @@
       <file>eric6.Project.UserPropertiesDialog.html</file>
       <file>eric6.PyUnit.UnittestDialog.html</file>
       <file>eric6.QScintilla.APIsManager.html</file>
+      <file>eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html</file>
+      <file>eric6.QScintilla.DocstringGenerator.EricdocGenerator.html</file>
+      <file>eric6.QScintilla.DocstringGenerator.GoogledocGenerator.html</file>
+      <file>eric6.QScintilla.DocstringGenerator.NumpydocGenerator.html</file>
+      <file>eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html</file>
+      <file>eric6.QScintilla.DocstringGenerator.SphinxdocGenerator.html</file>
+      <file>eric6.QScintilla.DocstringGenerator.__init__.html</file>
       <file>eric6.QScintilla.Editor.html</file>
       <file>eric6.QScintilla.EditorAssembly.html</file>
       <file>eric6.QScintilla.EditorButtonsWidget.html</file>
@@ -19326,6 +19399,7 @@
       <file>index-eric6.Preferences.html</file>
       <file>index-eric6.Project.html</file>
       <file>index-eric6.PyUnit.html</file>
+      <file>index-eric6.QScintilla.DocstringGenerator.html</file>
       <file>index-eric6.QScintilla.Exporters.html</file>
       <file>index-eric6.QScintilla.Lexers.html</file>
       <file>index-eric6.QScintilla.MarkupProviders.html</file>
--- a/eric6/Documentation/Source/eric6.E5XML.Config.html	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/Documentation/Source/eric6.E5XML.Config.html	Fri Jan 22 16:48:43 2021 +0100
@@ -28,7 +28,7 @@
 <h3>Global Attributes</h3>
 
 <table>
-<tr><td>debuggerPropertiesFileFormatVersion</td></tr><tr><td>dictionariesListFileFormatVersion</td></tr><tr><td>highlightingStylesFileFormatVersion</td></tr><tr><td>multiProjectFileFormatVersion</td></tr><tr><td>pluginRepositoryFileFormatVersion</td></tr><tr><td>projectFileFormatVersion</td></tr><tr><td>projectFileFormatVersionAlt</td></tr><tr><td>projectFileFormatVersionIdl</td></tr><tr><td>projectFileFormatVersionMake</td></tr><tr><td>projectFileFormatVersionProto</td></tr><tr><td>projectFileFormatVersionUic</td></tr><tr><td>sessionFileFormatVersion</td></tr><tr><td>shortcutsFileFormatVersion</td></tr><tr><td>tasksFileFormatVersion</td></tr><tr><td>templatesFileFormatVersion</td></tr><tr><td>userProjectFileFormatVersion</td></tr>
+<tr><td>debuggerPropertiesFileFormatVersion</td></tr><tr><td>dictionariesListFileFormatVersion</td></tr><tr><td>highlightingStylesFileFormatVersion</td></tr><tr><td>multiProjectFileFormatVersion</td></tr><tr><td>pluginRepositoryFileFormatVersion</td></tr><tr><td>projectFileFormatVersion</td></tr><tr><td>projectFileFormatVersionAlt</td></tr><tr><td>projectFileFormatVersionIdl</td></tr><tr><td>projectFileFormatVersionMake</td></tr><tr><td>projectFileFormatVersionProto</td></tr><tr><td>projectFileFormatVersionRcc</td></tr><tr><td>projectFileFormatVersionUic</td></tr><tr><td>sessionFileFormatVersion</td></tr><tr><td>shortcutsFileFormatVersion</td></tr><tr><td>tasksFileFormatVersion</td></tr><tr><td>templatesFileFormatVersion</td></tr><tr><td>userProjectFileFormatVersion</td></tr>
 </table>
 <h3>Classes</h3>
 
--- a/eric6/Documentation/Source/eric6.Project.Project.html	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/Documentation/Source/eric6.Project.Project.html	Fri Jan 22 16:48:43 2021 +0100
@@ -677,6 +677,10 @@
 <td>Public method to get the default extension for the project's programming language.</td>
 </tr>
 <tr>
+<td><a href="#Project.getDocstringType">getDocstringType</a></td>
+<td>Public method to get the configured docstring style.</td>
+</tr>
+<tr>
 <td><a href="#Project.getEditorLexerAssoc">getEditorLexerAssoc</a></td>
 <td>Public method to retrieve a lexer association.</td>
 </tr>
@@ -813,6 +817,10 @@
 <td>Public slot used to handle the preferencesChanged signal.</td>
 </tr>
 <tr>
+<td><a href="#Project.hasDefaultDocstringParameter">hasDefaultDocstringParameter</a></td>
+<td>Public method to test, if the project contains the default docstring parameter.</td>
+</tr>
+<tr>
 <td><a href="#Project.hasDefaultIdlCompilerParameters">hasDefaultIdlCompilerParameters</a></td>
 <td>Public method to test, if the project contains the default IDL compiler parameters.</td>
 </tr>
@@ -2404,6 +2412,25 @@
 default extension (including the dot) (string)
 </dd>
 </dl>
+<a NAME="Project.getDocstringType" ID="Project.getDocstringType"></a>
+<h4>Project.getDocstringType</h4>
+<b>getDocstringType</b>(<i></i>)
+
+<p>
+        Public method to get the configured docstring style.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+configured docstring style
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+str
+</dd>
+</dl>
 <a NAME="Project.getEditorLexerAssoc" ID="Project.getEditorLexerAssoc"></a>
 <h4>Project.getEditorLexerAssoc</h4>
 <b>getEditorLexerAssoc</b>(<i>filename</i>)
@@ -2980,6 +3007,26 @@
 <p>
         Public slot used to handle the preferencesChanged signal.
 </p>
+<a NAME="Project.hasDefaultDocstringParameter" ID="Project.hasDefaultDocstringParameter"></a>
+<h4>Project.hasDefaultDocstringParameter</h4>
+<b>hasDefaultDocstringParameter</b>(<i></i>)
+
+<p>
+        Public method to test, if the project contains the default docstring
+        parameter.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating default parameter
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
 <a NAME="Project.hasDefaultIdlCompilerParameters" ID="Project.hasDefaultIdlCompilerParameters"></a>
 <h4>Project.hasDefaultIdlCompilerParameters</h4>
 <b>hasDefaultIdlCompilerParameters</b>(<i></i>)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html	Fri Jan 22 16:48:43 2021 +0100
@@ -0,0 +1,435 @@
+<!DOCTYPE html>
+<html><head>
+<title>eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator</title>
+<meta charset="UTF-8">
+<style>
+body {
+    background: #EDECE6;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #85774A; }
+h2 { color: white; background: #85774A; }
+h3 { color: white; background: #9D936E; }
+h4 { color: white; background: #9D936E; }
+    
+a { color: #BA6D36; }
+
+</style>
+</head>
+<body>
+<a NAME="top" ID="top"></a>
+<h1>eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator</h1>
+
+<p>
+Module implementing a docstring generator base class.
+</p>
+<h3>Global Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Classes</h3>
+
+<table>
+
+<tr>
+<td><a href="#BaseDocstringGenerator">BaseDocstringGenerator</a></td>
+<td>Class implementing a docstring generator base class.</td>
+</tr>
+<tr>
+<td><a href="#DocstringMenuForEnterOnly">DocstringMenuForEnterOnly</a></td>
+<td>Class implementing a special menu reacting to the enter/return keys only.</td>
+</tr>
+<tr>
+<td><a href="#FunctionInfo">FunctionInfo</a></td>
+<td>Class implementing an object to store function information.</td>
+</tr>
+</table>
+<h3>Functions</h3>
+
+<table>
+
+<tr>
+<td><a href="#getIndentStr">getIndentStr</a></td>
+<td>Function to get the indentation of a text.</td>
+</tr>
+</table>
+<hr />
+<hr />
+<a NAME="BaseDocstringGenerator" ID="BaseDocstringGenerator"></a>
+<h2>BaseDocstringGenerator</h2>
+
+<p>
+    Class implementing a docstring generator base class.
+</p>
+<h3>Derived from</h3>
+object
+<h3>Class Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Class Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+
+<table>
+
+<tr>
+<td><a href="#BaseDocstringGenerator.__init__">BaseDocstringGenerator</a></td>
+<td>Constructor</td>
+</tr>
+<tr>
+<td><a href="#BaseDocstringGenerator._generateDocstringList">_generateDocstringList</a></td>
+<td>Protected method to generate type specific docstrings based on the extracted function information.</td>
+</tr>
+<tr>
+<td><a href="#BaseDocstringGenerator.getDocstringType">getDocstringType</a></td>
+<td>Public method to determine the docstring type to be generated.</td>
+</tr>
+<tr>
+<td><a href="#BaseDocstringGenerator.hasFunctionDefinition">hasFunctionDefinition</a></td>
+<td>Public method to test, if the cursor is right below a function definition.</td>
+</tr>
+<tr>
+<td><a href="#BaseDocstringGenerator.insertDocstring">insertDocstring</a></td>
+<td>Public method to insert a docstring for the function at the cursor position.</td>
+</tr>
+<tr>
+<td><a href="#BaseDocstringGenerator.isDocstringIntro">isDocstringIntro</a></td>
+<td>Public function to test, if the line up to the cursor position might be introducing a docstring.</td>
+</tr>
+<tr>
+<td><a href="#BaseDocstringGenerator.isFunctionStart">isFunctionStart</a></td>
+<td>Public method to test, if a text is the start of a function or method definition.</td>
+</tr>
+</table>
+<h3>Static Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+
+<a NAME="BaseDocstringGenerator.__init__" ID="BaseDocstringGenerator.__init__"></a>
+<h4>BaseDocstringGenerator (Constructor)</h4>
+<b>BaseDocstringGenerator</b>(<i>editor</i>)
+
+<p>
+        Constructor
+</p>
+<dl>
+
+<dt><i>editor</i> (Editor)</dt>
+<dd>
+reference to the editor widget
+</dd>
+</dl>
+<a NAME="BaseDocstringGenerator._generateDocstringList" ID="BaseDocstringGenerator._generateDocstringList"></a>
+<h4>BaseDocstringGenerator._generateDocstringList</h4>
+<b>_generateDocstringList</b>(<i>functionInfo, docstringType</i>)
+
+<p>
+        Protected method to generate type specific docstrings based on the
+        extracted function information.
+</p>
+<dl>
+
+<dt><i>functionInfo</i> (FunctionInfo)</dt>
+<dd>
+reference to the function info object
+</dd>
+<dt><i>docstringType</i></dt>
+<dd>
+kind of docstring to be generated
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+list of docstring lines
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+str
+</dd>
+</dl>
+<a NAME="BaseDocstringGenerator.getDocstringType" ID="BaseDocstringGenerator.getDocstringType"></a>
+<h4>BaseDocstringGenerator.getDocstringType</h4>
+<b>getDocstringType</b>(<i></i>)
+
+<p>
+        Public method to determine the docstring type to be generated.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+docstring type (one of 'ericdoc', 'numpydoc', 'googledoc',
+            'sphinxdoc')
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+str
+</dd>
+</dl>
+<a NAME="BaseDocstringGenerator.hasFunctionDefinition" ID="BaseDocstringGenerator.hasFunctionDefinition"></a>
+<h4>BaseDocstringGenerator.hasFunctionDefinition</h4>
+<b>hasFunctionDefinition</b>(<i>cursorPosition</i>)
+
+<p>
+        Public method to test, if the cursor is right below a function
+        definition.
+</p>
+<dl>
+
+<dt><i>cursorPosition</i> (tuple of (int, int))</dt>
+<dd>
+current cursor position (line and column)
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating cursor is right below a function definition
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
+<a NAME="BaseDocstringGenerator.insertDocstring" ID="BaseDocstringGenerator.insertDocstring"></a>
+<h4>BaseDocstringGenerator.insertDocstring</h4>
+<b>insertDocstring</b>(<i>cursorPosition, fromStart=True</i>)
+
+<p>
+        Public method to insert a docstring for the function at the cursor
+        position.
+</p>
+<dl>
+
+<dt><i>cursorPosition</i> (tuple of (int, int))</dt>
+<dd>
+position of the cursor (line and index)
+</dd>
+<dt><i>fromStart</i> (bool)</dt>
+<dd>
+flag indicating that the editor text cursor is placed
+            on the line starting the function definition
+</dd>
+</dl>
+<a NAME="BaseDocstringGenerator.isDocstringIntro" ID="BaseDocstringGenerator.isDocstringIntro"></a>
+<h4>BaseDocstringGenerator.isDocstringIntro</h4>
+<b>isDocstringIntro</b>(<i>cursorPosition</i>)
+
+<p>
+        Public function to test, if the line up to the cursor position might be
+        introducing a docstring.
+</p>
+<dl>
+
+<dt><i>cursorPosition</i> (tuple of (int, int))</dt>
+<dd>
+current cursor position (line and column)
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating a potential start of a docstring
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
+<a NAME="BaseDocstringGenerator.isFunctionStart" ID="BaseDocstringGenerator.isFunctionStart"></a>
+<h4>BaseDocstringGenerator.isFunctionStart</h4>
+<b>isFunctionStart</b>(<i>text</i>)
+
+<p>
+        Public method to test, if a text is the start of a function or method
+        definition.
+</p>
+<dl>
+
+<dt><i>text</i> (str)</dt>
+<dd>
+line of text to be tested
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating that the given text starts a function or
+            method definition (always False)
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+<hr />
+<a NAME="DocstringMenuForEnterOnly" ID="DocstringMenuForEnterOnly"></a>
+<h2>DocstringMenuForEnterOnly</h2>
+
+<p>
+    Class implementing a special menu reacting to the enter/return keys only.
+</p>
+<p>
+    If a keyboard input is not the "enter key", the menu is closed and the
+    input is inserted to the code editor.
+</p>
+<h3>Derived from</h3>
+QMenu
+<h3>Class Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Class Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+
+<table>
+
+<tr>
+<td><a href="#DocstringMenuForEnterOnly.__init__">DocstringMenuForEnterOnly</a></td>
+<td>Constructor</td>
+</tr>
+<tr>
+<td><a href="#DocstringMenuForEnterOnly.keyPressEvent">keyPressEvent</a></td>
+<td>Protected method to handle key press events.</td>
+</tr>
+</table>
+<h3>Static Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+
+<a NAME="DocstringMenuForEnterOnly.__init__" ID="DocstringMenuForEnterOnly.__init__"></a>
+<h4>DocstringMenuForEnterOnly (Constructor)</h4>
+<b>DocstringMenuForEnterOnly</b>(<i>editor</i>)
+
+<p>
+        Constructor
+</p>
+<dl>
+
+<dt><i>editor</i> (Editor)</dt>
+<dd>
+reference to the editor
+</dd>
+</dl>
+<a NAME="DocstringMenuForEnterOnly.keyPressEvent" ID="DocstringMenuForEnterOnly.keyPressEvent"></a>
+<h4>DocstringMenuForEnterOnly.keyPressEvent</h4>
+<b>keyPressEvent</b>(<i>evt</i>)
+
+<p>
+        Protected method to handle key press events.
+</p>
+<dl>
+
+<dt><i>evt</i> (QKeyEvent)</dt>
+<dd>
+reference to the key press event object
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+<hr />
+<a NAME="FunctionInfo" ID="FunctionInfo"></a>
+<h2>FunctionInfo</h2>
+
+<p>
+    Class implementing an object to store function information.
+</p>
+<p>
+    Methods to extract the relevant information need to be implemented in
+    language specific subclasses.
+</p>
+<h3>Derived from</h3>
+object
+<h3>Class Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Class Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+
+<table>
+
+<tr>
+<td><a href="#FunctionInfo.__init__">FunctionInfo</a></td>
+<td>Constructor</td>
+</tr>
+</table>
+<h3>Static Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+
+<a NAME="FunctionInfo.__init__" ID="FunctionInfo.__init__"></a>
+<h4>FunctionInfo (Constructor)</h4>
+<b>FunctionInfo</b>(<i></i>)
+
+<p>
+        Constructor
+</p>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+<hr />
+<a NAME="getIndentStr" ID="getIndentStr"></a>
+<h2>getIndentStr</h2>
+<b>getIndentStr</b>(<i>text</i>)
+
+<p>
+    Function to get the indentation of a text.
+</p>
+<dl>
+
+<dt><i>text</i> (str)</dt>
+<dd>
+text to extract indentation from
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+indentation string
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+str
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.EricdocGenerator.html	Fri Jan 22 16:48:43 2021 +0100
@@ -0,0 +1,82 @@
+<!DOCTYPE html>
+<html><head>
+<title>eric6.QScintilla.DocstringGenerator.EricdocGenerator</title>
+<meta charset="UTF-8">
+<style>
+body {
+    background: #EDECE6;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #85774A; }
+h2 { color: white; background: #85774A; }
+h3 { color: white; background: #9D936E; }
+h4 { color: white; background: #9D936E; }
+    
+a { color: #BA6D36; }
+
+</style>
+</head>
+<body>
+<a NAME="top" ID="top"></a>
+<h1>eric6.QScintilla.DocstringGenerator.EricdocGenerator</h1>
+
+<p>
+Module implementing the docstring generator for the 'ericdoc' style.
+</p>
+<h3>Global Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Classes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Functions</h3>
+
+<table>
+
+<tr>
+<td><a href="#generateEricDoc">generateEricDoc</a></td>
+<td>Function to generate the docstring line list iaw.</td>
+</tr>
+</table>
+<hr />
+<hr />
+<a NAME="generateEricDoc" ID="generateEricDoc"></a>
+<h2>generateEricDoc</h2>
+<b>generateEricDoc</b>(<i>functionInfo</i>)
+
+<p>
+    Function to generate the docstring line list iaw. eric documentation style.
+</p>
+<p>
+    Note: Partial English text is created with DESCRIPTION placeholders
+    for descriptions and TYPE placeholders for type information
+</p>
+<dl>
+
+<dt><i>functionInfo</i> (FunctionInfo)</dt>
+<dd>
+object containing the function information to base
+        the docstring on
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+list of docstring lines
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+str
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.GoogledocGenerator.html	Fri Jan 22 16:48:43 2021 +0100
@@ -0,0 +1,87 @@
+<!DOCTYPE html>
+<html><head>
+<title>eric6.QScintilla.DocstringGenerator.GoogledocGenerator</title>
+<meta charset="UTF-8">
+<style>
+body {
+    background: #EDECE6;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #85774A; }
+h2 { color: white; background: #85774A; }
+h3 { color: white; background: #9D936E; }
+h4 { color: white; background: #9D936E; }
+    
+a { color: #BA6D36; }
+
+</style>
+</head>
+<body>
+<a NAME="top" ID="top"></a>
+<h1>eric6.QScintilla.DocstringGenerator.GoogledocGenerator</h1>
+
+<p>
+Module implementing the docstring generator for the 'sphinxdoc' style.
+</p>
+<h3>Global Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Classes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Functions</h3>
+
+<table>
+
+<tr>
+<td><a href="#generateGoogleDoc">generateGoogleDoc</a></td>
+<td>Function to generate the docstring line list iaw.</td>
+</tr>
+</table>
+<hr />
+<hr />
+<a NAME="generateGoogleDoc" ID="generateGoogleDoc"></a>
+<h2>generateGoogleDoc</h2>
+<b>generateGoogleDoc</b>(<i>functionInfo, editor</i>)
+
+<p>
+    Function to generate the docstring line list iaw. Sphinx documentation
+    style.
+</p>
+<p>
+    Note: Text is created with DESCRIPTION placeholders for descriptions and
+    TYPE placeholders for type information
+</p>
+<dl>
+
+<dt><i>functionInfo</i> (FunctionInfo)</dt>
+<dd>
+object containing the function information to base
+        the docstring on
+</dd>
+<dt><i>editor</i> (Editor)</dt>
+<dd>
+reference to the editor
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+list of docstring lines
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+str
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.NumpydocGenerator.html	Fri Jan 22 16:48:43 2021 +0100
@@ -0,0 +1,87 @@
+<!DOCTYPE html>
+<html><head>
+<title>eric6.QScintilla.DocstringGenerator.NumpydocGenerator</title>
+<meta charset="UTF-8">
+<style>
+body {
+    background: #EDECE6;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #85774A; }
+h2 { color: white; background: #85774A; }
+h3 { color: white; background: #9D936E; }
+h4 { color: white; background: #9D936E; }
+    
+a { color: #BA6D36; }
+
+</style>
+</head>
+<body>
+<a NAME="top" ID="top"></a>
+<h1>eric6.QScintilla.DocstringGenerator.NumpydocGenerator</h1>
+
+<p>
+Module implementing the docstring generator for the 'numpydoc' style.
+</p>
+<h3>Global Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Classes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Functions</h3>
+
+<table>
+
+<tr>
+<td><a href="#generateNumpyDoc">generateNumpyDoc</a></td>
+<td>Function to generate the docstring line list iaw.</td>
+</tr>
+</table>
+<hr />
+<hr />
+<a NAME="generateNumpyDoc" ID="generateNumpyDoc"></a>
+<h2>generateNumpyDoc</h2>
+<b>generateNumpyDoc</b>(<i>functionInfo, editor</i>)
+
+<p>
+    Function to generate the docstring line list iaw. NumPy documentation
+    style.
+</p>
+<p>
+    Note: Text is created with DESCRIPTION placeholders for descriptions and
+    TYPE placeholders for type information
+</p>
+<dl>
+
+<dt><i>functionInfo</i> (FunctionInfo)</dt>
+<dd>
+object containing the function information to base
+        the docstring on
+</dd>
+<dt><i>editor</i> (Editor)</dt>
+<dd>
+reference to the editor
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+list of docstring lines
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+str
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html	Fri Jan 22 16:48:43 2021 +0100
@@ -0,0 +1,740 @@
+<!DOCTYPE html>
+<html><head>
+<title>eric6.QScintilla.DocstringGenerator.PyDocstringGenerator</title>
+<meta charset="UTF-8">
+<style>
+body {
+    background: #EDECE6;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #85774A; }
+h2 { color: white; background: #85774A; }
+h3 { color: white; background: #9D936E; }
+h4 { color: white; background: #9D936E; }
+    
+a { color: #BA6D36; }
+
+</style>
+</head>
+<body>
+<a NAME="top" ID="top"></a>
+<h1>eric6.QScintilla.DocstringGenerator.PyDocstringGenerator</h1>
+
+<p>
+Module implementing a docstring generator for Python.
+</p>
+<h3>Global Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Classes</h3>
+
+<table>
+
+<tr>
+<td><a href="#PyDocstringGenerator">PyDocstringGenerator</a></td>
+<td>Class implementing a docstring generator for Python.</td>
+</tr>
+<tr>
+<td><a href="#PyFunctionInfo">PyFunctionInfo</a></td>
+<td>Class implementing an object to extract and store function information.</td>
+</tr>
+</table>
+<h3>Functions</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<hr />
+<hr />
+<a NAME="PyDocstringGenerator" ID="PyDocstringGenerator"></a>
+<h2>PyDocstringGenerator</h2>
+
+<p>
+    Class implementing a docstring generator for Python.
+</p>
+<h3>Derived from</h3>
+BaseDocstringGenerator
+<h3>Class Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Class Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+
+<table>
+
+<tr>
+<td><a href="#PyDocstringGenerator.__init__">PyDocstringGenerator</a></td>
+<td>Constructor</td>
+</tr>
+<tr>
+<td><a href="#PyDocstringGenerator.__generateDocstring">__generateDocstring</a></td>
+<td>Private method to generate the list of docstring lines.</td>
+</tr>
+<tr>
+<td><a href="#PyDocstringGenerator.__generateDocstringFromBelow">__generateDocstringFromBelow</a></td>
+<td>Private method to generate a docstring when the gicen position is on the line below the end of the definition.</td>
+</tr>
+<tr>
+<td><a href="#PyDocstringGenerator.__generateDocstringFromStart">__generateDocstringFromStart</a></td>
+<td>Private method to generate a docstring based on the cursor being placed on the first line of the definition.</td>
+</tr>
+<tr>
+<td><a href="#PyDocstringGenerator.__getFunctionBody">__getFunctionBody</a></td>
+<td>Private method to get the function body.</td>
+</tr>
+<tr>
+<td><a href="#PyDocstringGenerator.__getFunctionDefinitionFromBelow">__getFunctionDefinitionFromBelow</a></td>
+<td>Private method to extract the function definition based on the cursor being placed on the first line after the definition.</td>
+</tr>
+<tr>
+<td><a href="#PyDocstringGenerator.__getFunctionDefinitionFromStart">__getFunctionDefinitionFromStart</a></td>
+<td>Private method to extract the function definition based on the cursor being placed on the first line of the definition.</td>
+</tr>
+<tr>
+<td><a href="#PyDocstringGenerator.__getIndentationInsertString">__getIndentationInsertString</a></td>
+<td>Private method to create the indentation string for the docstring.</td>
+</tr>
+<tr>
+<td><a href="#PyDocstringGenerator.__isTripleQuotesStart">__isTripleQuotesStart</a></td>
+<td>Private method to test, if the given text is the start of a triple quoted string.</td>
+</tr>
+<tr>
+<td><a href="#PyDocstringGenerator.hasFunctionDefinition">hasFunctionDefinition</a></td>
+<td>Public method to test, if the cursor is right below a function definition.</td>
+</tr>
+<tr>
+<td><a href="#PyDocstringGenerator.insertDocstring">insertDocstring</a></td>
+<td>Public method to insert a docstring for the function at the cursor position.</td>
+</tr>
+<tr>
+<td><a href="#PyDocstringGenerator.isDocstringIntro">isDocstringIntro</a></td>
+<td>Public function to test, if the line up to the cursor position might be introducing a docstring.</td>
+</tr>
+<tr>
+<td><a href="#PyDocstringGenerator.isFunctionStart">isFunctionStart</a></td>
+<td>Public method to test, if a text is the start of a function or method definition.</td>
+</tr>
+</table>
+<h3>Static Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+
+<a NAME="PyDocstringGenerator.__init__" ID="PyDocstringGenerator.__init__"></a>
+<h4>PyDocstringGenerator (Constructor)</h4>
+<b>PyDocstringGenerator</b>(<i>editor</i>)
+
+<p>
+        Constructor
+</p>
+<dl>
+
+<dt><i>editor</i> (Editor)</dt>
+<dd>
+reference to the editor widget
+</dd>
+</dl>
+<a NAME="PyDocstringGenerator.__generateDocstring" ID="PyDocstringGenerator.__generateDocstring"></a>
+<h4>PyDocstringGenerator.__generateDocstring</h4>
+<b>__generateDocstring</b>(<i>quote, functionDef, bodyStartLine</i>)
+
+<p>
+        Private method to generate the list of docstring lines.
+</p>
+<dl>
+
+<dt><i>quote</i> (str)</dt>
+<dd>
+quote string
+</dd>
+<dt><i>functionDef</i> (str)</dt>
+<dd>
+text containing the function definition
+</dd>
+<dt><i>bodyStartLine</i> (int)</dt>
+<dd>
+starting line of the function body
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+list of docstring lines
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+list of str
+</dd>
+</dl>
+<a NAME="PyDocstringGenerator.__generateDocstringFromBelow" ID="PyDocstringGenerator.__generateDocstringFromBelow"></a>
+<h4>PyDocstringGenerator.__generateDocstringFromBelow</h4>
+<b>__generateDocstringFromBelow</b>(<i>cursorPosition</i>)
+
+<p>
+        Private method to generate a docstring when the gicen position is on
+        the line below the end of the definition.
+</p>
+<dl>
+
+<dt><i>cursorPosition</i> (tuple of (int, int))</dt>
+<dd>
+position of the cursor (line and index)
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+tuple containing the docstring and a tuple containing the
+            insertion line and index
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+tuple of (str, tuple(int, int))
+</dd>
+</dl>
+<a NAME="PyDocstringGenerator.__generateDocstringFromStart" ID="PyDocstringGenerator.__generateDocstringFromStart"></a>
+<h4>PyDocstringGenerator.__generateDocstringFromStart</h4>
+<b>__generateDocstringFromStart</b>(<i></i>)
+
+<p>
+        Private method to generate a docstring based on the cursor being
+        placed on the first line of the definition.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+tuple containing the docstring and a tuple containing the
+            insertion line and index
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+tuple of (str, tuple(int, int))
+</dd>
+</dl>
+<a NAME="PyDocstringGenerator.__getFunctionBody" ID="PyDocstringGenerator.__getFunctionBody"></a>
+<h4>PyDocstringGenerator.__getFunctionBody</h4>
+<b>__getFunctionBody</b>(<i>functionIndent, startLine</i>)
+
+<p>
+        Private method to get the function body.
+</p>
+<dl>
+
+<dt><i>functionIndent</i> (str)</dt>
+<dd>
+indentation string of the function definition
+</dd>
+<dt><i>startLine</i> (int)</dt>
+<dd>
+starting line for the extraction process
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+text containing the function body
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+str
+</dd>
+</dl>
+<a NAME="PyDocstringGenerator.__getFunctionDefinitionFromBelow" ID="PyDocstringGenerator.__getFunctionDefinitionFromBelow"></a>
+<h4>PyDocstringGenerator.__getFunctionDefinitionFromBelow</h4>
+<b>__getFunctionDefinitionFromBelow</b>(<i>cursorPosition</i>)
+
+<p>
+        Private method to extract the function definition based on the cursor
+        being placed on the first line after the definition.
+</p>
+<dl>
+
+<dt><i>cursorPosition</i> (tuple of (int, int))</dt>
+<dd>
+current cursor position (line and column)
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+text containing the function definition
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+str
+</dd>
+</dl>
+<a NAME="PyDocstringGenerator.__getFunctionDefinitionFromStart" ID="PyDocstringGenerator.__getFunctionDefinitionFromStart"></a>
+<h4>PyDocstringGenerator.__getFunctionDefinitionFromStart</h4>
+<b>__getFunctionDefinitionFromStart</b>(<i></i>)
+
+<p>
+        Private method to extract the function definition based on the cursor
+        being placed on the first line of the definition.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+text containing the function definition
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+str
+</dd>
+</dl>
+<a NAME="PyDocstringGenerator.__getIndentationInsertString" ID="PyDocstringGenerator.__getIndentationInsertString"></a>
+<h4>PyDocstringGenerator.__getIndentationInsertString</h4>
+<b>__getIndentationInsertString</b>(<i>text</i>)
+
+<p>
+        Private method to create the indentation string for the docstring.
+</p>
+<dl>
+
+<dt><i>text</i> (str)</dt>
+<dd>
+text to based the indentation on
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+indentation string for docstring
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+str
+</dd>
+</dl>
+<a NAME="PyDocstringGenerator.__isTripleQuotesStart" ID="PyDocstringGenerator.__isTripleQuotesStart"></a>
+<h4>PyDocstringGenerator.__isTripleQuotesStart</h4>
+<b>__isTripleQuotesStart</b>(<i>text</i>)
+
+<p>
+        Private method to test, if the given text is the start of a triple
+        quoted string.
+</p>
+<dl>
+
+<dt><i>text</i> (str)</dt>
+<dd>
+text to be inspected
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating a triple quote start
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
+<a NAME="PyDocstringGenerator.hasFunctionDefinition" ID="PyDocstringGenerator.hasFunctionDefinition"></a>
+<h4>PyDocstringGenerator.hasFunctionDefinition</h4>
+<b>hasFunctionDefinition</b>(<i>cursorPosition</i>)
+
+<p>
+        Public method to test, if the cursor is right below a function
+        definition.
+</p>
+<dl>
+
+<dt><i>cursorPosition</i> (tuple of (int, int))</dt>
+<dd>
+current cursor position (line and column)
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating cursor is right below a function definition
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
+<a NAME="PyDocstringGenerator.insertDocstring" ID="PyDocstringGenerator.insertDocstring"></a>
+<h4>PyDocstringGenerator.insertDocstring</h4>
+<b>insertDocstring</b>(<i>cursorPosition, fromStart=True</i>)
+
+<p>
+        Public method to insert a docstring for the function at the cursor
+        position.
+</p>
+<dl>
+
+<dt><i>cursorPosition</i> (tuple of (int, int))</dt>
+<dd>
+position of the cursor (line and index)
+</dd>
+<dt><i>fromStart</i> (bool)</dt>
+<dd>
+flag indicating that the editor text cursor is placed
+            on the line starting the function definition
+</dd>
+</dl>
+<a NAME="PyDocstringGenerator.isDocstringIntro" ID="PyDocstringGenerator.isDocstringIntro"></a>
+<h4>PyDocstringGenerator.isDocstringIntro</h4>
+<b>isDocstringIntro</b>(<i>cursorPosition</i>)
+
+<p>
+        Public function to test, if the line up to the cursor position might be
+        introducing a docstring.
+</p>
+<dl>
+
+<dt><i>cursorPosition</i> (tuple of (int, int))</dt>
+<dd>
+current cursor position (line and column)
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating a potential start of a docstring
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
+<a NAME="PyDocstringGenerator.isFunctionStart" ID="PyDocstringGenerator.isFunctionStart"></a>
+<h4>PyDocstringGenerator.isFunctionStart</h4>
+<b>isFunctionStart</b>(<i>text</i>)
+
+<p>
+        Public method to test, if a text is the start of a function or method
+        definition.
+</p>
+<dl>
+
+<dt><i>text</i> (str)</dt>
+<dd>
+line of text to be tested
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating that the given text starts a function or
+            method definition
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+<hr />
+<a NAME="PyFunctionInfo" ID="PyFunctionInfo"></a>
+<h2>PyFunctionInfo</h2>
+
+<p>
+    Class implementing an object to extract and store function information.
+</p>
+<h3>Derived from</h3>
+FunctionInfo
+<h3>Class Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Class Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+
+<table>
+
+<tr>
+<td><a href="#PyFunctionInfo.__init__">PyFunctionInfo</a></td>
+<td>Constructor</td>
+</tr>
+<tr>
+<td><a href="#PyFunctionInfo.__findBracketPosition">__findBracketPosition</a></td>
+<td>Private method to find the start and end position of pairs of brackets.</td>
+</tr>
+<tr>
+<td><a href="#PyFunctionInfo.__findQuotePosition">__findQuotePosition</a></td>
+<td>Private method to find the start and end position of pairs of quotes.</td>
+</tr>
+<tr>
+<td><a href="#PyFunctionInfo.__isCharInPairs">__isCharInPairs</a></td>
+<td>Private method to test, if the given character position is between pairs of brackets or quotes.</td>
+</tr>
+<tr>
+<td><a href="#PyFunctionInfo.__splitArgumentToNameTypeValue">__splitArgumentToNameTypeValue</a></td>
+<td>Private method to split some argument text to name, type and value.</td>
+</tr>
+<tr>
+<td><a href="#PyFunctionInfo.__splitArgumentsTextToList">__splitArgumentsTextToList</a></td>
+<td>Private method to split the given arguments text into a list of arguments.</td>
+</tr>
+<tr>
+<td><a href="#PyFunctionInfo.parseBody">parseBody</a></td>
+<td>Public method to parse the function body text.</td>
+</tr>
+<tr>
+<td><a href="#PyFunctionInfo.parseDefinition">parseDefinition</a></td>
+<td>Public method to parse the function definition text.</td>
+</tr>
+</table>
+<h3>Static Methods</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+
+<a NAME="PyFunctionInfo.__init__" ID="PyFunctionInfo.__init__"></a>
+<h4>PyFunctionInfo (Constructor)</h4>
+<b>PyFunctionInfo</b>(<i></i>)
+
+<p>
+        Constructor
+</p>
+<a NAME="PyFunctionInfo.__findBracketPosition" ID="PyFunctionInfo.__findBracketPosition"></a>
+<h4>PyFunctionInfo.__findBracketPosition</h4>
+<b>__findBracketPosition</b>(<i>text, bracketLeft, bracketRight, posQuote</i>)
+
+<p>
+        Private method to find the start and end position of pairs of brackets.
+</p>
+<p>
+        https://stackoverflow.com/questions/29991917/
+        indices-of-matching-parentheses-in-python
+</p>
+<dl>
+
+<dt><i>text</i> (str)</dt>
+<dd>
+text to be parsed
+</dd>
+<dt><i>bracketLeft</i> (str)</dt>
+<dd>
+character of the left bracket
+</dd>
+<dt><i>bracketRight</i> (str)</dt>
+<dd>
+character of the right bracket
+</dd>
+<dt><i>posQuote</i> (list of tuple of (int, int))</dt>
+<dd>
+list of tuple with start and end position of pairs
+            of quotes
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+list of tuple with start and end position of pairs of brackets
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+list of tuple of (int, int)
+</dd>
+</dl>
+<dl>
+
+<dt>Raises <b>IndexError</b>:</dt>
+<dd>
+raised when a closing or opening bracket is
+            missing
+</dd>
+</dl>
+<a NAME="PyFunctionInfo.__findQuotePosition" ID="PyFunctionInfo.__findQuotePosition"></a>
+<h4>PyFunctionInfo.__findQuotePosition</h4>
+<b>__findQuotePosition</b>(<i>text</i>)
+
+<p>
+        Private method to find the start and end position of pairs of quotes.
+</p>
+<dl>
+
+<dt><i>text</i> (str)</dt>
+<dd>
+text to be parsed
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+list of tuple with start and end position of pairs of quotes
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+list of tuple of (int, int)
+</dd>
+</dl>
+<dl>
+
+<dt>Raises <b>IndexError</b>:</dt>
+<dd>
+raised when a matching close quote is missing
+</dd>
+</dl>
+<a NAME="PyFunctionInfo.__isCharInPairs" ID="PyFunctionInfo.__isCharInPairs"></a>
+<h4>PyFunctionInfo.__isCharInPairs</h4>
+<b>__isCharInPairs</b>(<i>posChar, pairs</i>)
+
+<p>
+        Private method to test, if the given character position is between
+        pairs of brackets or quotes.
+</p>
+<dl>
+
+<dt><i>posChar</i> (int)</dt>
+<dd>
+character position to be tested
+</dd>
+<dt><i>pairs</i> (list of tuple of (int, int))</dt>
+<dd>
+list containing pairs of positions
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating the position is in between
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
+<a NAME="PyFunctionInfo.__splitArgumentToNameTypeValue" ID="PyFunctionInfo.__splitArgumentToNameTypeValue"></a>
+<h4>PyFunctionInfo.__splitArgumentToNameTypeValue</h4>
+<b>__splitArgumentToNameTypeValue</b>(<i>argumentsList, quote, quoteReplace</i>)
+
+<p>
+        Private method to split some argument text to name, type and value.
+</p>
+<dl>
+
+<dt><i>argumentsList</i> (list of str)</dt>
+<dd>
+list of function argument definitions
+</dd>
+<dt><i>quote</i> (str)</dt>
+<dd>
+quote string to be replaced
+</dd>
+<dt><i>quoteReplace</i> (str)</dt>
+<dd>
+quote string to replace the original
+</dd>
+</dl>
+<a NAME="PyFunctionInfo.__splitArgumentsTextToList" ID="PyFunctionInfo.__splitArgumentsTextToList"></a>
+<h4>PyFunctionInfo.__splitArgumentsTextToList</h4>
+<b>__splitArgumentsTextToList</b>(<i>argumentsText</i>)
+
+<p>
+        Private method to split the given arguments text into a list of
+        arguments.
+</p>
+<p>
+        This function uses a comma to separate arguments and ignores a comma in
+        brackets and quotes.
+</p>
+<dl>
+
+<dt><i>argumentsText</i> (str)</dt>
+<dd>
+text containing the list of arguments
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+list of individual argument texts
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+list of str
+</dd>
+</dl>
+<a NAME="PyFunctionInfo.parseBody" ID="PyFunctionInfo.parseBody"></a>
+<h4>PyFunctionInfo.parseBody</h4>
+<b>parseBody</b>(<i>text</i>)
+
+<p>
+        Public method to parse the function body text.
+</p>
+<dl>
+
+<dt><i>text</i> (str)</dt>
+<dd>
+function body text
+</dd>
+</dl>
+<a NAME="PyFunctionInfo.parseDefinition" ID="PyFunctionInfo.parseDefinition"></a>
+<h4>PyFunctionInfo.parseDefinition</h4>
+<b>parseDefinition</b>(<i>text, quote, quoteReplace</i>)
+
+<p>
+        Public method to parse the function definition text.
+</p>
+<dl>
+
+<dt><i>text</i> (str)</dt>
+<dd>
+text containing the function definition
+</dd>
+<dt><i>quote</i> (str)</dt>
+<dd>
+quote string to be replaced
+</dd>
+<dt><i>quoteReplace</i> (str)</dt>
+<dd>
+quote string to replace the original
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.SphinxdocGenerator.html	Fri Jan 22 16:48:43 2021 +0100
@@ -0,0 +1,83 @@
+<!DOCTYPE html>
+<html><head>
+<title>eric6.QScintilla.DocstringGenerator.SphinxdocGenerator</title>
+<meta charset="UTF-8">
+<style>
+body {
+    background: #EDECE6;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #85774A; }
+h2 { color: white; background: #85774A; }
+h3 { color: white; background: #9D936E; }
+h4 { color: white; background: #9D936E; }
+    
+a { color: #BA6D36; }
+
+</style>
+</head>
+<body>
+<a NAME="top" ID="top"></a>
+<h1>eric6.QScintilla.DocstringGenerator.SphinxdocGenerator</h1>
+
+<p>
+Module implementing the docstring generator for the 'sphinxdoc' style.
+</p>
+<h3>Global Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Classes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Functions</h3>
+
+<table>
+
+<tr>
+<td><a href="#generateSphinxDoc">generateSphinxDoc</a></td>
+<td>Function to generate the docstring line list iaw.</td>
+</tr>
+</table>
+<hr />
+<hr />
+<a NAME="generateSphinxDoc" ID="generateSphinxDoc"></a>
+<h2>generateSphinxDoc</h2>
+<b>generateSphinxDoc</b>(<i>functionInfo</i>)
+
+<p>
+    Function to generate the docstring line list iaw. Sphinx documentation
+    style.
+</p>
+<p>
+    Note: Text is created with DESCRIPTION placeholders for descriptions and
+    TYPE placeholders for type information
+</p>
+<dl>
+
+<dt><i>functionInfo</i> (FunctionInfo)</dt>
+<dd>
+object containing the function information to base
+        the docstring on
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+list of docstring lines
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+str
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.__init__.html	Fri Jan 22 16:48:43 2021 +0100
@@ -0,0 +1,104 @@
+<!DOCTYPE html>
+<html><head>
+<title>eric6.QScintilla.DocstringGenerator.__init__</title>
+<meta charset="UTF-8">
+<style>
+body {
+    background: #EDECE6;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #85774A; }
+h2 { color: white; background: #85774A; }
+h3 { color: white; background: #9D936E; }
+h4 { color: white; background: #9D936E; }
+    
+a { color: #BA6D36; }
+
+</style>
+</head>
+<body>
+<a NAME="top" ID="top"></a>
+<h1>eric6.QScintilla.DocstringGenerator.__init__</h1>
+
+<p>
+Package containing the documentation string generator tool.
+</p>
+<h3>Global Attributes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Classes</h3>
+
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Functions</h3>
+
+<table>
+
+<tr>
+<td><a href="#getDocstringGenerator">getDocstringGenerator</a></td>
+<td>Function to get a docstring generator for the given editor.</td>
+</tr>
+<tr>
+<td><a href="#getSupportedDocstringTypes">getSupportedDocstringTypes</a></td>
+<td>Function to get the supported docstring types/styles.</td>
+</tr>
+</table>
+<hr />
+<hr />
+<a NAME="getDocstringGenerator" ID="getDocstringGenerator"></a>
+<h2>getDocstringGenerator</h2>
+<b>getDocstringGenerator</b>(<i>editor</i>)
+
+<p>
+    Function to get a docstring generator for the given editor.
+</p>
+<dl>
+
+<dt><i>editor</i> (Editor)</dt>
+<dd>
+reference to the editor to create a docstring generator for
+</dd>
+</dl>
+<dl>
+<dt>Return:</dt>
+<dd>
+reference to the created docstring generator
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+BaseDocstringGenerator
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+<hr />
+<a NAME="getSupportedDocstringTypes" ID="getSupportedDocstringTypes"></a>
+<h2>getSupportedDocstringTypes</h2>
+<b>getSupportedDocstringTypes</b>(<i></i>)
+
+<p>
+    Function to get the supported docstring types/styles.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+list of tuples with supported docstring type/style and the
+        corresponding display string
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+tuple of (str, str)
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file
--- a/eric6/Documentation/Source/eric6.QScintilla.Editor.html	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/Documentation/Source/eric6.QScintilla.Editor.html	Fri Jan 22 16:48:43 2021 +0100
@@ -369,6 +369,10 @@
 <td>Private slot to handle the cursorPositionChanged signal.</td>
 </tr>
 <tr>
+<td><a href="#Editor.__delayedDocstringMenuPopup">__delayedDocstringMenuPopup</a></td>
+<td>Private method to test, if the user might want to insert a docstring.</td>
+</tr>
+<tr>
 <td><a href="#Editor.__deleteAllChangeMarkers">__deleteAllChangeMarkers</a></td>
 <td>Private slot to delete all change markers.</td>
 </tr>
@@ -517,6 +521,10 @@
 <td>Private slot to initialize the online syntax check.</td>
 </tr>
 <tr>
+<td><a href="#Editor.__insertDocstring">__insertDocstring</a></td>
+<td>Private slot to generate and insert a docstring for the function under the cursor.</td>
+</tr>
+<tr>
 <td><a href="#Editor.__isCommentedLine">__isCommentedLine</a></td>
 <td>Private method to check, if the given line is a comment line as produced by the configured comment rules.</td>
 </tr>
@@ -605,6 +613,10 @@
 <td>Private slot to mark added and changed lines.</td>
 </tr>
 <tr>
+<td><a href="#Editor.__popupDocstringMenu">__popupDocstringMenu</a></td>
+<td>Private slot to pop up a menu asking the user, if a docstring should be inserted.</td>
+</tr>
+<tr>
 <td><a href="#Editor.__printPreview">__printPreview</a></td>
 <td>Private slot to generate a print preview.</td>
 </tr>
@@ -1161,6 +1173,10 @@
 <td>Public method to get the word boundaries at the current position.</td>
 </tr>
 <tr>
+<td><a href="#Editor.getDocstringGenerator">getDocstringGenerator</a></td>
+<td>Public method to get a reference to the docstring generator.</td>
+</tr>
+<tr>
 <td><a href="#Editor.getEditorConfig">getEditorConfig</a></td>
 <td>Public method to get the requested option via EditorConfig.</td>
 </tr>
@@ -2287,6 +2303,20 @@
 position in line of the cursor
 </dd>
 </dl>
+<a NAME="Editor.__delayedDocstringMenuPopup" ID="Editor.__delayedDocstringMenuPopup"></a>
+<h4>Editor.__delayedDocstringMenuPopup</h4>
+<b>__delayedDocstringMenuPopup</b>(<i>cursorPosition</i>)
+
+<p>
+        Private method to test, if the user might want to insert a docstring.
+</p>
+<dl>
+
+<dt><i>cursorPosition</i> (tuple of (int, int))</dt>
+<dd>
+current cursor position (line and column)
+</dd>
+</dl>
 <a NAME="Editor.__deleteAllChangeMarkers" ID="Editor.__deleteAllChangeMarkers"></a>
 <h4>Editor.__deleteAllChangeMarkers</h4>
 <b>__deleteAllChangeMarkers</b>(<i></i>)
@@ -2811,6 +2841,14 @@
 <p>
         Private slot to initialize the online syntax check.
 </p>
+<a NAME="Editor.__insertDocstring" ID="Editor.__insertDocstring"></a>
+<h4>Editor.__insertDocstring</h4>
+<b>__insertDocstring</b>(<i></i>)
+
+<p>
+        Private slot to generate and insert a docstring for the function under
+        the cursor.
+</p>
 <a NAME="Editor.__isCommentedLine" ID="Editor.__isCommentedLine"></a>
 <h4>Editor.__isCommentedLine</h4>
 <b>__isCommentedLine</b>(<i>line, commentStr</i>)
@@ -3142,6 +3180,26 @@
 <p>
         Private slot to mark added and changed lines.
 </p>
+<a NAME="Editor.__popupDocstringMenu" ID="Editor.__popupDocstringMenu"></a>
+<h4>Editor.__popupDocstringMenu</h4>
+<b>__popupDocstringMenu</b>(<i>lastLineText, lastCursorPosition</i>)
+
+<p>
+        Private slot to pop up a menu asking the user, if a docstring should be
+        inserted.
+</p>
+<dl>
+
+<dt><i>lastLineText</i> (str)</dt>
+<dd>
+line contents when the delay timer was started
+</dd>
+<dt><i>lastCursorPosition</i> (tuple of (int, int))</dt>
+<dd>
+position of the cursor when the delay timer
+            was started (line and index)
+</dd>
+</dl>
 <a NAME="Editor.__printPreview" ID="Editor.__printPreview"></a>
 <h4>Editor.__printPreview</h4>
 <b>__printPreview</b>(<i>printer</i>)
@@ -4806,6 +4864,25 @@
             (integer, integer)
 </dd>
 </dl>
+<a NAME="Editor.getDocstringGenerator" ID="Editor.getDocstringGenerator"></a>
+<h4>Editor.getDocstringGenerator</h4>
+<b>getDocstringGenerator</b>(<i></i>)
+
+<p>
+        Public method to get a reference to the docstring generator.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+reference to the docstring generator
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+BaseDocstringGenerator
+</dd>
+</dl>
 <a NAME="Editor.getEditorConfig" ID="Editor.getEditorConfig"></a>
 <h4>Editor.getEditorConfig</h4>
 <b>getEditorConfig</b>(<i>option</i>)
--- a/eric6/Documentation/Source/eric6.QScintilla.QsciScintillaCompat.html	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/Documentation/Source/eric6.QScintilla.QsciScintillaCompat.html	Fri Jan 22 16:48:43 2021 +0100
@@ -290,6 +290,10 @@
 <td>Public method to get the recently found target.</td>
 </tr>
 <tr>
+<td><a href="#QsciScintillaCompat.getGlobalCursorPosition">getGlobalCursorPosition</a></td>
+<td>Public method to determine the point of the cursor.</td>
+</tr>
+<tr>
 <td><a href="#QsciScintillaCompat.getIndicatorEndPos">getIndicatorEndPos</a></td>
 <td>Public method to get the end position of an indicator at a position.</td>
 </tr>
@@ -1319,6 +1323,25 @@
             (integer, integer)
 </dd>
 </dl>
+<a NAME="QsciScintillaCompat.getGlobalCursorPosition" ID="QsciScintillaCompat.getGlobalCursorPosition"></a>
+<h4>QsciScintillaCompat.getGlobalCursorPosition</h4>
+<b>getGlobalCursorPosition</b>(<i></i>)
+
+<p>
+            Public method to determine the point of the cursor.
+</p>
+<dl>
+<dt>Return:</dt>
+<dd>
+point of the cursor
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+QPoint
+</dd>
+</dl>
 <a NAME="QsciScintillaCompat.getIndicatorEndPos" ID="QsciScintillaCompat.getIndicatorEndPos"></a>
 <h4>QsciScintillaCompat.getIndicatorEndPos</h4>
 <b>getIndicatorEndPos</b>(<i>indicator, pos</i>)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/Documentation/Source/index-eric6.QScintilla.DocstringGenerator.html	Fri Jan 22 16:48:43 2021 +0100
@@ -0,0 +1,61 @@
+<!DOCTYPE html>
+<html><head>
+<title>eric6.QScintilla.DocstringGenerator</title>
+<meta charset="UTF-8">
+<style>
+body {
+    background: #EDECE6;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #85774A; }
+h2 { color: white; background: #85774A; }
+h3 { color: white; background: #9D936E; }
+h4 { color: white; background: #9D936E; }
+    
+a { color: #BA6D36; }
+
+</style>
+</head>
+<body>
+<h1>eric6.QScintilla.DocstringGenerator</h1>
+
+<p>
+Package containing the documentation string generator tool.
+</p>
+
+
+<h3>Modules</h3>
+<table>
+
+<tr>
+<td><a href="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html">BaseDocstringGenerator</a></td>
+<td>Module implementing a docstring generator base class.</td>
+</tr>
+<tr>
+<td><a href="eric6.QScintilla.DocstringGenerator.EricdocGenerator.html">EricdocGenerator</a></td>
+<td>Module implementing the docstring generator for the 'ericdoc' style.</td>
+</tr>
+<tr>
+<td><a href="eric6.QScintilla.DocstringGenerator.GoogledocGenerator.html">GoogledocGenerator</a></td>
+<td>Module implementing the docstring generator for the 'sphinxdoc' style.</td>
+</tr>
+<tr>
+<td><a href="eric6.QScintilla.DocstringGenerator.NumpydocGenerator.html">NumpydocGenerator</a></td>
+<td>Module implementing the docstring generator for the 'numpydoc' style.</td>
+</tr>
+<tr>
+<td><a href="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html">PyDocstringGenerator</a></td>
+<td>Module implementing a docstring generator for Python.</td>
+</tr>
+<tr>
+<td><a href="eric6.QScintilla.DocstringGenerator.SphinxdocGenerator.html">SphinxdocGenerator</a></td>
+<td>Module implementing the docstring generator for the 'sphinxdoc' style.</td>
+</tr>
+<tr>
+<td><a href="eric6.QScintilla.DocstringGenerator.__init__.html">DocstringGenerator</a></td>
+<td>Package containing the documentation string generator tool.</td>
+</tr>
+</table>
+</body></html>
\ No newline at end of file
--- a/eric6/Documentation/Source/index-eric6.QScintilla.html	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/Documentation/Source/index-eric6.QScintilla.html	Fri Jan 22 16:48:43 2021 +0100
@@ -40,6 +40,10 @@
 <table>
 
 <tr>
+<td><a href="index-eric6.QScintilla.DocstringGenerator.html">DocstringGenerator</a></td>
+<td>Package containing the documentation string generator tool.</td>
+</tr>
+<tr>
 <td><a href="index-eric6.QScintilla.Exporters.html">Exporters</a></td>
 <td>Package implementing exporters for various file formats.</td>
 </tr>
--- a/eric6/E5XML/Config.py	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/E5XML/Config.py	Fri Jan 22 16:48:43 2021 +0100
@@ -11,7 +11,8 @@
 multiProjectFileFormatVersion = "5.1"
 
 # version numbers of the project file
-projectFileFormatVersion = "6.4"
+projectFileFormatVersion = "6.5"
+projectFileFormatVersionRcc = "6.4"
 projectFileFormatVersionUic = "6.3"
 projectFileFormatVersionIdl = "6.2"
 projectFileFormatVersionMake = "6.1"
--- a/eric6/E5XML/ProjectReader.py	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/E5XML/ProjectReader.py	Fri Jan 22 16:48:43 2021 +0100
@@ -19,7 +19,7 @@
     """
     supportedVersions = ["4.6",
                          "5.0", "5.1",
-                         "6.0", "6.1", "6.2", "6.3", "6.4"]
+                         "6.0", "6.1", "6.2", "6.3", "6.4", "6.5"]
     
     def __init__(self, device, project):
         """
@@ -132,6 +132,8 @@
                 elif self.name() == "RccCompiler":
                     self.__readBasicDataField(
                         "RccCompiler", "RccCompilerParameters", "RCCPARAMS")
+                elif self.name() == "DocstringStyle":
+                    self.project.pdata["DOCSTRING"] = self.readElementText()
                 elif self.name() == "ProjectTypeSpecific":
                     self.__readBasicDataField(
                         "ProjectTypeSpecific", "ProjectTypeSpecificData",
--- a/eric6/E5XML/ProjectWriter.py	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/E5XML/ProjectWriter.py	Fri Jan 22 16:48:43 2021 +0100
@@ -13,9 +13,10 @@
 
 from .XMLStreamWriterBase import XMLStreamWriterBase
 from .Config import (
-    projectFileFormatVersion, projectFileFormatVersionUic,
-    projectFileFormatVersionIdl, projectFileFormatVersionMake,
-    projectFileFormatVersionProto, projectFileFormatVersionAlt
+    projectFileFormatVersion, projectFileFormatVersionRcc,
+    projectFileFormatVersionUic, projectFileFormatVersionIdl,
+    projectFileFormatVersionMake, projectFileFormatVersionProto,
+    projectFileFormatVersionAlt
 )
 
 import Preferences
@@ -45,8 +46,10 @@
         XMLStreamWriterBase.writeXML(self)
         
         project = e5App().getObject("Project")
-        if not project.hasDefaultRccCompilerParameters():
+        if not project.hasDefaultDocstringParameter():
             fileFormatVersion = projectFileFormatVersion
+        elif not project.hasDefaultRccCompilerParameters():
+            fileFormatVersion = projectFileFormatVersionRcc
         elif not project.hasDefaultUicCompilerParameters():
             fileFormatVersion = projectFileFormatVersionUic
         elif not project.hasDefaultIdlCompilerParameters():
@@ -249,6 +252,10 @@
             self.writeBasics("RccCompilerParameters", self.pdata["RCCPARAMS"])
             self.writeEndElement()
         
+        # do the 'docstring' parameter
+        if not e5App().getObject("Project").hasDefaultDocstringParameter():
+            self.writeTextElement("DocstringStyle", self.pdata["DOCSTRING"])
+        
         # do the extra project data stuff
         if len(self.pdata["PROJECTTYPESPECIFICDATA"]):
             self.writeStartElement("ProjectTypeSpecific")
--- a/eric6/Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/DocStyleChecker.py	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/DocStyleChecker.py	Fri Jan 22 16:48:43 2021 +0100
@@ -128,7 +128,7 @@
         "D130", "D131", "D132", "D133", "D134",
         "D141", "D142", "D143", "D144", "D145",
         
-        "D203", "D205", "D206",
+        "D201", "D202.1", "D202.2", "D203", "D205", "D206",
         "D221", "D222",
         "D231", "D232", "D234r", "D234y", "D235r", "D235y", "D236", "D237",
         "D238", "D239",
@@ -216,7 +216,7 @@
         elif self.__docType == "eric":
             checkersWithCodes = {
                 "moduleDocstring": [
-                    (self.__checkModulesDocstrings, ("D101",)),
+                    (self.__checkModulesDocstrings, ("D101", "D201")),
                 ],
                 "functionDocstring": [
                 ],
@@ -230,7 +230,8 @@
                     (self.__checkEricSummary, ("D232")),
                 ],
                 "defDocstring": [
-                    (self.__checkFunctionDocstring, ("D102", "D203")),
+                    (self.__checkFunctionDocstring,
+                     ("D102", "D202.1", "D202.2", "D203")),
                     (self.__checkImperativeMood, ("D132",)),
                     (self.__checkNoSignature, ("D133",)),
                     (self.__checkEricReturn, ("D234r", "D235r")),
@@ -695,13 +696,20 @@
                 not docstring.strip('\'"')):
             self.__error(context.start(), 0, code)
         
-        if (
-            self.__docType == "eric" and
-            docstring.strip('\'"').strip() ==
-            "Function documentation goes here."
-        ):
-            self.__error(docstringContext.end(), 0, "D202")
-            return
+        if self.__docType == "eric":
+            if (
+                docstring.strip('\'"').strip() ==
+                "Function documentation goes here."
+            ):
+                self.__error(docstringContext.end(), 0, "D202.1")
+                return
+            
+            if (
+                "DESCRIPTION" in docstring or
+                "TYPE" in docstring
+            ):
+                self.__error(docstringContext.end(), 0, "D202.2")
+                return
     
     def __checkClassDocstring(self, docstringContext, context):
         """
--- a/eric6/Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py	Fri Jan 22 16:48:43 2021 +0100
@@ -65,8 +65,11 @@
     
     "D201": QCoreApplication.translate(
         "DocStyleChecker", "module docstring is still a default string"),
-    "D202": QCoreApplication.translate(
+    "D202.1": QCoreApplication.translate(
         "DocStyleChecker", "function docstring is still a default string"),
+    "D202.2": QCoreApplication.translate(
+        "DocStyleChecker",
+        "function docstring still contains some placeholders"),
     "D203": QCoreApplication.translate(
         "DocStyleChecker",
         "private function/method is missing a docstring"),
--- a/eric6/Preferences/ConfigurationPages/EditorGeneralPage.py	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/Preferences/ConfigurationPages/EditorGeneralPage.py	Fri Jan 22 16:48:43 2021 +0100
@@ -19,6 +19,8 @@
     EditorLanguageTabIndentOverrideDialog
 )
 
+from QScintilla.DocstringGenerator import getSupportedDocstringTypes
+
 import Preferences
 import UI.PixmapCache
 
@@ -39,6 +41,11 @@
         self.deleteButton.setIcon(UI.PixmapCache.getIcon("minus"))
         self.editButton.setIcon(UI.PixmapCache.getIcon("edit"))
         
+        for docstringType, docstringStyle in sorted(
+            getSupportedDocstringTypes()
+        ):
+            self.docstringStyleComboBox.addItem(docstringStyle, docstringType)
+        
         # set initial values
         self.tabwidthSlider.setValue(
             Preferences.getEditor("TabWidth"))
@@ -64,6 +71,10 @@
         self.sourceOutlineShowCodingCheckBox.setChecked(
             Preferences.getEditor("SourceOutlineShowCoding"))
         
+        index = self.docstringStyleComboBox.findData(
+            Preferences.getEditor("DocstringType"))
+        self.docstringStyleComboBox.setCurrentIndex(index)
+        
         virtualSpaceOptions = Preferences.getEditor("VirtualSpaceOptions")
         self.vsSelectionCheckBox.setChecked(
             virtualSpaceOptions & QsciScintillaBase.SCVS_RECTANGULARSELECTION)
@@ -111,6 +122,10 @@
             "SourceOutlineShowCoding",
             self.sourceOutlineShowCodingCheckBox.isChecked())
         
+        Preferences.setEditor(
+            "DocstringType",
+            self.docstringStyleComboBox.currentData())
+        
         virtualSpaceOptions = QsciScintillaBase.SCVS_NONE
         if self.vsSelectionCheckBox.isChecked():
             virtualSpaceOptions |= QsciScintillaBase.SCVS_RECTANGULARSELECTION
--- a/eric6/Preferences/ConfigurationPages/EditorGeneralPage.ui	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/Preferences/ConfigurationPages/EditorGeneralPage.ui	Fri Jan 22 16:48:43 2021 +0100
@@ -7,10 +7,10 @@
     <x>0</x>
     <y>0</y>
     <width>550</width>
-    <height>700</height>
+    <height>863</height>
    </rect>
   </property>
-  <layout class="QVBoxLayout" name="verticalLayout_4">
+  <layout class="QVBoxLayout" name="verticalLayout_3">
    <item>
     <widget class="QLabel" name="headerLabel">
      <property name="text">
@@ -36,9 +36,53 @@
      <property name="title">
       <string>Tabs &amp;&amp; Indentation</string>
      </property>
-     <layout class="QVBoxLayout" name="verticalLayout_3">
-      <item>
-       <layout class="QGridLayout">
+     <layout class="QGridLayout" name="gridLayout_5">
+      <item row="0" column="0" colspan="2">
+       <layout class="QGridLayout" name="gridLayout_2">
+        <item row="0" column="0">
+         <widget class="QCheckBox" name="autoindentCheckBox">
+          <property name="toolTip">
+           <string>Select whether autoindentation shall be enabled</string>
+          </property>
+          <property name="text">
+           <string>Auto indentation</string>
+          </property>
+         </widget>
+        </item>
+        <item row="0" column="1">
+         <widget class="QCheckBox" name="tabforindentationCheckBox">
+          <property name="toolTip">
+           <string>Select whether tab characters are used for indentations.</string>
+          </property>
+          <property name="text">
+           <string>Use tabs for indentations</string>
+          </property>
+         </widget>
+        </item>
+        <item row="1" column="0">
+         <widget class="QCheckBox" name="tabindentsCheckBox">
+          <property name="toolTip">
+           <string>Select whether pressing the tab key indents.</string>
+          </property>
+          <property name="text">
+           <string>Tab key indents</string>
+          </property>
+         </widget>
+        </item>
+        <item row="1" column="1">
+         <widget class="QCheckBox" name="converttabsCheckBox">
+          <property name="toolTip">
+           <string>Select whether tabs shall be converted upon opening the file</string>
+          </property>
+          <property name="text">
+           <string>Convert tabs upon open</string>
+          </property>
+         </widget>
+        </item>
+       </layout>
+      </item>
+      <item row="1" column="0" colspan="2">
+       <layout class="QGridLayout" name="gridLayout_4">
         <item row="0" column="0">
          <widget class="QLabel" name="TextLabel13_3">
           <property name="text">
@@ -137,138 +181,96 @@
         </item>
        </layout>
       </item>
-      <item>
-       <layout class="QHBoxLayout" name="horizontalLayout">
+      <item row="2" column="0">
+       <widget class="QTreeWidget" name="languageOverrideWidget">
+        <property name="minimumSize">
+         <size>
+          <width>0</width>
+          <height>150</height>
+         </size>
+        </property>
+        <property name="alternatingRowColors">
+         <bool>true</bool>
+        </property>
+        <property name="selectionMode">
+         <enum>QAbstractItemView::ExtendedSelection</enum>
+        </property>
+        <property name="rootIsDecorated">
+         <bool>false</bool>
+        </property>
+        <property name="itemsExpandable">
+         <bool>false</bool>
+        </property>
+        <column>
+         <property name="text">
+          <string>Language</string>
+         </property>
+        </column>
+        <column>
+         <property name="text">
+          <string>Tab Width</string>
+         </property>
+        </column>
+        <column>
+         <property name="text">
+          <string>Indent Width</string>
+         </property>
+        </column>
+        <column>
+         <property name="text">
+          <string notr="true"/>
+         </property>
+        </column>
+       </widget>
+      </item>
+      <item row="2" column="1">
+       <layout class="QVBoxLayout" name="verticalLayout_2">
         <item>
-         <widget class="QTreeWidget" name="languageOverrideWidget">
-          <property name="alternatingRowColors">
-           <bool>true</bool>
-          </property>
-          <property name="selectionMode">
-           <enum>QAbstractItemView::ExtendedSelection</enum>
-          </property>
-          <property name="rootIsDecorated">
-           <bool>false</bool>
-          </property>
-          <property name="itemsExpandable">
-           <bool>false</bool>
+         <spacer name="verticalSpacer">
+          <property name="orientation">
+           <enum>Qt::Vertical</enum>
           </property>
-          <column>
-           <property name="text">
-            <string>Language</string>
-           </property>
-          </column>
-          <column>
-           <property name="text">
-            <string>Tab Width</string>
-           </property>
-          </column>
-          <column>
-           <property name="text">
-            <string>Indent Width</string>
-           </property>
-          </column>
-          <column>
-           <property name="text">
-            <string notr="true"/>
-           </property>
-          </column>
+          <property name="sizeHint" stdset="0">
+           <size>
+            <width>20</width>
+            <height>40</height>
+           </size>
+          </property>
+         </spacer>
+        </item>
+        <item>
+         <widget class="QToolButton" name="addButton">
+          <property name="toolTip">
+           <string>Press to add a language specific override</string>
+          </property>
          </widget>
         </item>
         <item>
-         <layout class="QVBoxLayout" name="verticalLayout_2">
-          <item>
-           <spacer name="verticalSpacer">
-            <property name="orientation">
-             <enum>Qt::Vertical</enum>
-            </property>
-            <property name="sizeHint" stdset="0">
-             <size>
-              <width>20</width>
-              <height>40</height>
-             </size>
-            </property>
-           </spacer>
-          </item>
-          <item>
-           <widget class="QToolButton" name="addButton">
-            <property name="toolTip">
-             <string>Press to add a language specific override</string>
-            </property>
-           </widget>
-          </item>
-          <item>
-           <widget class="QToolButton" name="deleteButton">
-            <property name="toolTip">
-             <string>Press to delete the selected language specific override</string>
-            </property>
-           </widget>
-          </item>
-          <item>
-           <widget class="QToolButton" name="editButton">
-            <property name="toolTip">
-             <string>Press to edit the selected language specific override</string>
-            </property>
-           </widget>
-          </item>
-          <item>
-           <spacer name="verticalSpacer_2">
-            <property name="orientation">
-             <enum>Qt::Vertical</enum>
-            </property>
-            <property name="sizeHint" stdset="0">
-             <size>
-              <width>20</width>
-              <height>40</height>
-             </size>
-            </property>
-           </spacer>
-          </item>
-         </layout>
+         <widget class="QToolButton" name="deleteButton">
+          <property name="toolTip">
+           <string>Press to delete the selected language specific override</string>
+          </property>
+         </widget>
         </item>
-       </layout>
-      </item>
-      <item>
-       <layout class="QGridLayout" name="gridLayout_2">
-        <item row="0" column="0">
-         <widget class="QCheckBox" name="autoindentCheckBox">
+        <item>
+         <widget class="QToolButton" name="editButton">
           <property name="toolTip">
-           <string>Select whether autoindentation shall be enabled</string>
-          </property>
-          <property name="text">
-           <string>Auto indentation</string>
+           <string>Press to edit the selected language specific override</string>
           </property>
          </widget>
         </item>
-        <item row="0" column="1">
-         <widget class="QCheckBox" name="tabforindentationCheckBox">
-          <property name="toolTip">
-           <string>Select whether tab characters are used for indentations.</string>
-          </property>
-          <property name="text">
-           <string>Use tabs for indentations</string>
-          </property>
-         </widget>
-        </item>
-        <item row="1" column="0">
-         <widget class="QCheckBox" name="tabindentsCheckBox">
-          <property name="toolTip">
-           <string>Select whether pressing the tab key indents.</string>
+        <item>
+         <spacer name="verticalSpacer_2">
+          <property name="orientation">
+           <enum>Qt::Vertical</enum>
           </property>
-          <property name="text">
-           <string>Tab key indents</string>
+          <property name="sizeHint" stdset="0">
+           <size>
+            <width>20</width>
+            <height>40</height>
+           </size>
           </property>
-         </widget>
-        </item>
-        <item row="1" column="1">
-         <widget class="QCheckBox" name="converttabsCheckBox">
-          <property name="toolTip">
-           <string>Select whether tabs shall be converted upon opening the file</string>
-          </property>
-          <property name="text">
-           <string>Convert tabs upon open</string>
-          </property>
-         </widget>
+         </spacer>
         </item>
        </layout>
       </item>
@@ -294,26 +296,6 @@
         </property>
        </widget>
       </item>
-      <item row="0" column="2">
-       <spacer name="horizontalSpacer">
-        <property name="orientation">
-         <enum>Qt::Horizontal</enum>
-        </property>
-        <property name="sizeHint" stdset="0">
-         <size>
-          <width>345</width>
-          <height>17</height>
-         </size>
-        </property>
-       </spacer>
-      </item>
-      <item row="1" column="0">
-       <widget class="QLabel" name="label_3">
-        <property name="text">
-         <string>Width Step Size:</string>
-        </property>
-       </widget>
-      </item>
       <item row="0" column="1">
        <widget class="QSpinBox" name="sourceOutlineWidthSpinBox">
         <property name="toolTip">
@@ -333,7 +315,14 @@
         </property>
        </widget>
       </item>
-      <item row="1" column="1">
+      <item row="0" column="2">
+       <widget class="QLabel" name="label_3">
+        <property name="text">
+         <string>Width Step Size:</string>
+        </property>
+       </widget>
+      </item>
+      <item row="0" column="3">
        <widget class="QSpinBox" name="sourceOutlineWidthStepSpinBox">
         <property name="toolTip">
          <string>Enter the amount of pixels the width of the outline should be increased or decreased</string>
@@ -352,7 +341,20 @@
         </property>
        </widget>
       </item>
-      <item row="2" column="0" colspan="3">
+      <item row="0" column="4">
+       <spacer name="horizontalSpacer">
+        <property name="orientation">
+         <enum>Qt::Horizontal</enum>
+        </property>
+        <property name="sizeHint" stdset="0">
+         <size>
+          <width>345</width>
+          <height>17</height>
+         </size>
+        </property>
+       </spacer>
+      </item>
+      <item row="1" column="0" colspan="5">
        <widget class="QCheckBox" name="sourceOutlineShowCodingCheckBox">
         <property name="toolTip">
          <string>Select to show the source code encoding</string>
@@ -388,6 +390,35 @@
     </widget>
    </item>
    <item>
+    <widget class="QGroupBox" name="groupBox_3">
+     <property name="title">
+      <string>Docstring</string>
+     </property>
+     <layout class="QHBoxLayout" name="horizontalLayout_2">
+      <item>
+       <widget class="QLabel" name="label_4">
+        <property name="text">
+         <string>Docstring Style:</string>
+        </property>
+       </widget>
+      </item>
+      <item>
+       <widget class="QComboBox" name="docstringStyleComboBox">
+        <property name="sizePolicy">
+         <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
+          <horstretch>0</horstretch>
+          <verstretch>0</verstretch>
+         </sizepolicy>
+        </property>
+        <property name="toolTip">
+         <string>Select the docstring style to be used</string>
+        </property>
+       </widget>
+      </item>
+     </layout>
+    </widget>
+   </item>
+   <item>
     <widget class="QGroupBox" name="groupBox_2">
      <property name="title">
       <string>Virtual Space</string>
@@ -429,21 +460,22 @@
   </layout>
  </widget>
  <tabstops>
+  <tabstop>autoindentCheckBox</tabstop>
+  <tabstop>tabforindentationCheckBox</tabstop>
+  <tabstop>tabindentsCheckBox</tabstop>
+  <tabstop>converttabsCheckBox</tabstop>
   <tabstop>tabwidthSlider</tabstop>
   <tabstop>indentwidthSlider</tabstop>
   <tabstop>languageOverrideWidget</tabstop>
   <tabstop>addButton</tabstop>
   <tabstop>deleteButton</tabstop>
   <tabstop>editButton</tabstop>
-  <tabstop>autoindentCheckBox</tabstop>
-  <tabstop>tabforindentationCheckBox</tabstop>
-  <tabstop>tabindentsCheckBox</tabstop>
-  <tabstop>converttabsCheckBox</tabstop>
   <tabstop>sourceOutlineGroupBox</tabstop>
   <tabstop>sourceOutlineWidthSpinBox</tabstop>
   <tabstop>sourceOutlineWidthStepSpinBox</tabstop>
   <tabstop>sourceOutlineShowCodingCheckBox</tabstop>
   <tabstop>comment0CheckBox</tabstop>
+  <tabstop>docstringStyleComboBox</tabstop>
   <tabstop>vsSelectionCheckBox</tabstop>
   <tabstop>vsUserCheckBox</tabstop>
  </tabstops>
--- a/eric6/Preferences/__init__.py	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/Preferences/__init__.py	Fri Jan 22 16:48:43 2021 +0100
@@ -502,6 +502,8 @@
         "SourceOutlineStepSize": 50,
         "SourceOutlineShowCoding": True,
         
+        "DocstringType": "ericdoc",
+        
         # All (most) lexers
         "AllFoldCompact": True,
         
@@ -2084,7 +2086,8 @@
     if key in ["DefaultEncoding", "DefaultOpenFilter", "DefaultSaveFilter",
                "SpellCheckingDefaultLanguage", "SpellCheckingPersonalWordList",
                "SpellCheckingPersonalExcludeList",
-               "PreviewMarkdownHTMLFormat", "PreviewRestDocutilsHTMLFormat"]:
+               "PreviewMarkdownHTMLFormat", "PreviewRestDocutilsHTMLFormat",
+               "DocstringType"]:
         return prefClass.settings.value(
             "Editor/" + key, prefClass.editorDefaults[key])
     elif key in ["AutosaveInterval", "TabWidth", "IndentWidth",
--- a/eric6/Project/Project.py	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/Project/Project.py	Fri Jan 22 16:48:43 2021 +0100
@@ -499,6 +499,7 @@
                 "PathPrefix": "",
             },
             "EOL": -1,
+            "DOCSTRING": "",
         }
         
         self.__initDebugProperties()
@@ -5867,6 +5868,29 @@
             "CompressionDisable": False,
             "PathPrefix": "",
         }
+    
+    #########################################################################
+    ## Below are methods implementing some 'docstring' support functions
+    #########################################################################
+    
+    def hasDefaultDocstringParameter(self):
+        """
+        Public method to test, if the project contains the default docstring
+        parameter.
+        
+        @return flag indicating default parameter
+        @rtype bool
+        """
+        return self.pdata["DOCSTRING"] == ""
+    
+    def getDocstringType(self):
+        """
+        Public method to get the configured docstring style.
+        
+        @return configured docstring style
+        @rtype str
+        """
+        return self.pdata["DOCSTRING"]
 
 #
 # eflag: noqa = M601
--- a/eric6/Project/PropertiesDialog.py	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/Project/PropertiesDialog.py	Fri Jan 22 16:48:43 2021 +0100
@@ -17,6 +17,8 @@
 
 from .Ui_PropertiesDialog import Ui_PropertiesDialog
 
+from QScintilla.DocstringGenerator import getSupportedDocstringTypes
+
 import Utilities
 import Preferences
 import UI.PixmapCache
@@ -45,6 +47,12 @@
         
         self.makeButton.setIcon(UI.PixmapCache.getIcon("makefile"))
         
+        self.docstringStyleComboBox.addItem(self.tr("None"), "")
+        for docstringType, docstringStyle in sorted(
+            getSupportedDocstringTypes()
+        ):
+            self.docstringStyleComboBox.addItem(docstringStyle, docstringType)
+        
         self.project = project
         self.newProject = new
         self.transPropertiesDlg = None
@@ -122,6 +130,9 @@
             self.vcsCheckBox.hide()
             self.makeCheckBox.setChecked(
                 self.project.pdata["MAKEPARAMS"]["MakeEnabled"])
+            cindex = self.docstringStyleComboBox.findData(
+                self.project.pdata["DOCSTRING"])
+            self.docstringStyleComboBox.setCurrentIndex(cindex)
         else:
             self.languageComboBox.setCurrentIndex(
                 self.languageComboBox.findText("Python3"))
@@ -318,3 +329,7 @@
         )
         if self.makePropertiesDlg is not None:
             self.makePropertiesDlg.storeData()
+        
+        self.project.pdata["DOCSTRING"] = (
+            self.docstringStyleComboBox.currentData()
+        )
--- a/eric6/Project/PropertiesDialog.ui	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/Project/PropertiesDialog.ui	Fri Jan 22 16:48:43 2021 +0100
@@ -7,7 +7,7 @@
     <x>0</x>
     <y>0</y>
     <width>600</width>
-    <height>555</height>
+    <height>650</height>
    </rect>
   </property>
   <property name="maximumSize">
@@ -29,7 +29,7 @@
   </property>
   <layout class="QVBoxLayout" name="verticalLayout">
    <item>
-    <layout class="QGridLayout" name="gridLayout">
+    <layout class="QFormLayout" name="formLayout">
      <item row="0" column="0">
       <widget class="QLabel" name="nameLabel">
        <property name="text">
@@ -279,6 +279,20 @@
       </widget>
      </item>
      <item row="10" column="0">
+      <widget class="QLabel" name="label">
+       <property name="text">
+        <string>Docstring Style:</string>
+       </property>
+      </widget>
+     </item>
+     <item row="10" column="1">
+      <widget class="QComboBox" name="docstringStyleComboBox">
+       <property name="toolTip">
+        <string>Select the docstring style for the project</string>
+       </property>
+      </widget>
+     </item>
+     <item row="11" column="0">
       <widget class="QLabel" name="authorLabel">
        <property name="text">
         <string>&amp;Author:</string>
@@ -288,7 +302,7 @@
        </property>
       </widget>
      </item>
-     <item row="10" column="1">
+     <item row="11" column="1">
       <widget class="QLineEdit" name="authorEdit">
        <property name="toolTip">
         <string>Enter authors name</string>
@@ -299,7 +313,7 @@
        </property>
       </widget>
      </item>
-     <item row="11" column="0">
+     <item row="12" column="0">
       <widget class="QLabel" name="emailLabel">
        <property name="text">
         <string>&amp;Email:</string>
@@ -309,7 +323,7 @@
        </property>
       </widget>
      </item>
-     <item row="11" column="1">
+     <item row="12" column="1">
       <widget class="QLineEdit" name="emailEdit">
        <property name="toolTip">
         <string>Enter authors email</string>
@@ -320,7 +334,7 @@
        </property>
       </widget>
      </item>
-     <item row="12" column="0">
+     <item row="13" column="0">
       <widget class="QLabel" name="descriptionLabel">
        <property name="text">
         <string>&amp;Description:</string>
@@ -333,7 +347,7 @@
        </property>
       </widget>
      </item>
-     <item row="12" column="1">
+     <item row="13" column="1">
       <widget class="QTextEdit" name="descriptionEdit">
        <property name="toolTip">
         <string>Enter description</string>
@@ -426,6 +440,7 @@
   <tabstop>mainscriptPicker</tabstop>
   <tabstop>transPropertiesButton</tabstop>
   <tabstop>eolComboBox</tabstop>
+  <tabstop>docstringStyleComboBox</tabstop>
   <tabstop>authorEdit</tabstop>
   <tabstop>emailEdit</tabstop>
   <tabstop>descriptionEdit</tabstop>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/QScintilla/DocstringGenerator/BaseDocstringGenerator.py	Fri Jan 22 16:48:43 2021 +0100
@@ -0,0 +1,221 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2021 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing a docstring generator base class.
+"""
+
+import re
+
+from PyQt5.QtCore import Qt
+from PyQt5.QtWidgets import QMenu
+
+from E5Gui.E5Application import e5App
+
+import Preferences
+
+
+def getIndentStr(text):
+    """
+    Function to get the indentation of a text.
+    
+    @param text text to extract indentation from
+    @type str
+    @return indentation string
+    @rtype str
+    """
+    indent = ''
+
+    ret = re.match(r'(\s*)', text)
+    if ret:
+        indent = ret.group(1)
+
+    return indent
+
+
+class BaseDocstringGenerator(object):
+    """
+    Class implementing a docstring generator base class.
+    """
+    def __init__(self, editor):
+        """
+        Constructor
+        
+        @param editor reference to the editor widget
+        @type Editor
+        """
+        self.editor = editor
+    
+    def isFunctionStart(self, text):
+        """
+        Public method to test, if a text is the start of a function or method
+        definition.
+        
+        @param text line of text to be tested
+        @type str
+        @return flag indicating that the given text starts a function or
+            method definition (always False)
+        @rtype bool
+        """
+        return False
+    
+    def hasFunctionDefinition(self, cursorPosition):
+        """
+        Public method to test, if the cursor is right below a function
+        definition.
+        
+        @param cursorPosition current cursor position (line and column)
+        @type tuple of (int, int)
+        @return flag indicating cursor is right below a function definition
+        @rtype bool
+        """
+        return False
+    
+    def isDocstringIntro(self, cursorPosition):
+        """
+        Public function to test, if the line up to the cursor position might be
+        introducing a docstring.
+        
+        @param cursorPosition current cursor position (line and column)
+        @type tuple of (int, int)
+        @return flag indicating a potential start of a docstring
+        @rtype bool
+        """
+        return False
+    
+    def insertDocstring(self, cursorPosition, fromStart=True):
+        """
+        Public method to insert a docstring for the function at the cursor
+        position.
+        
+        @param cursorPosition position of the cursor (line and index)
+        @type tuple of (int, int)
+        @param fromStart flag indicating that the editor text cursor is placed
+            on the line starting the function definition
+        @type bool
+        """
+        # just do nothing in the base class
+        return
+
+    def getDocstringType(self):
+        """
+        Public method to determine the docstring type to be generated.
+        
+        @return docstring type (one of 'ericdoc', 'numpydoc', 'googledoc',
+            'sphinxdoc')
+        @rtype str
+        """
+        docstringStyle = ""
+        
+        project = e5App().getObject("Project")
+        filename = self.editor.getFileName()
+        if (
+            filename and
+            project.isOpen() and
+            project.isProjectFile(filename)
+        ):
+            docstringStyle = project.getDocstringType().lower()
+        
+        if docstringStyle == "":
+            docstringStyle = Preferences.getEditor("DocstringType")
+        
+        return docstringStyle
+    
+    def _generateDocstringList(self, functionInfo, docstringType):
+        """
+        Protected method to generate type specific docstrings based on the
+        extracted function information.
+        
+        @param functionInfo reference to the function info object
+        @type FunctionInfo
+        @param docstringType kind of docstring to be generated
+        @return list of docstring lines
+        @rtype str
+        """
+        if docstringType == "ericdoc":
+            from .EricdocGenerator import generateEricDoc
+            return generateEricDoc(functionInfo)
+        elif docstringType == "numpydoc":
+            from .NumpydocGenerator import generateNumpyDoc
+            return generateNumpyDoc(functionInfo)
+        elif docstringType == "googledoc":
+            from .GoogledocGenerator import generateGoogleDoc
+            return generateGoogleDoc(functionInfo, self.editor)
+        elif docstringType == "sphinxdoc":
+            from .SphinxdocGenerator import generateSphinxDoc
+            return generateSphinxDoc(functionInfo)
+        else:
+            return []
+
+
+class FunctionInfo(object):
+    """
+    Class implementing an object to store function information.
+    
+    Methods to extract the relevant information need to be implemented in
+    language specific subclasses.
+    """
+    def __init__(self):
+        """
+        Constructor
+        """
+        self.hasInfo = False
+        self.funcionText = ""
+        self.argumentsText = ""
+        
+        self.functionIndent = ""
+        # indentation fo function definition
+        self.argumentsList = []
+        # list of tuples with name, type and value
+        self.returnTypeAnnotated = None
+        # return type extracted from type annotation
+        self.returnValueInBody = []
+        # return values extracted from function body
+        self.raiseList = None
+        # exceptions raised by function
+        self.hasYield = False
+        # function is a generator
+        self.functionType = ""
+        # function type with these values
+        # classmethod, staticmethod, qtslot, constructor or empty (i.e.
+        # standard)
+        self.isAsync = False
+        # function is an asynchronous function, i.e. async def f():
+        self.visibility = ""
+        # function visibility with allowed values:
+        # public, protected, private or special (i.e. starting and
+        # ending with '__'
+
+
+class DocstringMenuForEnterOnly(QMenu):
+    """
+    Class implementing a special menu reacting to the enter/return keys only.
+    
+    If a keyboard input is not the "enter key", the menu is closed and the
+    input is inserted to the code editor.
+    """
+    def __init__(self, editor):
+        """
+        Constructor
+        
+        @param editor reference to the editor
+        @type Editor
+        """
+        super(DocstringMenuForEnterOnly, self).__init__(editor)
+        self.__editor = editor
+
+    def keyPressEvent(self, evt):
+        """
+        Protected method to handle key press events.
+        
+        @param evt reference to the key press event object
+        @type QKeyEvent
+        """
+        key = evt.key()
+        if key not in (Qt.Key_Enter, Qt.Key_Return):
+            self.__editor.keyPressEvent(evt)
+            self.close()
+        else:
+            super(DocstringMenuForEnterOnly, self).keyPressEvent(evt)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/QScintilla/DocstringGenerator/EricdocGenerator.py	Fri Jan 22 16:48:43 2021 +0100
@@ -0,0 +1,123 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2021 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing the docstring generator for the 'ericdoc' style.
+"""
+
+
+def generateEricDoc(functionInfo):
+    """
+    Function to generate the docstring line list iaw. eric documentation style.
+    
+    Note: Partial English text is created with DESCRIPTION placeholders
+    for descriptions and TYPE placeholders for type information
+    
+    @param functionInfo object containing the function information to base
+        the docstring on
+    @type FunctionInfo
+    @return list of docstring lines
+    @rtype str
+    """
+    lines = []
+    
+    # create a basic/partial function description
+    descrComplete = False
+    if functionInfo.functionType == "classmethod":
+        descr = "Class method "
+    elif functionInfo.functionType == "staticmethod":
+        descr = "Static method "
+    elif functionInfo.functionType == "constructor":
+        descr = "Constructor"
+        descrComplete = True
+    else:
+        if functionInfo.visibility == "public":
+            descr = "Public "
+        elif functionInfo.visibility == "protected":
+            descr = "Protected "
+        elif functionInfo.visibility == "private":
+            descr = "Private "
+        elif functionInfo.visibility == "special":
+            descr = "Special "
+        else:
+            descr = ""
+        
+        if (
+            len(functionInfo.argumentsList) > 0 and
+            functionInfo.argumentsList[0][0] in ("self", "cls", "this")
+        ):
+            if functionInfo.isAsync:
+                descr += "coroutine "
+            elif functionInfo.functionType == "qtslot":
+                descr += "slot "
+            else:
+                descr += "method "
+        else:
+            if functionInfo.isAsync:
+                descr = "Coroutine "
+            elif functionInfo.functionType == "qtslot":
+                descr = "Slot "
+            else:
+                descr = "Function "
+    if not descrComplete:
+        descr += "DESCRIPTION"
+    lines.append(descr)
+    
+    # remove 'self', 'this' or 'cls' from arguments list
+    if (
+        len(functionInfo.argumentsList) > 0 and
+        functionInfo.argumentsList[0][0] in ("self", "cls", "this")
+    ):
+        del functionInfo.argumentsList[0]
+    
+    # add an empty line if there is one of the other sections
+    if (
+        functionInfo.argumentsList or
+        functionInfo.hasYield or
+        functionInfo.returnTypeAnnotated or
+        functionInfo.returnValueInBody or
+        functionInfo.raiseList
+    ):
+        lines.append("")
+    
+    # add the parameters section
+    tag = "@param"
+    for argName, argType, argValue in functionInfo.argumentsList:
+        if argName == "*":
+            tag = "@keyparam"
+            continue
+        
+        argLine = "{0} {1} DESCRIPTION".format(tag, argName)
+        if argValue:
+            argLine += " (defaults to {0})".format(argValue)
+        lines.append(argLine)
+        
+        if argType is None:
+            argType = "TYPE"
+        argLine = "@type {0}".format(argType)
+        if argValue:
+            argLine += " (optional)"
+        lines.append(argLine)
+    
+    # add return section
+    if functionInfo.hasYield or functionInfo.returnValueInBody:
+        if functionInfo.hasYield:
+            lines.append("@yield DESCRIPTION")
+            rType = "@ytype"
+        else:
+            lines.append("@return DESCRIPTION")
+            rType = "@rtype"
+        if functionInfo.returnTypeAnnotated:
+            lines.append("{0} {1}".format(
+                rType, functionInfo.returnTypeAnnotated))
+        else:
+            lines.append("{0} TYPE".format(rType))
+    
+    # add an exceptions section, if function raises something
+    if functionInfo.raiseList:
+        for exc in sorted(functionInfo.raiseList):
+            lines.append("@exception {0} DESCRIPTION".format(exc))
+    
+    return lines
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/QScintilla/DocstringGenerator/GoogledocGenerator.py	Fri Jan 22 16:48:43 2021 +0100
@@ -0,0 +1,87 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2021 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing the docstring generator for the 'sphinxdoc' style.
+"""
+
+
+def generateGoogleDoc(functionInfo, editor):
+    """
+    Function to generate the docstring line list iaw. Sphinx documentation
+    style.
+    
+    Note: Text is created with DESCRIPTION placeholders for descriptions and
+    TYPE placeholders for type information
+    
+    @param functionInfo object containing the function information to base
+        the docstring on
+    @type FunctionInfo
+    @param editor reference to the editor
+    @type Editor
+    @return list of docstring lines
+    @rtype str
+    """
+    lines = []
+    
+    # function description
+    lines.append("DESCRIPTION")
+    
+    # remove 'self', 'this' or 'cls' from arguments list
+    if (
+        len(functionInfo.argumentsList) > 0 and
+        functionInfo.argumentsList[0][0] in ("self", "cls", "this")
+    ):
+        del functionInfo.argumentsList[0]
+    
+    # determine additional indentation string
+    indentWidth = editor.indentationWidth()
+    if indentWidth == 0:
+        indentWidth = editor.tabWidth()
+    indent = indentWidth * " "
+    
+    # add the parameters section
+    if functionInfo.argumentsList:
+        lines.append("")
+        lines.append("Args:")
+        for argName, argType, argValue in functionInfo.argumentsList:
+            argLine = "{0}{1} ".format(indent, argName)
+            argLine += "("
+            if argType:
+                argLine += "{0}".format(argType)
+            else:
+                argLine += "TYPE"
+            argLine += "):"
+            lines.append(argLine)
+            argLine = "{0}".format(2 * indent)
+            if argValue:
+                argLine += "Optional; "
+            argLine += "DESCRIPTION"
+            if argValue:
+                argLine += " Defaults to {0}.".format(argValue)
+            lines.append(argLine)
+    
+    # add return section
+    lines.append("")
+    if functionInfo.hasYield:
+        lines.append("Yields:")
+    else:
+        lines.append("Returns:")
+    if functionInfo.returnTypeAnnotated:
+        lines.append("{0}{1}: DESCRIPTION".format(
+            indent, functionInfo.returnTypeAnnotated))
+    elif functionInfo.returnValueInBody:
+        lines.append("{0}TYPE: DESCRIPTION")
+    else:
+        lines.append("{0}None".format(indent))
+    
+    # add an exceptions section, if function raises something
+    if functionInfo.raiseList:
+        lines.append("")
+        lines.append("Raises:")
+        for exc in sorted(functionInfo.raiseList):
+            lines.append("{0}{1}: DESCRIPTION".format(indent, exc))
+    
+    return lines
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/QScintilla/DocstringGenerator/NumpydocGenerator.py	Fri Jan 22 16:48:43 2021 +0100
@@ -0,0 +1,90 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2021 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing the docstring generator for the 'numpydoc' style.
+"""
+
+
+def generateNumpyDoc(functionInfo, editor):
+    """
+    Function to generate the docstring line list iaw. NumPy documentation
+    style.
+    
+    Note: Text is created with DESCRIPTION placeholders for descriptions and
+    TYPE placeholders for type information
+    
+    @param functionInfo object containing the function information to base
+        the docstring on
+    @type FunctionInfo
+    @param editor reference to the editor
+    @type Editor
+    @return list of docstring lines
+    @rtype str
+    """
+    lines = []
+    
+    # function description
+    lines.append("DESCRIPTION")
+    
+    # remove 'self', 'this' or 'cls' from arguments list
+    if (
+        len(functionInfo.argumentsList) > 0 and
+        functionInfo.argumentsList[0][0] in ("self", "cls", "this")
+    ):
+        del functionInfo.argumentsList[0]
+    
+    # determine additional indentation string
+    indentWidth = editor.indentationWidth()
+    if indentWidth == 0:
+        indentWidth = editor.tabWidth()
+    indent = indentWidth * " "
+    
+    # add the parameters section
+    if functionInfo.argumentsList:
+        lines.append("")
+        lines.append("Parameters")
+        lines.append("----------")
+        for argName, argType, argValue in functionInfo.argumentsList:
+            argLine = "{0} : ".format(argName)
+            if argType:
+                argLine += "{0}".format(argType)
+            else:
+                argLine += "TYPE"
+            if argValue:
+                argLine += ", optional"
+            lines.append(argLine)
+            argLine = "{0}DESCRIPTION.".format(indent)
+            if argValue:
+                argLine += " The default is {0}".format(argValue)
+            lines.append(argLine)
+    
+    # add an exceptions section, if function raises something
+    if functionInfo.raiseList:
+        lines.append("")
+        lines.append("Raises")
+        lines.append("------")
+        for exc in sorted(functionInfo.raiseList):
+            lines.append("{0}".format(exc))
+            lines.append("{0}DESCRIPTION".format(indent))
+    
+    # add return section
+    lines.append("")
+    if functionInfo.hasYield:
+        lines.append("Yields")
+        lines.append("------")
+    else:
+        lines.append("Returns")
+        lines.append("-------")
+    if functionInfo.returnTypeAnnotated:
+        lines.append("{0}".format(functionInfo.returnTypeAnnotated))
+        lines.append("{0}DESCRIPTION.".format(indent))
+    elif functionInfo.returnValueInBody:
+        lines.append("TYPE")
+        lines.append("{0}DESCRIPTION.".format(indent))
+    else:
+        lines.append("{0}None".format(indent))
+    
+    return lines
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/QScintilla/DocstringGenerator/PyDocstringGenerator.py	Fri Jan 22 16:48:43 2021 +0100
@@ -0,0 +1,723 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2021 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing a docstring generator for Python.
+"""
+
+import re
+import collections
+
+from .BaseDocstringGenerator import (
+    BaseDocstringGenerator, FunctionInfo, getIndentStr
+)
+
+
+class PyDocstringGenerator(BaseDocstringGenerator):
+    """
+    Class implementing a docstring generator for Python.
+    """
+    def __init__(self, editor):
+        """
+        Constructor
+        
+        @param editor reference to the editor widget
+        @type Editor
+        """
+        super(PyDocstringGenerator, self).__init__(editor)
+        
+        self.__quote3 = '"""'
+        self.__quote3Alternate = "'''"
+    
+    def isFunctionStart(self, text):
+        """
+        Public method to test, if a text is the start of a function or method
+        definition.
+        
+        @param text line of text to be tested
+        @type str
+        @return flag indicating that the given text starts a function or
+            method definition
+        @rtype bool
+        """
+        if isinstance(text, str):
+            text = text.lstrip()
+            if text.startswith(("def", "async def")):
+                return True
+        
+        return False
+    
+    def hasFunctionDefinition(self, cursorPosition):
+        """
+        Public method to test, if the cursor is right below a function
+        definition.
+        
+        @param cursorPosition current cursor position (line and column)
+        @type tuple of (int, int)
+        @return flag indicating cursor is right below a function definition
+        @rtype bool
+        """
+        return (
+            self.__getFunctionDefinitionFromBelow(cursorPosition) is not None
+        )
+    
+    def isDocstringIntro(self, cursorPosition):
+        """
+        Public function to test, if the line up to the cursor position might be
+        introducing a docstring.
+        
+        @param cursorPosition current cursor position (line and column)
+        @type tuple of (int, int)
+        @return flag indicating a potential start of a docstring
+        @rtype bool
+        """
+        cline, cindex = cursorPosition
+        lineToCursor = self.editor.text(cline)[:cindex]
+        return self.__isTripleQuotesStart(lineToCursor)
+    
+    def __isTripleQuotesStart(self, text):
+        """
+        Private method to test, if the given text is the start of a triple
+        quoted string.
+        
+        @param text text to be inspected
+        @type str
+        @return flag indicating a triple quote start
+        @rtype bool
+        """
+        docstringTriggers = ('"""', 'r"""', "'''", "r'''")
+        if text.lstrip() in docstringTriggers:
+            return True
+
+        return False
+    
+    def insertDocstring(self, cursorPosition, fromStart=True):
+        """
+        Public method to insert a docstring for the function at the cursor
+        position.
+        
+        @param cursorPosition position of the cursor (line and index)
+        @type tuple of (int, int)
+        @param fromStart flag indicating that the editor text cursor is placed
+            on the line starting the function definition
+        @type bool
+        """
+        if fromStart:
+            self.__functionStartLine = cursorPosition[0]
+            docstring, insertPos = self.__generateDocstringFromStart()
+        else:
+            docstring, insertPos = self.__generateDocstringFromBelow(
+                cursorPosition)
+        
+        if docstring:
+            self.editor.beginUndoAction()
+            self.editor.insertAt(docstring, *insertPos)
+            self.editor.endUndoAction()
+    
+    def __getIndentationInsertString(self, text):
+        """
+        Private method to create the indentation string for the docstring.
+        
+        @param text text to based the indentation on
+        @type str
+        @return indentation string for docstring
+        @rtype str
+        """
+        indent = getIndentStr(text)
+        indentWidth = self.editor.indentationWidth()
+        if indentWidth == 0:
+            indentWidth = self.editor.tabWidth()
+        
+        return indent + indentWidth * " "
+    
+    #######################################################################
+    ## Methods to generate the docstring when the text cursor is on the
+    ## line starting the function definition.
+    #######################################################################
+    
+    def __generateDocstringFromStart(self):
+        """
+        Private method to generate a docstring based on the cursor being
+        placed on the first line of the definition.
+        
+        @return tuple containing the docstring and a tuple containing the
+            insertion line and index
+        @rtype tuple of (str, tuple(int, int))
+        """
+        result = self.__getFunctionDefinitionFromStart()
+        if result:
+            functionDefinition, functionDefinitionLength = result
+            
+            insertLine = self.__functionStartLine + functionDefinitionLength
+            indentation = self.__getIndentationInsertString(functionDefinition)
+            sep = self.editor.getLineSeparator()
+            bodyStart = insertLine
+            
+            docstringList = self.__generateDocstring(
+                '"', functionDefinition, bodyStart
+            )
+            if docstringList:
+                if self.getDocstringType() == "ericdoc":
+                    docstringList.insert(0, self.__quote3)
+                else:
+                    docstringList[0] = self.__quote3 + docstringList[0]
+                docstringList.append(self.__quote3)
+                return (
+                    indentation +
+                    "{0}{1}".format(sep, indentation).join(docstringList) +
+                    sep
+                ), (insertLine, 0)
+        
+        return "", (0, 0)
+    
+    def __getFunctionDefinitionFromStart(self):
+        """
+        Private method to extract the function definition based on the cursor
+        being placed on the first line of the definition.
+        
+        @return text containing the function definition
+        @rtype str
+        """
+        startLine = self.__functionStartLine
+        endLine = startLine + min(
+            self.editor.lines() - startLine,
+            20          # max. 20 lines of definition allowed
+        )
+        isFirstLine = True
+        functionIndent = ""
+        functionTextList = []
+        
+        for lineNo in range(startLine, endLine):
+            text = self.editor.text(lineNo).rstrip()
+            if isFirstLine:
+                if not self.isFunctionStart(text):
+                    return None
+                
+                functionIndent = getIndentStr(text)
+                isFirstLine = False
+            else:
+                currentIndent = getIndentStr(text)
+                if (
+                    currentIndent <= functionIndent or
+                    self.isFunctionStart(text)
+                ):
+                    # no function body exists
+                    return None
+                if text.strip() == "":
+                    # empty line, illegal/incomplete function definition
+                    return None
+            
+            if text.endswith("\\"):
+                text = text[:-1]
+            
+            functionTextList.append(text)
+            
+            if text.endswith(":"):
+                # end of function definition reached
+                functionDefinitionLength = len(functionTextList)
+                
+                # check, if function is decorated with a supported one
+                if startLine > 0:
+                    decoratorLine = self.editor.text(startLine - 1)
+                    if (
+                        "@classmethod" in decoratorLine or
+                        "@staticmethod" in decoratorLine or
+                        "pyqtSlot" in decoratorLine or          # PyQt slot
+                        "Slot" in decoratorLine                 # PySide slot
+                    ):
+                        functionTextList.insert(0, decoratorLine)
+                
+                return "".join(functionTextList), functionDefinitionLength
+        
+        return None
+    
+    #######################################################################
+    ## Methods to generate the docstring when the text cursor is on the
+    ## line after the function definition (e.g. after a triple quote).
+    #######################################################################
+    
+    def __generateDocstringFromBelow(self, cursorPosition):
+        """
+        Private method to generate a docstring when the gicen position is on
+        the line below the end of the definition.
+        
+        @param cursorPosition position of the cursor (line and index)
+        @type tuple of (int, int)
+        @return tuple containing the docstring and a tuple containing the
+            insertion line and index
+        @rtype tuple of (str, tuple(int, int))
+        """
+        functionDefinition = self.__getFunctionDefinitionFromBelow(
+            cursorPosition)
+        if functionDefinition:
+            lineTextToCursor = (
+                self.editor.text(cursorPosition[0])[:cursorPosition[1]]
+            )
+            insertLine = cursorPosition[0]
+            indentation = self.__getIndentationInsertString(functionDefinition)
+            sep = self.editor.getLineSeparator()
+            bodyStart = insertLine
+            
+            docstringList = self.__generateDocstring(
+                '"', functionDefinition, bodyStart
+            )
+            if docstringList:
+                if self.__isTripleQuotesStart(lineTextToCursor):
+                    if self.getDocstringType() == "ericdoc":
+                        docstringList.insert(0, "")
+                    docstringList.append("")
+                else:
+                    if self.getDocstringType() == "ericdoc":
+                        docstringList.insert(0, self.__quote3)
+                    else:
+                        docstringList[0] = self.__quote3 + docstringList[0]
+                    docstringList.append(self.__quote3)
+                docstring = (
+                    "{0}{1}".format(sep, indentation).join(docstringList)
+                )
+                return docstring, cursorPosition
+        
+        return "", (0, 0)
+    
+    def __getFunctionDefinitionFromBelow(self, cursorPosition):
+        """
+        Private method to extract the function definition based on the cursor
+        being placed on the first line after the definition.
+        
+        @param cursorPosition current cursor position (line and column)
+        @type tuple of (int, int)
+        @return text containing the function definition
+        @rtype str
+        """
+        startLine = cursorPosition[0] - 1
+        endLine = startLine - min(startLine, 20)
+        # max. 20 lines of definition allowed
+        isFirstLine = True
+        functionTextList = []
+        
+        for lineNo in range(startLine, endLine, -1):
+            text = self.editor.text(lineNo).rstrip()
+            if isFirstLine:
+                if not text.endswith(":"):
+                    return None
+                isFirstLine = False
+            elif text.endswith(":") or text == "":
+                return None
+            
+            if text.endswith("\\"):
+                text = text[:-1]
+            
+            functionTextList.insert(0, text)
+            
+            if self.isFunctionStart(text):
+                # start of function definition reached
+                # check, if function is decorated with a supported one
+                if lineNo > 0:
+                    decoratorLine = self.editor.text(lineNo - 1)
+                    if (
+                        "@classmethod" in decoratorLine or
+                        "@staticmethod" in decoratorLine or
+                        "pyqtSlot" in decoratorLine or          # PyQt slot
+                        "Slot" in decoratorLine                 # PySide slot
+                    ):
+                        functionTextList.insert(0, decoratorLine)
+                
+                return "".join(functionTextList)
+        
+        return None
+    
+    #######################################################################
+    ## Methods to generate the docstring contents.
+    #######################################################################
+    
+    def __getFunctionBody(self, functionIndent, startLine):
+        """
+        Private method to get the function body.
+        
+        @param functionIndent indentation string of the function definition
+        @type str
+        @param startLine starting line for the extraction process
+        @type int
+        @return text containing the function body
+        @rtype str
+        """
+        bodyList = []
+        
+        for line in range(startLine, self.editor.lines()):
+            text = self.editor.text(line)
+            textIndent = getIndentStr(text)
+            
+            if text.strip() == "":
+                pass
+            elif len(textIndent) <= len(functionIndent):
+                break
+            
+            bodyList.append(text)
+        
+        return "".join(bodyList)
+    
+    def __generateDocstring(self, quote, functionDef, bodyStartLine):
+        """
+        Private method to generate the list of docstring lines.
+        
+        @param quote quote string
+        @type str
+        @param functionDef text containing the function definition
+        @type str
+        @param bodyStartLine starting line of the function body
+        @type int
+        @return list of docstring lines
+        @rtype list of str
+        """
+        quote3 = 3 * quote
+        if quote == '"':
+            quote3replace = 3 * "'"
+        elif quote == "'":
+            quote3replace = 3 * '"'
+        functionInfo = PyFunctionInfo()
+        functionInfo.parseDefinition(functionDef, quote3, quote3replace)
+        
+        if functionInfo.hasInfo:
+            functionBody = self.__getFunctionBody(functionInfo.functionIndent,
+                                                  bodyStartLine)
+            
+            if functionBody:
+                functionInfo.parseBody(functionBody)
+            
+            docstringType = self.getDocstringType()
+            return self._generateDocstringList(functionInfo, docstringType)
+        
+        return []
+
+
+class PyFunctionInfo(FunctionInfo):
+    """
+    Class implementing an object to extract and store function information.
+    """
+    def __init__(self):
+        """
+        Constructor
+        """
+        super(PyFunctionInfo, self).__init__()
+    
+    def __isCharInPairs(self, posChar, pairs):
+        """
+        Private method to test, if the given character position is between
+        pairs of brackets or quotes.
+        
+        @param posChar character position to be tested
+        @type int
+        @param pairs list containing pairs of positions
+        @type list of tuple of (int, int)
+        @return flag indicating the position is in between
+        @rtype bool
+        """
+        for posLeft, posRight in pairs:
+            if posLeft < posChar < posRight:
+                return True
+        
+        return False
+    
+    def __findQuotePosition(self, text):
+        """
+        Private method to find the start and end position of pairs of quotes.
+        
+        @param text text to be parsed
+        @type str
+        @return list of tuple with start and end position of pairs of quotes
+        @rtype list of tuple of (int, int)
+        @exception IndexError raised when a matching close quote is missing
+        """
+        pos = []
+        foundLeftQuote = False
+        
+        for index, character in enumerate(text):
+            if foundLeftQuote is False:
+                if character == "'" or character == '"':
+                    foundLeftQuote = True
+                    quote = character
+                    leftPos = index
+            else:
+                if character == quote and text[index - 1] != "\\":
+                    pos.append((leftPos, index))
+                    foundLeftQuote = False
+        
+        if foundLeftQuote:
+            raise IndexError("No matching close quote at: {0}".format(leftPos))
+        
+        return pos
+    
+    def __findBracketPosition(self, text, bracketLeft, bracketRight, posQuote):
+        """
+        Private method to find the start and end position of pairs of brackets.
+
+        https://stackoverflow.com/questions/29991917/
+        indices-of-matching-parentheses-in-python
+        
+        @param text text to be parsed
+        @type str
+        @param bracketLeft character of the left bracket
+        @type str
+        @param bracketRight character of the right bracket
+        @type str
+        @param posQuote list of tuple with start and end position of pairs
+            of quotes
+        @type list of tuple of (int, int)
+        @return list of tuple with start and end position of pairs of brackets
+        @rtype list of tuple of (int, int)
+        @exception IndexError raised when a closing or opening bracket is
+            missing
+        """
+        pos = []
+        pstack = []
+        
+        for index, character in enumerate(text):
+            if (
+                character == bracketLeft and
+                not self.__isCharInPairs(index, posQuote)
+            ):
+                pstack.append(index)
+            elif (
+                character == bracketRight and
+                not self.__isCharInPairs(index, posQuote)
+            ):
+                if len(pstack) == 0:
+                    raise IndexError(
+                        "No matching closing parens at: {0}".format(index))
+                pos.append((pstack.pop(), index))
+        
+        if len(pstack) > 0:
+            raise IndexError(
+                "No matching opening parens at: {0}".format(pstack.pop()))
+        
+        return pos
+    
+    def __splitArgumentToNameTypeValue(self, argumentsList,
+                                       quote, quoteReplace):
+        """
+        Private method to split some argument text to name, type and value.
+        
+        @param argumentsList list of function argument definitions
+        @type list of str
+        @param quote quote string to be replaced
+        @type str
+        @param quoteReplace quote string to replace the original
+        @type str
+        """
+        for arg in argumentsList:
+            hasType = False
+            hasValue = False
+            
+            colonPosition = arg.find(":")
+            equalPosition = arg.find("=")
+            
+            if equalPosition > -1:
+                hasValue = True
+            
+            if colonPosition > -1:
+                if not hasValue:
+                    hasType = True
+                elif equalPosition > colonPosition:
+                    # exception for def foo(arg1=":")
+                    hasType = True
+            
+            if hasValue and hasType:
+                argName = arg[0:colonPosition].strip()
+                argType = arg[colonPosition + 1:equalPosition].strip()
+                argValue = arg[equalPosition + 1:].strip()
+            elif not hasValue and hasType:
+                argName = arg[0:colonPosition].strip()
+                argType = arg[colonPosition + 1:].strip()
+                argValue = None
+            elif hasValue and not hasType:
+                argName = arg[0:equalPosition].strip()
+                argType = None
+                argValue = arg[equalPosition + 1:].strip()
+            else:
+                argName = arg.strip()
+                argType = None
+                argValue = None
+            if argValue and quote:
+                # sanitize argValue with respect to quotes
+                argValue = argValue.replace(quote, quoteReplace)
+            
+            self.argumentsList.append((argName, argType, argValue))
+    
+    def __splitArgumentsTextToList(self, argumentsText):
+        """
+        Private method to split the given arguments text into a list of
+        arguments.
+        
+        This function uses a comma to separate arguments and ignores a comma in
+        brackets and quotes.
+        
+        @param argumentsText text containing the list of arguments
+        @type str
+        @return list of individual argument texts
+        @rtype list of str
+        """
+        argumentsList = []
+        indexFindStart = 0
+        indexArgStart = 0
+        
+        try:
+            posQuote = self.__findQuotePosition(argumentsText)
+            posRound = self.__findBracketPosition(
+                argumentsText, "(", ")", posQuote)
+            posCurly = self.__findBracketPosition(
+                argumentsText, "{", "}", posQuote)
+            posSquare = self.__findBracketPosition(
+                argumentsText, "[", "]", posQuote)
+        except IndexError:
+            return None
+        
+        while True:
+            posComma = argumentsText.find(",", indexFindStart)
+            
+            if posComma == -1:
+                break
+            
+            indexFindStart = posComma + 1
+            
+            if (
+                self.__isCharInPairs(posComma, posRound) or
+                self.__isCharInPairs(posComma, posCurly) or
+                self.__isCharInPairs(posComma, posSquare) or
+                self.__isCharInPairs(posComma, posQuote)
+            ):
+                continue
+            
+            argumentsList.append(argumentsText[indexArgStart:posComma])
+            indexArgStart = posComma + 1
+        
+        if indexArgStart < len(argumentsText):
+            argumentsList.append(argumentsText[indexArgStart:])
+        
+        return argumentsList
+    
+    def parseDefinition(self, text, quote, quoteReplace):
+        """
+        Public method to parse the function definition text.
+        
+        @param text text containing the function definition
+        @type str
+        @param quote quote string to be replaced
+        @type str
+        @param quoteReplace quote string to replace the original
+        @type str
+        """
+        self.functionIndent = getIndentStr(text)
+        
+        textList = text.splitlines()
+        if textList[0].lstrip().startswith("@"):
+            # first line of function definition is a decorator
+            decorator = textList.pop(0).strip()
+            if decorator == "@staticmethod":
+                self.functionType = "staticmethod"
+            elif decorator == "@classmethod":
+                self.functionType = "classmethod"
+            elif re.match(r"@(PyQt[456]\.)?(QtCore\.)?pyqtSlot", decorator):
+                self.functionType = "qtslot"
+            elif re.match(r"@(PySide[26]\.)?(QtCore\.)?Slot", decorator):
+                self.functionType = "qtslot"
+        
+        text = "".join(textList).strip()
+        
+        if text.startswith("async def "):
+            self.isAsync = True
+        
+        returnType = re.search(r"->[ ]*([a-zA-Z0-9_,()\[\] ]*):$", text)
+        if returnType:
+            self.returnTypeAnnotated = returnType.group(1)
+            textEnd = text.rfind(returnType.group(0))
+        else:
+            self.returnTypeAnnotated = None
+            textEnd = len(text)
+        
+        positionArgumentsStart = text.find("(") + 1
+        positionArgumentsEnd = text.rfind(")", positionArgumentsStart,
+                                          textEnd)
+        
+        self.argumentsText = text[positionArgumentsStart:positionArgumentsEnd]
+        
+        argumentsList = self.__splitArgumentsTextToList(self.argumentsText)
+        if argumentsList is not None:
+            self.hasInfo = True
+            self.__splitArgumentToNameTypeValue(
+                argumentsList, quote, quoteReplace)
+        
+        functionName = (
+            text[:positionArgumentsStart - 1]
+            .replace("async def ", "")
+            .replace("def ", "")
+        )
+        if functionName == "__init__":
+            self.functionType = "constructor"
+        elif functionName.startswith("__"):
+            if functionName.endswith("__"):
+                self.visibility = "special"
+            else:
+                self.visibility = "private"
+        elif functionName.startswith("_"):
+            self.visibility = "protected"
+        else:
+            self.visibility = "public"
+    
+    def parseBody(self, text):
+        """
+        Public method to parse the function body text.
+        
+        @param text function body text
+        @type str
+        """
+        raiseRe = re.findall(r"[ \t]raise ([a-zA-Z0-9_]*)", text)
+        if len(raiseRe) > 0:
+            self.raiseList = [x.strip() for x in raiseRe]
+            # remove duplicates from list while keeping it in the order
+            # stackoverflow.com/questions/7961363/removing-duplicates-in-lists
+            self.raiseList = list(collections.OrderedDict.fromkeys(
+                self.raiseList))
+
+        yieldRe = re.search(r"[ \t]yield ", text)
+        if yieldRe:
+            self.hasYield = True
+
+        # get return value
+        returnPattern = r"return |yield "
+        lineList = text.splitlines()
+        returnFound = False
+        returnTmpLine = ""
+
+        for line in lineList:
+            line = line.strip()
+
+            if returnFound is False:
+                if re.match(returnPattern, line):
+                    returnFound = True
+
+            if returnFound:
+                returnTmpLine += line
+                # check the integrity of line
+                try:
+                    quotePos = self.__findQuotePosition(returnTmpLine)
+
+                    if returnTmpLine.endswith("\\"):
+                        returnTmpLine = returnTmpLine[:-1]
+                        continue
+
+                    self.__findBracketPosition(
+                        returnTmpLine, "(", ")", quotePos)
+                    self.__findBracketPosition(
+                        returnTmpLine, "{", "}", quotePos)
+                    self.__findBracketPosition(
+                        returnTmpLine, "[", "]", quotePos)
+                except IndexError:
+                    continue
+
+                returnValue = re.sub(returnPattern, "", returnTmpLine)
+                self.returnValueInBody.append(returnValue)
+
+                returnFound = False
+                returnTmpLine = ""
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/QScintilla/DocstringGenerator/SphinxdocGenerator.py	Fri Jan 22 16:48:43 2021 +0100
@@ -0,0 +1,82 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2021 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing the docstring generator for the 'sphinxdoc' style.
+"""
+
+
+def generateSphinxDoc(functionInfo):
+    """
+    Function to generate the docstring line list iaw. Sphinx documentation
+    style.
+    
+    Note: Text is created with DESCRIPTION placeholders for descriptions and
+    TYPE placeholders for type information
+    
+    @param functionInfo object containing the function information to base
+        the docstring on
+    @type FunctionInfo
+    @return list of docstring lines
+    @rtype str
+    """
+    lines = []
+    
+    # function description
+    lines.append("DESCRIPTION")
+    
+    # remove 'self', 'this' or 'cls' from arguments list
+    if (
+        len(functionInfo.argumentsList) > 0 and
+        functionInfo.argumentsList[0][0] in ("self", "cls", "this")
+    ):
+        del functionInfo.argumentsList[0]
+    
+    # add an empty line if there is one of the other sections
+    if (
+        functionInfo.argumentsList or
+        functionInfo.hasYield or
+        functionInfo.returnTypeAnnotated or
+        functionInfo.returnValueInBody or
+        functionInfo.raiseList
+    ):
+        lines.append("")
+    
+    # add the parameters section
+    for argName, argType, argValue in functionInfo.argumentsList:
+        argLine = ":param {0}: DESCRIPTION".format(argName)
+        if argValue:
+            argLine += ", defaults to {0}".format(argValue)
+        lines.append(argLine)
+        
+        argLine = ":type {0}: ".format(argName)
+        if argType:
+            argLine += "{0}".format(argType)
+        else:
+            argLine += "TYPE"
+        if argValue:
+            argLine += ", optional"
+        lines.append(argLine)
+    
+    # add an exceptions section, if function raises something
+    if functionInfo.raiseList:
+        for exc in sorted(functionInfo.raiseList):
+            lines.append(":raises {0}: DESCRIPTION".format(exc))
+    
+    # add return section
+    if functionInfo.hasYield or functionInfo.returnValueInBody:
+        if functionInfo.hasYield:
+            lines.append(":yield: DESCRIPTION")
+        else:
+            lines.append(":return: DESCRIPTION")
+        if functionInfo.returnTypeAnnotated:
+            lines.append(":rtype: {0}".format(
+                functionInfo.returnTypeAnnotated))
+        else:
+            lines.append(":rtype: TYPE")
+    
+    lines.append("")
+    
+    return lines
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/QScintilla/DocstringGenerator/__init__.py	Fri Jan 22 16:48:43 2021 +0100
@@ -0,0 +1,50 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2021 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Package containing the documentation string generator tool.
+"""
+
+from PyQt5.QtCore import QCoreApplication
+
+
+def getDocstringGenerator(editor):
+    """
+    Function to get a docstring generator for the given editor.
+    
+    @param editor reference to the editor to create a docstring generator for
+    @type Editor
+    @return reference to the created docstring generator
+    @rtype BaseDocstringGenerator
+    """
+    if (
+        editor.isPyFile() or
+        editor.getFileType() in ("Python", "Python3", "MicroPython")
+    ):
+        from .PyDocstringGenerator import PyDocstringGenerator
+        return PyDocstringGenerator(editor)
+    else:
+        from .BaseDocstringGenerator import BaseDocstringGenerator
+        return BaseDocstringGenerator(editor)
+
+
+def getSupportedDocstringTypes():
+    """
+    Function to get the supported docstring types/styles.
+    
+    @return list of tuples with supported docstring type/style and the
+        corresponding display string
+    @rtype tuple of (str, str)
+    """
+    return [
+        ("ericdoc",
+         QCoreApplication.translate("DocstringGenerator", "Eric")),
+        ("numpydoc",
+         QCoreApplication.translate("DocstringGenerator", "NumPy")),
+        ("googledoc",
+         QCoreApplication.translate("DocstringGenerator", "Google")),
+        ("sphinxdoc",
+         QCoreApplication.translate("DocstringGenerator", "Sphinx")),
+    ]
--- a/eric6/QScintilla/Editor.py	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/QScintilla/Editor.py	Fri Jan 22 16:48:43 2021 +0100
@@ -256,6 +256,8 @@
         self.__lastEditPosition = None
         self.__annotationLines = 0
         
+        self.__docstringGenerator = None
+        
         # list of clones
         self.__clones = []
         
@@ -844,6 +846,10 @@
         self.menuActs["SpellCheckLanguages"] = self.menu.addMenu(
             self.spellLanguagesMenu)
         self.menu.addSeparator()
+        self.menuActs["Docstring"] = self.menu.addAction(
+            self.tr("Insert Docstring"),
+            self.__insertDocstring)
+        self.menu.addSeparator()
         self.menu.addAction(
             self.tr('Shorten empty lines'), self.shortenEmptyLines)
         self.menu.addSeparator()
@@ -4822,7 +4828,9 @@
             Preferences.getDocuViewer("ShowInfoOnOpenParenthesis")
         ):
             self.vm.showEditorInfo(self)
-            
+        
+        self.__delayedDocstringMenuPopup(self.getCursorPosition())
+        
         if self.isListActive():
             if self.__isStartChar(char):
                 self.cancelList()
@@ -5492,6 +5500,11 @@
         
         self.menuActs["Tools"].setEnabled(not self.toolsMenu.isEmpty())
         
+        cline = self.getCursorPosition()[0]
+        line = self.text(cline)
+        self.menuActs["Docstring"].setEnabled(
+            self.getDocstringGenerator().isFunctionStart(line))
+        
         self.showMenu.emit("Main", self.menu, self)
         
     def __showContextMenuAutocompletion(self):
@@ -7094,6 +7107,17 @@
         """
         self.vm.eventFilter(self, event)
         super(Editor, self).mousePressEvent(event)
+    
+    def mouseDoubleClickEvent(self, evt):
+        """
+        Protected method to handle mouse double click events.
+        
+        @param evt reference to the mouse event
+        @type QMouseEvent
+        """
+        super(Editor, self).mouseDoubleClickEvent(evt)
+        
+        self.mouseDoubleClick.emit(evt.pos(), evt.buttons())
         
     def wheelEvent(self, evt):
         """
@@ -8621,13 +8645,79 @@
         
         return None
     
-    def mouseDoubleClickEvent(self, evt):
-        """
-        Protected method to handle mouse double click events.
-        
-        @param evt reference to the mouse event
-        @type QMouseEvent
-        """
-        super(Editor, self).mouseDoubleClickEvent(evt)
-        
-        self.mouseDoubleClick.emit(evt.pos(), evt.buttons())
+    #######################################################################
+    ## Methods implementing the docstring generator interface
+    #######################################################################
+    
+    def getDocstringGenerator(self):
+        """
+        Public method to get a reference to the docstring generator.
+        
+        @return reference to the docstring generator
+        @rtype BaseDocstringGenerator
+        """
+        if self.__docstringGenerator is None:
+            from . import DocstringGenerator
+            self.__docstringGenerator = (
+                DocstringGenerator.getDocstringGenerator(self)
+            )
+        
+        return self.__docstringGenerator
+    
+    @pyqtSlot()
+    def __insertDocstring(self):
+        """
+        Private slot to generate and insert a docstring for the function under
+        the cursor.
+        """
+        generator = self.getDocstringGenerator()
+        generator.insertDocstring(self.getCursorPosition(), fromStart=True)
+    
+    def __delayedDocstringMenuPopup(self, cursorPosition):
+        """
+        Private method to test, if the user might want to insert a docstring.
+        
+        @param cursorPosition current cursor position (line and column)
+        @type tuple of (int, int)
+        """
+        if self.getDocstringGenerator().isDocstringIntro(cursorPosition):
+            lineText = self.text(cursorPosition[0])
+            
+            QTimer.singleShot(
+                300,
+                lambda: self.__popupDocstringMenu(lineText, cursorPosition)
+            )
+    
+    def __popupDocstringMenu(self, lastLineText, lastCursorPosition):
+        """
+        Private slot to pop up a menu asking the user, if a docstring should be
+        inserted.
+        
+        @param lastLineText line contents when the delay timer was started
+        @type str
+        @param lastCursorPosition position of the cursor when the delay timer
+            was started (line and index)
+        @type tuple of (int, int)
+        """
+        cursorPosition = self.getCursorPosition()
+        if lastCursorPosition != cursorPosition:
+            return
+        
+        if self.text(cursorPosition[0]) != lastLineText:
+            return
+        
+        generator = self.getDocstringGenerator()
+        if generator.hasFunctionDefinition(cursorPosition):
+            from .DocstringGenerator.BaseDocstringGenerator import (
+                DocstringMenuForEnterOnly
+            )
+            docstringMenu = DocstringMenuForEnterOnly(self)
+            act = docstringMenu.addAction(
+                UI.PixmapCache.getIcon("fileText"),
+                self.tr("Generate Docstring"),
+                lambda: generator.insertDocstring(cursorPosition,
+                                                  fromStart=False)
+            )
+            docstringMenu.setActiveAction(act)
+            docstringMenu.popup(
+                self.mapToGlobal(self.getGlobalCursorPosition()))
--- a/eric6/QScintilla/QsciScintillaCompat.py	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/QScintilla/QsciScintillaCompat.py	Fri Jan 22 16:48:43 2021 +0100
@@ -1534,7 +1534,7 @@
         self.updateUserListSize()
     
     ###########################################################################
-    ## work-arounds for buggy behavior
+    ## work-around for buggy behavior
     ###########################################################################
     
     def updateUserListSize(self):
@@ -1722,6 +1722,21 @@
             """
             self.SendScintilla(QsciScintilla.SCI_SETWRAPSTARTINDENT, indent)
     
+    if "getGlobalCursorPosition" not in QsciScintilla.__dict__:
+        def getGlobalCursorPosition(self):
+            """
+            Public method to determine the point of the cursor.
+            
+            @return point of the cursor
+            @rtype QPoint
+            """
+            pos = self.currentPosition()
+            x = self.SendScintilla(QsciScintilla.SCI_POINTXFROMPOSITION,
+                                   0, pos)
+            y = self.SendScintilla(QsciScintilla.SCI_POINTYFROMPOSITION,
+                                   0, pos)
+            return QPoint(x, y)
+    
 ##    #########################################################################
 ##    ## Methods below have been added to QScintilla starting with version 2.x.
 ##    #########################################################################
--- a/eric6/i18n/eric6_cs.ts	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/i18n/eric6_cs.ts	Fri Jan 22 16:48:43 2021 +0100
@@ -8795,7 +8795,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="86"/>
         <source>docstring summary does not end with a period</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8830,7 +8830,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
         <source>docstring summary is not followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8840,92 +8840,92 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
         <source>private function/method is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="76"/>
         <source>private class is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="77"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="80"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
         <source>trailing quotes of docstring not on separate line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="87"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="90"/>
         <source>docstring does not contain a @return line but function/method returns something</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="91"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="94"/>
         <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="103"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="106"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="109"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <source>docstring contains too many @param/@keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="112"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="115"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="118"/>
         <source>class docstring is preceded by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="117"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="120"/>
         <source>class docstring is followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="119"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="122"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
         <source>function/method docstring is followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="131"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="134"/>
         <source>docstring does not contain a @exception line but function/method raises an exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="135"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="138"/>
         <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="158"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="161"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8935,42 +8935,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="88"/>
         <source>docstring summary does not start with &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="139"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="142"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="145"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="148"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <source>docstring does not contain a @signal line but class defines signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="151"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="154"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="157"/>
         <source>documented signal &apos;{0}&apos; is not defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="75"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="78"/>
         <source>class docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8985,15 +8985,43 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="95"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="98"/>
         <source>docstring does not contain a @yield line but function/method yields something</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="99"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="102"/>
         <source>docstring contains a @yield line but function/method doesn&apos;t yield anything</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <source>function docstring still contains some placeholders</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>DocstringGenerator</name>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="42"/>
+        <source>Eric</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="44"/>
+        <source>NumPy</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="46"/>
+        <source>Google</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="48"/>
+        <source>Sphinx</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DotDesktopListSelectionDialog</name>
@@ -11322,812 +11350,812 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3110"/>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
         <source>Open File</source>
         <translation>Otevřít soubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="783"/>
+        <location filename="../QScintilla/Editor.py" line="785"/>
         <source>Undo</source>
         <translation>Vrátit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="786"/>
+        <location filename="../QScintilla/Editor.py" line="788"/>
         <source>Redo</source>
         <translation>Znovu použít</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="789"/>
+        <location filename="../QScintilla/Editor.py" line="791"/>
         <source>Revert to last saved state</source>
         <translation>Vrátit k poslednímu uloženému stavu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="793"/>
+        <location filename="../QScintilla/Editor.py" line="795"/>
         <source>Cut</source>
         <translation>Vyjmout</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="796"/>
+        <location filename="../QScintilla/Editor.py" line="798"/>
         <source>Copy</source>
         <translation>Kopírovat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="799"/>
+        <location filename="../QScintilla/Editor.py" line="801"/>
         <source>Paste</source>
         <translation>Vložit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="807"/>
+        <location filename="../QScintilla/Editor.py" line="809"/>
         <source>Indent</source>
         <translation>Odsadit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="810"/>
+        <location filename="../QScintilla/Editor.py" line="812"/>
         <source>Unindent</source>
         <translation>Zrušit odsazení</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="813"/>
+        <location filename="../QScintilla/Editor.py" line="815"/>
         <source>Comment</source>
         <translation>Vytvořit komentář</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="816"/>
+        <location filename="../QScintilla/Editor.py" line="818"/>
         <source>Uncomment</source>
         <translation>Zrušit komentář</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Stream Comment</source>
         <translation>Proudový komentář</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Box Comment</source>
         <translation>Obdélníkový komentář</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="826"/>
-        <source>Select to brace</source>
-        <translation>Vybrat až po závorku</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="828"/>
+        <source>Select to brace</source>
+        <translation>Vybrat až po závorku</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Select all</source>
         <translation>Vybrat vše</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="829"/>
+        <location filename="../QScintilla/Editor.py" line="831"/>
         <source>Deselect all</source>
         <translation>Zrušit celý výběr</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="847"/>
+        <location filename="../QScintilla/Editor.py" line="853"/>
         <source>Shorten empty lines</source>
         <translation>Zkrátit prázdné řádky</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="854"/>
+        <location filename="../QScintilla/Editor.py" line="860"/>
         <source>Use Monospaced Font</source>
         <translation>Použít neporoporcionální font</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="859"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Autosave enabled</source>
         <translation>Zapnout autosave</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="902"/>
-        <source>Close</source>
-        <translation>Zavřít</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="908"/>
+        <source>Close</source>
+        <translation>Zavřít</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="914"/>
         <source>Save</source>
         <translation>Uložit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="911"/>
+        <location filename="../QScintilla/Editor.py" line="917"/>
         <source>Save As...</source>
         <translation>Uložit jako...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="933"/>
         <source>Print</source>
         <translation>Tisk</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="956"/>
+        <location filename="../QScintilla/Editor.py" line="962"/>
         <source>Complete from Document</source>
         <translation type="unfinished">z dokumentu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="958"/>
+        <location filename="../QScintilla/Editor.py" line="964"/>
         <source>Complete from APIs</source>
         <translation type="unfinished">z API</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="960"/>
+        <location filename="../QScintilla/Editor.py" line="966"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished">z dokumentu a API</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="974"/>
+        <location filename="../QScintilla/Editor.py" line="980"/>
         <source>Check</source>
         <translation>Zkontrolovat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="994"/>
+        <location filename="../QScintilla/Editor.py" line="1000"/>
         <source>Show</source>
         <translation>Zobrazit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="996"/>
-        <source>Code metrics...</source>
-        <translation>Metrika kódu...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="997"/>
-        <source>Code coverage...</source>
-        <translation>Pokrytí kódu...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="999"/>
-        <source>Show code coverage annotations</source>
-        <translation>Zobrazit poznámky pokrytí kódu</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1002"/>
-        <source>Hide code coverage annotations</source>
-        <translation>Skrýt poznámky pokrytí kódu</translation>
+        <source>Code metrics...</source>
+        <translation>Metrika kódu...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1003"/>
+        <source>Code coverage...</source>
+        <translation>Pokrytí kódu...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1005"/>
+        <source>Show code coverage annotations</source>
+        <translation>Zobrazit poznámky pokrytí kódu</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1008"/>
+        <source>Hide code coverage annotations</source>
+        <translation>Skrýt poznámky pokrytí kódu</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1011"/>
         <source>Profile data...</source>
         <translation>Profilovat data...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
-        <source>Diagrams</source>
-        <translation>Diagramy</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1020"/>
-        <source>Class Diagram...</source>
-        <translation>Diagram třídy...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1022"/>
-        <source>Package Diagram...</source>
-        <translation>Diagram balíčku...</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1024"/>
-        <source>Imports Diagram...</source>
-        <translation>Diagram importů...</translation>
+        <source>Diagrams</source>
+        <translation>Diagramy</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1026"/>
+        <source>Class Diagram...</source>
+        <translation>Diagram třídy...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1028"/>
+        <source>Package Diagram...</source>
+        <translation>Diagram balíčku...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1030"/>
+        <source>Imports Diagram...</source>
+        <translation>Diagram importů...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1032"/>
         <source>Application Diagram...</source>
         <translation>Diagram aplikace...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1044"/>
+        <location filename="../QScintilla/Editor.py" line="1050"/>
         <source>Languages</source>
         <translation>Jazyky</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1177"/>
+        <location filename="../QScintilla/Editor.py" line="1183"/>
         <source>No Language</source>
         <translation>Žádný jazyk</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1224"/>
-        <source>Toggle bookmark</source>
-        <translation>Přepnout záložku</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1226"/>
-        <source>Next bookmark</source>
-        <translation>Následující záložka</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1228"/>
-        <source>Previous bookmark</source>
-        <translation>Předchozí záložka</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1230"/>
+        <source>Toggle bookmark</source>
+        <translation>Přepnout záložku</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1232"/>
+        <source>Next bookmark</source>
+        <translation>Následující záložka</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1234"/>
+        <source>Previous bookmark</source>
+        <translation>Předchozí záložka</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1236"/>
         <source>Clear all bookmarks</source>
         <translation>Zrušit všechny záložky</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1304"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Goto syntax error</source>
         <translation>Jít na chybu syntaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1314"/>
         <source>Show syntax error message</source>
         <translation>Zobrazit hlášení syntaktické chyby</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1313"/>
+        <location filename="../QScintilla/Editor.py" line="1319"/>
         <source>Clear syntax error</source>
         <translation>Zrušit chybu syntaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1239"/>
+        <location filename="../QScintilla/Editor.py" line="1245"/>
         <source>Toggle breakpoint</source>
         <translation>Přepnout breakpoint</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1241"/>
+        <location filename="../QScintilla/Editor.py" line="1247"/>
         <source>Toggle temporary breakpoint</source>
         <translation>Přepnout dočasný breakpoint</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1244"/>
+        <location filename="../QScintilla/Editor.py" line="1250"/>
         <source>Edit breakpoint...</source>
         <translation>Editovat breakpoint...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5613"/>
+        <location filename="../QScintilla/Editor.py" line="5626"/>
         <source>Enable breakpoint</source>
         <translation>Aktivovat breakpoint</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1249"/>
+        <location filename="../QScintilla/Editor.py" line="1255"/>
         <source>Next breakpoint</source>
         <translation>Následující breakpoint</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1251"/>
+        <location filename="../QScintilla/Editor.py" line="1257"/>
         <source>Previous breakpoint</source>
         <translation>Předchozí breakpoint</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1256"/>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
         <source>Clear all breakpoints</source>
         <translation>Zrušit všechny breakpointy</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1335"/>
+        <location filename="../QScintilla/Editor.py" line="1341"/>
         <source>Next uncovered line</source>
         <translation>Následující odkrytá řádka</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1339"/>
+        <location filename="../QScintilla/Editor.py" line="1345"/>
         <source>Previous uncovered line</source>
         <translation>Předchozí odkrytá řádka</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1344"/>
+        <location filename="../QScintilla/Editor.py" line="1350"/>
         <source>Next task</source>
         <translation>Následující úloha</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1348"/>
+        <location filename="../QScintilla/Editor.py" line="1354"/>
         <source>Previous task</source>
         <translation>Předchozí úloha</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>Modification of Read Only file</source>
         <translation>Modifikace souboru otevřeného jen pro čtení</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>You are attempting to change a read only file. Please save to a different file first.</source>
         <translation>Pokoušíte se změnit soubor, který je otevřen jen pro čtení. Prosím, uložte jej nejdříve do jiného souboru.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2675"/>
+        <location filename="../QScintilla/Editor.py" line="2681"/>
         <source>Printing...</source>
         <translation>Tisk...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2692"/>
+        <location filename="../QScintilla/Editor.py" line="2698"/>
         <source>Printing completed</source>
         <translation>Tisk je hotov</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2694"/>
+        <location filename="../QScintilla/Editor.py" line="2700"/>
         <source>Error while printing</source>
         <translation>Chyba během tisku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2697"/>
+        <location filename="../QScintilla/Editor.py" line="2703"/>
         <source>Printing aborted</source>
         <translation>Tisk byl zrušen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
         <source>Save File</source>
         <translation>Uložit soubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <source>File Modified</source>
         <translation>Soubor je modifikován</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion</source>
         <translation>Autodoplňování</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation>Autodoplňování není dostupné protože zdrojová část autodoplňování nebyla nalezena.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5616"/>
+        <location filename="../QScintilla/Editor.py" line="5629"/>
         <source>Disable breakpoint</source>
         <translation>Deaktivovat breakpoint</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <source>Code Coverage</source>
         <translation>Pokrytí kódu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <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="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Zobrazit poznámky pokrytí kódu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6047"/>
+        <location filename="../QScintilla/Editor.py" line="6060"/>
         <source>All lines have been covered.</source>
         <translation>Všechny řádky byly pokryty.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>There is no coverage file available.</source>
         <translation>Soubor s pokrytím není dostupný.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Profile Data</source>
         <translation>Profilovat data</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Please select a profile file</source>
         <translation>Prosím, vyberte soubor s profilem</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <source>Syntax Error</source>
         <translation>Chyba syntaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <source>No syntax error message available.</source>
         <translation>Hlášení syntaktické chyby není dostupné.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Macro Name</source>
         <translation>Název makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Select a macro name:</source>
         <translation>Vyberte název makra:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6750"/>
+        <location filename="../QScintilla/Editor.py" line="6763"/>
         <source>Load macro file</source>
         <translation>Načíst soubor makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6792"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Macro files (*.macro)</source>
         <translation>Macro soubory (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6772"/>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
         <source>Error loading macro</source>
         <translation>Chyba při načítání makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6792"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Save macro file</source>
         <translation>Uložit soubor s makrem</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
         <source>Save macro</source>
         <translation>Uložit makro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6824"/>
-        <source>Error saving macro</source>
-        <translation>Chyba při ukládání makra</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6837"/>
-        <source>Start Macro Recording</source>
-        <translation>Spustit záznam makra</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6837"/>
+        <source>Error saving macro</source>
+        <translation>Chyba při ukládání makra</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6850"/>
+        <source>Start Macro Recording</source>
+        <translation>Spustit záznam makra</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6850"/>
         <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="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Macro Recording</source>
         <translation>Záznam makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Enter name of the macro:</source>
         <translation>Vložte název makra:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7033"/>
+        <location filename="../QScintilla/Editor.py" line="7046"/>
         <source>File changed</source>
         <translation>Soubor změněn</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <source>Drop Error</source>
         <translation>Zahodit chybu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7375"/>
+        <location filename="../QScintilla/Editor.py" line="7399"/>
         <source>Resources</source>
         <translation>Zdroje</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7401"/>
         <source>Add file...</source>
         <translation>Přidat soubor...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7379"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add files...</source>
         <translation>Přidat soubory...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7405"/>
         <source>Add aliased file...</source>
         <translation>Přidat zástupce souboru...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7384"/>
+        <location filename="../QScintilla/Editor.py" line="7408"/>
         <source>Add localized resource...</source>
         <translation>Přidat lokalizované resource...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7388"/>
+        <location filename="../QScintilla/Editor.py" line="7412"/>
         <source>Add resource frame</source>
         <translation>Přidat resource frame</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7407"/>
+        <location filename="../QScintilla/Editor.py" line="7431"/>
         <source>Add file resource</source>
         <translation>Přidat soubor resource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7423"/>
+        <location filename="../QScintilla/Editor.py" line="7447"/>
         <source>Add file resources</source>
         <translation>Přidat soubory resource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add aliased file resource</source>
         <translation>Přidat zástupce souboru resource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Package Diagram</source>
         <translation>Diagram balíčku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Include class attributes?</source>
         <translation>Včetně atributů třídy?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Application Diagram</source>
         <translation>Diagram aplikace</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Include module names?</source>
         <translation>Včetně jmen modulů?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1202"/>
+        <location filename="../QScintilla/Editor.py" line="1208"/>
         <source>Export as</source>
         <translation>Exportovat jako</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
         <source>Export source</source>
         <translation>Export zdroj</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
         <source>No export format given. Aborting...</source>
         <translation>Nebyl zadán forám exportu. Zrušeno....</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
         <source>Imports Diagram</source>
         <translation>Importovat diagram</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
         <source>Include imports from external modules?</source>
         <translation>Zahrnout importy z externích modulů?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="878"/>
+        <location filename="../QScintilla/Editor.py" line="884"/>
         <source>Calltip</source>
         <translation>Rychlé tipy</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
+        <location filename="../QScintilla/Editor.py" line="930"/>
         <source>Print Preview</source>
         <translation>Náhled tisku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="468"/>
+        <location filename="../QScintilla/Editor.py" line="470"/>
         <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Okno editoru zdrojového kódu&lt;/b&gt;&lt;p&gt;V tomto okně se zobrazuje a edituje soubor se zdrojovým kódem. Můžete otevřít oken podle libosti. Jméno souboru se zobrazuje v titlebaru okna.&lt;/p&gt;&lt;p&gt;Kliknutím do prostoru mezi čísly řádku a značkami skládání nastavíte breakpoint. Přes kontextové menu je pak lze editovat.&lt;/p&gt;&lt;p&gt;Záložka se vkládá kliknutím na stejné místo se stisknutou klávesou Shift.&lt;/p&gt;&lt;p&gt;Tyto akce mohou být navráceny zpět i opětovným kliknutím nebo přes kontextové menu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="869"/>
         <source>Typing aids enabled</source>
         <translation>Pomůcky při psaní zapnuty</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1134"/>
+        <location filename="../QScintilla/Editor.py" line="1140"/>
         <source>End-of-Line Type</source>
         <translation>Typ Konec-řádku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1138"/>
+        <location filename="../QScintilla/Editor.py" line="1144"/>
         <source>Unix</source>
         <translation>Unix</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1145"/>
+        <location filename="../QScintilla/Editor.py" line="1151"/>
         <source>Windows</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1152"/>
+        <location filename="../QScintilla/Editor.py" line="1158"/>
         <source>Macintosh</source>
         <translation>Macintosh</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1093"/>
+        <location filename="../QScintilla/Editor.py" line="1099"/>
         <source>Encodings</source>
         <translation>Kódování</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1073"/>
+        <location filename="../QScintilla/Editor.py" line="1079"/>
         <source>Guessed</source>
         <translation>Odhadem</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1413"/>
+        <location filename="../QScintilla/Editor.py" line="1419"/>
         <source>Alternatives</source>
         <translation>Alternativy</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
         <source>Pygments Lexer</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Použít Pygments lexer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7881"/>
+        <location filename="../QScintilla/Editor.py" line="7905"/>
         <source>Check spelling...</source>
         <translation>Zatrhnout kontrolu...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="837"/>
+        <location filename="../QScintilla/Editor.py" line="839"/>
         <source>Check spelling of selection...</source>
         <translation>Zatrhnout výběr kontroly...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7884"/>
+        <location filename="../QScintilla/Editor.py" line="7908"/>
         <source>Add to dictionary</source>
         <translation>Přidat do slovníku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7886"/>
+        <location filename="../QScintilla/Editor.py" line="7910"/>
         <source>Ignore All</source>
         <translation>Ignorovat vše</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="841"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Remove from dictionary</source>
         <translation>Odebrat ze slovníku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="379"/>
+        <location filename="../QScintilla/Editor.py" line="381"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Velikost souboru &lt;b&gt;{0}&lt;/b&gt; je &lt;b&gt;{1} KB&lt;/b&gt;. Opravdu jej chcete načíst?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1390"/>
+        <location filename="../QScintilla/Editor.py" line="1396"/>
         <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Pro formát exportu &lt;b&gt;{0}&lt;/b&gt; není exportér dostupný. Zrušeno.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1409"/>
+        <location filename="../QScintilla/Editor.py" line="1415"/>
         <source>Alternatives ({0})</source>
         <translation>Alternativy ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <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="../QScintilla/Editor.py" line="3110"/>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; 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="3234"/>
+        <location filename="../QScintilla/Editor.py" line="3240"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; 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="6763"/>
+        <location filename="../QScintilla/Editor.py" line="6776"/>
         <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="6772"/>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
         <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="6824"/>
+        <location filename="../QScintilla/Editor.py" line="6837"/>
         <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="7213"/>
+        <location filename="../QScintilla/Editor.py" line="7237"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <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="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation>Zástupce pro soubor &lt;b&gt;{0}&lt;/b&gt;:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1318"/>
+        <location filename="../QScintilla/Editor.py" line="1324"/>
         <source>Next warning</source>
         <translation>Následující varování</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1322"/>
+        <location filename="../QScintilla/Editor.py" line="1328"/>
         <source>Previous warning</source>
         <translation>Předchozí varování</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1326"/>
+        <location filename="../QScintilla/Editor.py" line="1332"/>
         <source>Show warning message</source>
         <translation>Zobrazit varování</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1330"/>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
         <source>Clear warnings</source>
         <translation>Vyčistit varování</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
         <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="6610"/>
+        <location filename="../QScintilla/Editor.py" line="6623"/>
         <source>Warning: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6617"/>
+        <location filename="../QScintilla/Editor.py" line="6630"/>
         <source>Error: {0}</source>
         <translation type="unfinished">Chyby: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7029"/>
+        <location filename="../QScintilla/Editor.py" line="7042"/>
         <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="920"/>
+        <location filename="../QScintilla/Editor.py" line="926"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1030"/>
+        <location filename="../QScintilla/Editor.py" line="1036"/>
         <source>Load Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1353"/>
+        <location filename="../QScintilla/Editor.py" line="1359"/>
         <source>Next change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1357"/>
+        <location filename="../QScintilla/Editor.py" line="1363"/>
         <source>Previous change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
         <source>Warning</source>
         <translation type="unfinished">Varování</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6607"/>
+        <location filename="../QScintilla/Editor.py" line="6620"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
+        <location filename="../QScintilla/Editor.py" line="900"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="897"/>
+        <location filename="../QScintilla/Editor.py" line="903"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="984"/>
+        <location filename="../QScintilla/Editor.py" line="990"/>
         <source>Tools</source>
         <translation type="unfinished">Nástroje</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1115"/>
+        <location filename="../QScintilla/Editor.py" line="1121"/>
         <source>Re-Open With Encoding</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12137,120 +12165,130 @@
         <translation type="obsolete">&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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="876"/>
         <source>Automatic Completion enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="950"/>
+        <location filename="../QScintilla/Editor.py" line="956"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
         <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="5184"/>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5184"/>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
         <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="8391"/>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8391"/>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="914"/>
+        <location filename="../QScintilla/Editor.py" line="920"/>
         <source>Save Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="953"/>
+        <location filename="../QScintilla/Editor.py" line="959"/>
         <source>Clear Completions Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="880"/>
+        <location filename="../QScintilla/Editor.py" line="886"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1361"/>
+        <location filename="../QScintilla/Editor.py" line="1367"/>
         <source>Clear changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="803"/>
+        <location filename="../QScintilla/Editor.py" line="805"/>
         <source>Execute Selection In Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
+        <location filename="../QScintilla/Editor.py" line="1271"/>
         <source>Toggle all folds</source>
         <translation type="unfinished">Složit/rozložit všechna skládání</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1270"/>
+        <location filename="../QScintilla/Editor.py" line="1276"/>
         <source>Toggle all folds (including children)</source>
         <translation type="unfinished">Složit/rozložit všechna skládání (i s podsložkami)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1275"/>
-        <source>Toggle current fold</source>
-        <translation type="unfinished">Složit/rozložit aktuální složený blok</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1281"/>
+        <source>Toggle current fold</source>
+        <translation type="unfinished">Složit/rozložit aktuální složený blok</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1287"/>
         <source>Expand (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
-        <source>Collapse (including children)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1292"/>
+        <source>Collapse (including children)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1298"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1173"/>
+        <location filename="../QScintilla/Editor.py" line="1179"/>
         <source>Spell Check Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7023"/>
+        <location filename="../QScintilla/Editor.py" line="7036"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="849"/>
+        <source>Insert Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorAPIsPage</name>
@@ -13515,72 +13553,72 @@
         <translation>&lt;b&gt;Konfigurace hlavních nastavení editoru&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="125"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="169"/>
         <source>Displays the selected indentation width.</source>
         <translation>Zobrazuje vybranou šířku odsazení.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="103"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="147"/>
         <source>Move to set the indentation width.</source>
         <translation>Posunout pro nastavení šířky odsazení.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="93"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="137"/>
         <source>Indentation width:</source>
         <translation>Šířka odsazení:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="55"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="99"/>
         <source>Move to set the tab width.</source>
         <translation>Posunout pro nastavení šířky tabulátoru.</translation>
     </message>
     <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="89"/>
+        <source>Tab width:</source>
+        <translation>Šířka tabulátoru:</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="121"/>
+        <source>Displays the selected tab width.</source>
+        <translation>Zobrazuje vybranou šířku tabulátoru.</translation>
+    </message>
+    <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="45"/>
-        <source>Tab width:</source>
-        <translation>Šířka tabulátoru:</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="77"/>
-        <source>Displays the selected tab width.</source>
-        <translation>Zobrazuje vybranou šířku tabulátoru.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="236"/>
         <source>Select whether autoindentation shall be enabled</source>
         <translation type="unfinished">Vybrat, jestliže se mají zobrazovat vodítka odsazování.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="239"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="48"/>
         <source>Auto indentation</source>
         <translation type="unfinished">Zobrazit vodítka odsazování</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="266"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="75"/>
         <source>Select whether tabs shall be converted upon opening the file</source>
         <translation>Vybrat, mají-li se při otevírání souboru konvertovat tabulátory</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="269"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="78"/>
         <source>Convert tabs upon open</source>
         <translation>Konvertovat tabulátory po otevření</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="246"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="55"/>
         <source>Select whether tab characters are used for indentations.</source>
         <translation>Vybrat, jsou-li znaky tabulátoru použity pro odsazování.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="249"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="58"/>
         <source>Use tabs for indentations</source>
         <translation>Používat tabulátory pro odsazování</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="256"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="65"/>
         <source>Select whether pressing the tab key indents.</source>
         <translation>Vybrat, má-li stisknutí tabulátoru odsazovat.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="259"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="68"/>
         <source>Tab key indents</source>
         <translation>Tabulátor odsazuje</translation>
     </message>
@@ -13590,135 +13628,150 @@
         <translation>Taby &amp;&amp; Odsazování</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="371"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="373"/>
         <source>Comments</source>
         <translation>Komentáře</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="377"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="379"/>
         <source>Select to insert the comment sign at column 0</source>
         <translation>Vybrat pro vložení značky komentáře do sloupce 0</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="383"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="385"/>
         <source>Insert comment at column 0</source>
         <translation>Vložit komentář do sloupce 0</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="380"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="382"/>
         <source>&lt;b&gt;Insert comment at column 0&lt;/b&gt;&lt;p&gt;Select to insert the comment sign at column 0. Otherwise, the comment sign is inserted at the first non-whitespace position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vložit komentář do sloupce 0&lt;/b&gt;&lt;p&gt;Vybrat pro vložení značky komentáře do sloupce 0. Jinak je značka komentáře vložena na první neprázdnou pozici.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="393"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="424"/>
         <source>Virtual Space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="399"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="430"/>
         <source>Virtual space is the space after the last character of a line. It is not allocated unless some text is entered or copied into it. Usage of virtual space can be configured with these selections.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="409"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="440"/>
         <source>Select to enable a rectangular selection to extend into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="412"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="443"/>
         <source>Selection may access virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="419"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="450"/>
         <source>Select to allow the cursor to be moved into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="422"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="453"/>
         <source>Cursor can move into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="158"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="206"/>
         <source>Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="163"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="211"/>
         <source>Tab Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="168"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="216"/>
         <source>Indent Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="196"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="244"/>
         <source>Press to add a language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="203"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="251"/>
         <source>Press to delete the selected language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="210"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="258"/>
         <source>Press to edit the selected language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Tab and Indent Override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Shall the selected entries really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="281"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="283"/>
         <source>Select to enable the source code outline view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="284"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="286"/>
         <source>Source Code Outline</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="293"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="295"/>
         <source>Default Width:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="320"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="302"/>
         <source>Enter the default width of the source code outline view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="313"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="321"/>
         <source>Width Step Size:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="339"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="328"/>
         <source>Enter the amount of pixels the width of the outline should be increased or decreased</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="358"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="360"/>
         <source>Select to show the source code encoding</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="361"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="363"/>
         <source>Show source file encoding</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="395"/>
+        <source>Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="401"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="414"/>
+        <source>Select the docstring style to be used</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorHighlightersPage</name>
@@ -53390,17 +53443,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1627"/>
+        <location filename="../Preferences/__init__.py" line="1629"/>
         <source>Export Preferences</source>
         <translation>Předvolby exportu</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Import Preferences</source>
         <translation>Předvolby importu</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53951,192 +54004,192 @@
         <translation>Ostatní</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>Read project file</source>
         <translation>Načíst soubor projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>Save project file</source>
         <translation>Uložit soubor projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>Read user project properties</source>
         <translation>Načíst uživatelská nastavení projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>Save user project properties</source>
         <translation>Uložit uživatelská nastavení projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>Read project session</source>
         <translation>Načíst relaci projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1244"/>
+        <location filename="../Project/Project.py" line="1245"/>
         <source>Please save the project first.</source>
         <translation>Prosím, nejdříve uložte projekt.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>Save project session</source>
         <translation>Uložit relaci projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>Delete project session</source>
         <translation>Smazat relaci projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>Read tasks</source>
         <translation>Načíst úlohy</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>Save tasks</source>
         <translation>Uložit úlohy</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>Read debugger properties</source>
         <translation>Načíst nastavení debuggeru</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>Save debugger properties</source>
         <translation>Uložit nastavení debuggeru</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>Delete debugger properties</source>
         <translation>Smazat nastavení debuggeru</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>Add Language</source>
         <translation>Přidat jazyk</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>Delete translation</source>
         <translation>Smazat překlad</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1677"/>
+        <location filename="../Project/Project.py" line="1678"/>
         <source>Add file</source>
         <translation>Přidat soubor</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1809"/>
+        <location filename="../Project/Project.py" line="1810"/>
         <source>The target directory must not be empty.</source>
         <translation>Cílový adresář nesmí být prázdný.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>Add directory</source>
         <translation>Přidat adresář</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>The source directory must not be empty.</source>
         <translation>Cílový adresář nesmí být prázdný.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1957"/>
+        <location filename="../Project/Project.py" line="1958"/>
         <source>Rename file</source>
         <translation>Přejmenovat soubor</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>Rename File</source>
         <translation>Přejmenovat soubor</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>Delete file</source>
         <translation>Smazat soubor</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>Delete directory</source>
         <translation>Smazat adresář</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>Create project directory</source>
         <translation>Vytvořit adresář projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>New Project</source>
         <translation>Nový projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2476"/>
+        <location filename="../Project/Project.py" line="2477"/>
         <source>Add existing files to the project?</source>
         <translation>Přidat existující soubory do projektu?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2603"/>
+        <location filename="../Project/Project.py" line="2604"/>
         <source>Would you like to edit the VCS command options?</source>
         <translation>Chcete editovat parametry VCS příkazu?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>New project</source>
         <translation>Nový projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2546"/>
+        <location filename="../Project/Project.py" line="2547"/>
         <source>Shall the project file be added to the repository?</source>
         <translation>Má být projekt přidán do repozitáře?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2575"/>
+        <location filename="../Project/Project.py" line="2576"/>
         <source>Select version control system for the project</source>
         <translation>Výběr verzovacího systému projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>Open project</source>
         <translation>Otevřít projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3120"/>
+        <location filename="../Project/Project.py" line="3121"/>
         <source>Project Files (*.e4p)</source>
         <translation>Soubory projektu (*.e4p)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save project as</source>
         <translation>Uložit projekt jako</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>Save File</source>
         <translation>Uložit soubor</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>Close Project</source>
         <translation>Zavřít projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>The current project has unsaved changes.</source>
         <translation>Aktuální projekt obsahuje neuložené změny.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>Syntax errors detected</source>
         <translation>Zjištěny syntaktické chyby</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>The project contains %n file(s) with syntax errors.</source>
         <translation>
             <numerusform>Projekt obsahuje %n soubor se syntaktickými chybami.</numerusform>
@@ -54145,582 +54198,582 @@
         </translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>&amp;New...</source>
         <translation>&amp;Nový...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3850"/>
-        <source>Generate a new project</source>
-        <translation>Vygenerovat nový projekt</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3851"/>
+        <source>Generate a new project</source>
+        <translation>Vygenerovat nový projekt</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3852"/>
         <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nový...&lt;/b&gt;&lt;p&gt;Otevře se dialogové okno pro zadání informací o novém projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>&amp;Open...</source>
         <translation>&amp;Otevřít...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3864"/>
-        <source>Open an existing project</source>
-        <translation>Otevřít existující projekt</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3865"/>
+        <source>Open an existing project</source>
+        <translation>Otevřít existující projekt</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3866"/>
         <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Otevřít....&lt;/b&gt;&lt;p&gt;Otevře existující projekt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>Close project</source>
         <translation>Zavřít projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>&amp;Close</source>
         <translation>&amp;Zavřít</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3876"/>
-        <source>Close the current project</source>
-        <translation>Uzavře aktuální projekt</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3877"/>
+        <source>Close the current project</source>
+        <translation>Uzavře aktuální projekt</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3878"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zavřít&lt;/b&gt;&lt;p&gt;Aktuální projekt se uzavře.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3884"/>
+        <location filename="../Project/Project.py" line="3885"/>
         <source>Save project</source>
         <translation>Uložit projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>&amp;Save</source>
         <translation>&amp;Uložit</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3888"/>
-        <source>Save the current project</source>
-        <translation>Uložit aktuální projekt</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3889"/>
+        <source>Save the current project</source>
+        <translation>Uložit aktuální projekt</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3890"/>
         <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Uložit&lt;/b&gt;&lt;p&gt;Aktuální projekt se uloží.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save &amp;as...</source>
         <translation>Uložit j&amp;ako...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3900"/>
+        <location filename="../Project/Project.py" line="3901"/>
         <source>Save the current project to a new file</source>
         <translation>Uloží aktuální projekt do nového souboru</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3902"/>
+        <location filename="../Project/Project.py" line="3903"/>
         <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Uložit jako&lt;/b&gt;&lt;p&gt;Uloží aktuální projekt do nového souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add files to project</source>
         <translation>Přidat soubory do projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add &amp;files...</source>
         <translation>&amp;Přidat soubory...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3916"/>
+        <location filename="../Project/Project.py" line="3917"/>
         <source>Add files to the current project</source>
         <translation>Přidat soubory do aktuálního projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3918"/>
+        <location filename="../Project/Project.py" line="3919"/>
         <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Přidat soubory...&lt;/b&gt;&lt;p&gt;Otevře dialog pri přidání souborů do aktuálního projektu. Místo pro přidání je definováno extenzí souborů.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory to project</source>
         <translation>Přidat adresář do projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory...</source>
         <translation>Přidat adresář...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3932"/>
+        <location filename="../Project/Project.py" line="3933"/>
         <source>Add a directory to the current project</source>
         <translation>Přidat adresář do aktuálního projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3934"/>
+        <location filename="../Project/Project.py" line="3935"/>
         <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Přidat adresář...&lt;/b&gt;&lt;p&gt;Otevře dialog pro přičtení adresáře do aktuálního projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add translation to project</source>
         <translation>Přidat překlad do projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add &amp;translation...</source>
         <translation>Přida&amp;t překlad...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3947"/>
+        <location filename="../Project/Project.py" line="3948"/>
         <source>Add a translation to the current project</source>
         <translation>Přidat překlad do aktuálního projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3949"/>
+        <location filename="../Project/Project.py" line="3950"/>
         <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Přidat překlad&lt;/b&gt;&lt;p&gt;Otevře dialog pro přidání překladu do aktuálního projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Search new files</source>
         <translation>Hledat nové soubory</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Searc&amp;h new files...</source>
         <translation>&amp;Hledat nové soubory...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3961"/>
+        <location filename="../Project/Project.py" line="3962"/>
         <source>Search new files in the project directory.</source>
         <translation>Hledat nové soubory v adresáři projektu.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>Project properties</source>
         <translation>Nastavení projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>&amp;Properties...</source>
         <translation>&amp;Natavení...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3992"/>
-        <source>Show the project properties</source>
-        <translation>Zobrazit nastavení projektu</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3993"/>
+        <source>Show the project properties</source>
+        <translation>Zobrazit nastavení projektu</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3994"/>
         <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nastavení...&lt;/b&gt;&lt;p&gt;Zobrazí dialog s editací nastavení projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>User project properties</source>
         <translation>Uživatelská nastavení projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>&amp;User Properties...</source>
         <translation>Uživat&amp;elská nastavení...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4005"/>
+        <location filename="../Project/Project.py" line="4006"/>
         <source>Show the user specific project properties</source>
         <translation>Zobrazit uživatelem definovaná nastavení projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4007"/>
+        <location filename="../Project/Project.py" line="4008"/>
         <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Uživatelská nastavení...&lt;/b&gt;&lt;p&gt;Zobrazí dialog s editací uživatelských nastavení projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations</source>
         <translation>Asociace typů souborů</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations...</source>
         <translation>Asociace typů souborů...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4019"/>
+        <location filename="../Project/Project.py" line="4020"/>
         <source>Show the project filetype associations</source>
         <translation>Zobrazit asociace typů souborů</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger Properties</source>
         <translation>Nastavení debugeru</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger &amp;Properties...</source>
         <translation>Nastavení &amp;debuggeru...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4055"/>
-        <source>Show the debugger properties</source>
-        <translation>Zobrazit nastavení debugeru</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4056"/>
+        <source>Show the debugger properties</source>
+        <translation>Zobrazit nastavení debugeru</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4057"/>
         <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nastavení debugeru...&lt;/b&gt;&lt;p&gt;Zobrazí dialog s editací nastavení debugeru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>Load</source>
         <translation>Načíst</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>&amp;Load</source>
         <translation>&amp;Načíst</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4068"/>
-        <source>Load the debugger properties</source>
-        <translation>Načíst nastavení debugeru</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4069"/>
+        <source>Load the debugger properties</source>
+        <translation>Načíst nastavení debugeru</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4070"/>
         <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Načíst nastavení debugeru&lt;/b&gt;&lt;p&gt;Načtou se nastavení debugeru do projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>Save</source>
         <translation>Uložit</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4080"/>
-        <source>Save the debugger properties</source>
-        <translation>Uložit nastavení debugeru</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4081"/>
+        <source>Save the debugger properties</source>
+        <translation>Uložit nastavení debugeru</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4082"/>
         <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Uložit nastavení debugeru&lt;/b&gt;&lt;p&gt;Uloží nastavení debugeru definovaná v projektu..&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>Delete</source>
         <translation>Smazat</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>&amp;Delete</source>
         <translation>Sma&amp;zat</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4092"/>
-        <source>Delete the debugger properties</source>
-        <translation>Smazat nastavení debugeru</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4093"/>
+        <source>Delete the debugger properties</source>
+        <translation>Smazat nastavení debugeru</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4094"/>
         <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Smazat nastavení debugeru&lt;/b&gt;&lt;p&gt;Smaže se soubor obsahující nastavení debugeru v daném projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>Reset</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>&amp;Reset</source>
         <translation>&amp;Reset</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4105"/>
-        <source>Reset the debugger properties</source>
-        <translation>Reset nastavení debugeru</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4106"/>
+        <source>Reset the debugger properties</source>
+        <translation>Reset nastavení debugeru</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4107"/>
         <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reset nastavení debugeru&lt;/b&gt;&lt;p&gt;Zresetuje nastavení debugeru v projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4115"/>
+        <location filename="../Project/Project.py" line="4116"/>
         <source>Load session</source>
         <translation>Načíst relaci</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4119"/>
-        <source>Load the projects session file.</source>
-        <translation>Načíst soubor s relací projektu.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4120"/>
+        <source>Load the projects session file.</source>
+        <translation>Načíst soubor s relací projektu.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4121"/>
         <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation>&lt;b&gt;Načíst relaci&lt;/b&gt;&lt;p&gt;Načte soubor s relací projektu. Relace obsahuje následující údaje:&lt;br&gt;- všechny otevřené zdrojové soubory&lt;br&gt;- všechny breakpointy&lt;br&gt;- argumenty příkazové řádky &lt;br&gt;- pracovní adresář&lt;br&gt;- příznak výjimky&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4133"/>
+        <location filename="../Project/Project.py" line="4134"/>
         <source>Save session</source>
         <translation>Uložit relaci</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4137"/>
-        <source>Save the projects session file.</source>
-        <translation>Uložit soubor s relací projektu.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4138"/>
+        <source>Save the projects session file.</source>
+        <translation>Uložit soubor s relací projektu.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4139"/>
         <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation>&lt;b&gt;Uložit relaci&lt;/b&gt;&lt;p&gt;Uloží soubor s relací projektu. Relace obsahuje následující údaje:&lt;br&gt;- všechny otevřené zdrojové soubory&lt;br&gt;- všechny breakpointy&lt;br&gt;- argumenty příkazové řádky &lt;br&gt;- pracovní adresář&lt;br&gt;- příznak výjimky&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4151"/>
+        <location filename="../Project/Project.py" line="4152"/>
         <source>Delete session</source>
         <translation>Smazat relaci</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4155"/>
-        <source>Delete the projects session file.</source>
-        <translation>Smaže soubor s relací projektu.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4156"/>
+        <source>Delete the projects session file.</source>
+        <translation>Smaže soubor s relací projektu.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4157"/>
         <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
         <translation>&lt;b&gt;Smazat relaci&lt;/b&gt;&lt;p&gt;Smaže soubor s relací projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>Code Metrics</source>
         <translation>Metriky kódu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>&amp;Code Metrics...</source>
         <translation>Metriky &amp;kódu...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4169"/>
+        <location filename="../Project/Project.py" line="4170"/>
         <source>Show some code metrics for the project.</source>
         <translation>Zobrazit metriky kódu projektu.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4171"/>
+        <location filename="../Project/Project.py" line="4172"/>
         <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Metriky kódu...&lt;/b&gt;&lt;p&gt;Zobrazí se metriky kódu všech python souborů v projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Python Code Coverage</source>
         <translation>Pokrytí python kódu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Code Co&amp;verage...</source>
         <translation>Pokr&amp;ytí kódu...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4183"/>
+        <location filename="../Project/Project.py" line="4184"/>
         <source>Show code coverage information for the project.</source>
         <translation>Zobrazit informace pokrytí kódu projektu.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4185"/>
+        <location filename="../Project/Project.py" line="4186"/>
         <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pokrytí kódu...&lt;/b&gt;&lt;p&gt;Zobrazí informace o pokrytí kódu ve všech python souborech projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Profile Data</source>
         <translation>Profilovat data</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4193"/>
+        <location filename="../Project/Project.py" line="4194"/>
         <source>&amp;Profile Data...</source>
         <translation>&amp;Profilovat data...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4197"/>
+        <location filename="../Project/Project.py" line="4198"/>
         <source>Show profiling data for the project.</source>
         <translation>Zobrazit profilování dat projektu.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4199"/>
+        <location filename="../Project/Project.py" line="4200"/>
         <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profilovat data&lt;/b&gt;&lt;p&gt;Zobrazí se profilování dat projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Application Diagram</source>
         <translation>Diagram aplikace</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4208"/>
+        <location filename="../Project/Project.py" line="4209"/>
         <source>&amp;Application Diagram...</source>
         <translation>Diagram &amp;aplikace...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4212"/>
+        <location filename="../Project/Project.py" line="4213"/>
         <source>Show a diagram of the project.</source>
         <translation>Zobrazit diagram projektu.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4214"/>
+        <location filename="../Project/Project.py" line="4215"/>
         <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Diagram aplikace...&lt;/b&gt;&lt;p&gt;Zobrazí diagram projektu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4339"/>
-        <source>&amp;Project</source>
-        <translation>&amp;Projekt</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4340"/>
+        <source>&amp;Project</source>
+        <translation>&amp;Projekt</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4341"/>
         <source>Open &amp;Recent Projects</source>
         <translation>Otevřít poslední p&amp;rojekty</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4345"/>
+        <location filename="../Project/Project.py" line="4346"/>
         <source>&amp;Version Control</source>
         <translation>Kontrola &amp;verzí</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4349"/>
+        <location filename="../Project/Project.py" line="4350"/>
         <source>Chec&amp;k</source>
         <translation>Zkontro&amp;lovat</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4351"/>
-        <source>Sho&amp;w</source>
-        <translation>Zo&amp;brazit</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4352"/>
-        <source>&amp;Diagrams</source>
-        <translation>&amp;Diagramy</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4341"/>
-        <source>Session</source>
-        <translation>Relace</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4354"/>
-        <source>Source &amp;Documentation</source>
-        <translation>Zd&amp;rojová dokumentace</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4342"/>
-        <source>Debugger</source>
-        <translation></translation>
+        <source>Sho&amp;w</source>
+        <translation>Zo&amp;brazit</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="4353"/>
+        <source>&amp;Diagrams</source>
+        <translation>&amp;Diagramy</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4342"/>
+        <source>Session</source>
+        <translation>Relace</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4355"/>
+        <source>Source &amp;Documentation</source>
+        <translation>Zd&amp;rojová dokumentace</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4343"/>
+        <source>Debugger</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4354"/>
         <source>Pac&amp;kagers</source>
         <translation>Balíč&amp;ky</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4479"/>
+        <location filename="../Project/Project.py" line="4480"/>
         <source>Project</source>
         <translation>Projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4545"/>
+        <location filename="../Project/Project.py" line="4546"/>
         <source>&amp;Clear</source>
         <translation>&amp;Vyčistit</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>Search New Files</source>
         <translation>Hledat nové soubory</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>There were no new files found to be added.</source>
         <translation>Nebyly nalezeny žádné soubory, které je možné přidat.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>Version Control System</source>
         <translation>Version Control System</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4996"/>
+        <location filename="../Project/Project.py" line="4997"/>
         <source>Coverage Data</source>
         <translation>Datové pokrytí</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5046"/>
+        <location filename="../Project/Project.py" line="5047"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>V aktuálním projektu nebyl určen hlavní skript. Zrušeno</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Code Coverage</source>
         <translation>Pokrytí kódu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Please select a coverage file</source>
         <translation>Prosím, vyberte soubor pokrytí</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Please select a profile file</source>
         <translation>Prosím, vyberte soubor s profilem</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Include module names?</source>
         <translation>Včetně jmen modulů?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>Create Package List</source>
         <translation>Vytvořit seznam balíčků</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4237"/>
+        <location filename="../Project/Project.py" line="4238"/>
         <source>Create &amp;Package List</source>
         <translation type="unfinished">Vytvořit Plugin &amp;archiv</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>Create Plugin Archive</source>
         <translation>Vytvořit Plugin archiv</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5267"/>
+        <location filename="../Project/Project.py" line="5268"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;PKGLIST&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Přepsat jej?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5337"/>
+        <location filename="../Project/Project.py" line="5338"/>
         <source>The project does not have a main script defined. Aborting...</source>
         <translation>Projekt nemá definován hlavní skript. Zrušeno...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1708"/>
+        <location filename="../Project/Project.py" line="1709"/>
         <source>&lt;p&gt;The source directory doesn&apos;t contain any files belonging to the selected category.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Zdrojový adresář neobsahuje žádné soubory související s danou kategorií.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>Select Version Control System</source>
         <translation>Vybrat Version Control System</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2582"/>
+        <location filename="../Project/Project.py" line="2583"/>
         <source>None</source>
         <translation>None</translation>
     </message>
@@ -54730,42 +54783,42 @@
         <translation>Zaregistrovat typ projektu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4253"/>
+        <location filename="../Project/Project.py" line="4254"/>
         <source>Create Plugin &amp;Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>You have to specify a translation pattern first.</source>
         <translation>Nejdříve musíte specifikovat vzor překladu.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Translation Pattern</source>
         <translation>Vzor překladu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Enter the path pattern for translation files (use &apos;%language%&apos; in place of the language code):</source>
         <translation>Zadejte vzor cesty pro soubory s překlady (použijte  &apos;%language%&apos; na místě s kódem jazyka):</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations</source>
         <translation>Spojení lexeru</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations...</source>
         <translation>Spojení lexeru...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4037"/>
+        <location filename="../Project/Project.py" line="4038"/>
         <source>Show the project lexer associations (overriding defaults)</source>
         <translation>Zobrazit spojení lexeru projektu (přepíše výchozí)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4039"/>
+        <location filename="../Project/Project.py" line="4040"/>
         <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Spojení lexeru...&lt;/b&gt;&lt;p&gt;Zobrazuje dialog s editací spojení lexeru projektu. Tato spojení přepisují globální lexer spojení. Lexer je použit pro zvýraznění textu v editoru.&lt;/p&gt;</translation>
     </message>
@@ -54780,142 +54833,142 @@
         <translation>Python3 soubory (*.py *.py3);;Python3 GUI soubory (*.pyw *.pyw3);;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor projektu &lt;b&gt;{0}&lt;/b&gt; nelze načíst.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Do souboru projektu &lt;b&gt;{0}&lt;/b&gt; nelze zapisovat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Uživatelská nastavení projektu &lt;b&gt;{0}&lt;/b&gt; nelze načíst.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Do souboru s uživatelskými nastaveními  &lt;b&gt;{0}&lt;/b&gt; nelze zapisovat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor s relací projektu &lt;b&gt;{0}&lt;/b&gt; nelze načíst.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Do souboru s relací projektu &lt;b&gt;{0}&lt;/b&gt; nelze zapisovat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor s relací projektu &lt;b&gt;{0}&lt;/b&gt; nelze smazat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor s úlohami &lt;b&gt;{0}&lt;/b&gt; nelze načíst.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Do souboru s úlohami &lt;b&gt;{0}&lt;/b&gt; nelze zapisovat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor s nastaveními debuggeru &lt;b&gt;{0}&lt;/b&gt; nelze načíst.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Do souboru s nastaveními debuggeru &lt;b&gt;{0}&lt;/b&gt; nelze zapisovat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor s nastaveními debuggeru &lt;b&gt;{0}&lt;/b&gt; nelze smazat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1741"/>
+        <location filename="../Project/Project.py" line="1742"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nemůže být přejmenován.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Adresář projektu &lt;b&gt;{0}&lt;/b&gt; nelze vytvořit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Vybrané VCS &lt;b&gt;{0}&lt;/b&gt; nebylo nalezeno.&lt;br/&gt;Kontrola verzí vypnuta.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;PKGLIST&lt;/b&gt; nelze vytvořit.&lt;/p&gt;&lt;p&gt;Důvod: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5477"/>
+        <location filename="../Project/Project.py" line="5478"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nelze uložit do archivu. Ingorováno.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5548"/>
+        <location filename="../Project/Project.py" line="5549"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Plugin soubor &lt;b&gt;{0}&lt;/b&gt; nelze přečíst.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1664"/>
+        <location filename="../Project/Project.py" line="1665"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Vybraný soubor &lt;b&gt;{0}&lt;/b&gt; nelze přidat do &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Důvod: {2}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1723"/>
+        <location filename="../Project/Project.py" line="1724"/>
         <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Cílový adresář &lt;b&gt;{0}&lt;/b&gt; nelze vytvořit.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>Create main script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>&lt;p&gt;The mainscript &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>Load Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>&amp;Load Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4226"/>
+        <location filename="../Project/Project.py" line="4227"/>
         <source>Load a diagram from file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4228"/>
+        <location filename="../Project/Project.py" line="4229"/>
         <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54940,12 +54993,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4854"/>
+        <location filename="../Project/Project.py" line="4855"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54970,193 +55023,193 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>Create project management directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Alt+Ctrl+P</source>
         <comment>Project|Search Project File</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3978"/>
+        <location filename="../Project/Project.py" line="3979"/>
         <source>Search for a file in the project list of files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3980"/>
+        <location filename="../Project/Project.py" line="3981"/>
         <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5373"/>
+        <location filename="../Project/Project.py" line="5374"/>
         <source>Create Plugin Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (Snapshot)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (&amp;Snapshot)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5351"/>
+        <location filename="../Project/Project.py" line="5352"/>
         <source>Select package lists:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Creating plugin archives...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Abort</source>
         <translation type="unfinished">Přerušit</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>%v/%m Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5385"/>
+        <location filename="../Project/Project.py" line="5386"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5362"/>
+        <location filename="../Project/Project.py" line="5363"/>
         <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5413"/>
+        <location filename="../Project/Project.py" line="5414"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the&apos;; initial_list&apos; line of the header.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3963"/>
+        <location filename="../Project/Project.py" line="3964"/>
         <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4021"/>
+        <location filename="../Project/Project.py" line="4022"/>
         <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>Create Makefile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>Execute Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4291"/>
+        <location filename="../Project/Project.py" line="4292"/>
         <source>&amp;Execute Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4295"/>
+        <location filename="../Project/Project.py" line="4296"/>
         <source>Perform a &apos;make&apos; run.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4297"/>
+        <location filename="../Project/Project.py" line="4298"/>
         <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a &apos;make&apos; run to rebuild the configured target.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5755"/>
+        <location filename="../Project/Project.py" line="5756"/>
         <source>Test for Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4305"/>
+        <location filename="../Project/Project.py" line="4306"/>
         <source>&amp;Test for Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4309"/>
+        <location filename="../Project/Project.py" line="4310"/>
         <source>Question &apos;make&apos;, if a rebuild is needed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4311"/>
+        <location filename="../Project/Project.py" line="4312"/>
         <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions &apos;make&apos;, if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4356"/>
+        <location filename="../Project/Project.py" line="4357"/>
         <source>Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5703"/>
+        <location filename="../Project/Project.py" line="5704"/>
         <source>The make process did not start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5748"/>
+        <location filename="../Project/Project.py" line="5749"/>
         <source>The make process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5758"/>
+        <location filename="../Project/Project.py" line="5759"/>
         <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5763"/>
+        <location filename="../Project/Project.py" line="5764"/>
         <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>The makefile contains errors.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55171,7 +55224,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4344"/>
+        <location filename="../Project/Project.py" line="4345"/>
         <source>Project-T&amp;ools</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55201,47 +55254,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4242"/>
+        <location filename="../Project/Project.py" line="4243"/>
         <source>Create an initial PKGLIST file for an eric plugin.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4244"/>
+        <location filename="../Project/Project.py" line="4245"/>
         <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4258"/>
+        <location filename="../Project/Project.py" line="4259"/>
         <source>Create eric plugin archive files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4260"/>
+        <location filename="../Project/Project.py" line="4261"/>
         <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4275"/>
+        <location filename="../Project/Project.py" line="4276"/>
         <source>Create eric plugin archive files (snapshot releases).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4277"/>
+        <location filename="../Project/Project.py" line="4278"/>
         <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5441"/>
+        <location filename="../Project/Project.py" line="5442"/>
         <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5496"/>
+        <location filename="../Project/Project.py" line="5497"/>
         <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5504"/>
+        <location filename="../Project/Project.py" line="5505"/>
         <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57027,24 +57080,24 @@
 &lt;p&gt;Pokud je projekt pod správou verzovacího systému, tak se informace o repozitáři zobrazí stisknutím tlačítka &quot;Zobrazit info o repozitáři&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <location filename="../Project/PropertiesDialog.ui" line="298"/>
         <source>&amp;Author:</source>
         <translation>&amp;Autor:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="294"/>
+        <location filename="../Project/PropertiesDialog.ui" line="308"/>
         <source>Enter authors name</source>
         <translation>Zadejte jméno autora</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="297"/>
+        <location filename="../Project/PropertiesDialog.ui" line="311"/>
         <source>&lt;b&gt;Author&lt;/b&gt;
 &lt;p&gt;Enter the name of the author.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Autor&lt;/b&gt;
 &lt;p&gt;Zadání jmána autora.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="326"/>
+        <location filename="../Project/PropertiesDialog.ui" line="340"/>
         <source>&amp;Description:</source>
         <translation>&amp;Popis:</translation>
     </message>
@@ -57066,12 +57119,12 @@
 &lt;p&gt;Zadání čísla verze.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="339"/>
+        <location filename="../Project/PropertiesDialog.ui" line="353"/>
         <source>Enter description</source>
         <translation>Zadejte popis</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="342"/>
+        <location filename="../Project/PropertiesDialog.ui" line="356"/>
         <source>&lt;b&gt;Description&lt;/b&gt;
 &lt;p&gt;Enter a short description for the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Popis&lt;/b&gt;
@@ -57091,17 +57144,17 @@
 &lt;p&gt;Zadání adresáře projektu. Stisknutím pravého tlačítka jej můžete vybrat i pomocí dialogu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="305"/>
+        <location filename="../Project/PropertiesDialog.ui" line="319"/>
         <source>&amp;Email:</source>
         <translation>&amp;Email:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="315"/>
+        <location filename="../Project/PropertiesDialog.ui" line="329"/>
         <source>Enter authors email</source>
         <translation>Zadejte email autora</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="318"/>
+        <location filename="../Project/PropertiesDialog.ui" line="332"/>
         <source>&lt;b&gt;Email&lt;/b&gt;
 &lt;p&gt;Enter the email address of the author&lt;/p&gt;</source>
         <translation>&lt;b&gt;Email&lt;/b&gt;
@@ -57173,22 +57226,22 @@
         <translation></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="383"/>
+        <location filename="../Project/PropertiesDialog.ui" line="397"/>
         <source>Press to show information about the repository</source>
         <translation>Stisknout pro zobrazení informace o repozitáři</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="386"/>
+        <location filename="../Project/PropertiesDialog.ui" line="400"/>
         <source>Show &amp;Repository Info</source>
         <translation>Zobrazit info o &amp;repozitáři</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="389"/>
+        <location filename="../Project/PropertiesDialog.ui" line="403"/>
         <source>Alt+R</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="119"/>
+        <location filename="../Project/PropertiesDialog.py" line="127"/>
         <source>The project is not version controlled.</source>
         <translation>Projekt není pod správou verzovacího systému.</translation>
     </message>
@@ -57234,12 +57287,12 @@
         <translation>Nastavení kontroly pravopisu...</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="113"/>
+        <location filename="../Project/PropertiesDialog.py" line="121"/>
         <source>The project is version controlled by &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation>Projekt je pod správou verzovacího systému &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="58"/>
+        <location filename="../Project/PropertiesDialog.py" line="66"/>
         <source>Source Files ({0});;All Files (*)</source>
         <translation>Zdrojové soubory ({0});;Všechny soubory (*)</translation>
     </message>
@@ -57274,12 +57327,12 @@
         <translation>Windows/DOS</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="358"/>
+        <location filename="../Project/PropertiesDialog.ui" line="372"/>
         <source>Select to create a version controlled project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="361"/>
+        <location filename="../Project/PropertiesDialog.ui" line="375"/>
         <source>Version Controlled Project</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57298,6 +57351,21 @@
         <source>Press to open a dialog to enter the &apos;make&apos; parameters</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="291"/>
+        <source>Select the docstring style for the project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.py" line="50"/>
+        <source>None</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ProtobufPage</name>
Binary file eric6/i18n/eric6_de.qm has changed
--- a/eric6/i18n/eric6_de.ts	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/i18n/eric6_de.ts	Fri Jan 22 16:48:43 2021 +0100
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de">
+<!DOCTYPE TS><TS version="2.0" language="de" sourcelanguage="">
 <context>
     <name>AboutDialog</name>
     <message>
@@ -2053,8 +2052,8 @@
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksMenu.py" line="170"/>
-        <source>Open in New Tab	Ctrl+LMB</source>
-        <translation>In neuem Register öffnen	Strg+LMK</translation>
+        <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source>
+        <translation>In neuem Register öffnen<byte value="x9"/>Strg+LMK</translation>
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksMenu.py" line="174"/>
@@ -2122,8 +2121,8 @@
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksToolBar.py" line="90"/>
-        <source>Open in New Tab	Ctrl+LMB</source>
-        <translation>In neuem Register öffnen	Strg+LMK</translation>
+        <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source>
+        <translation>In neuem Register öffnen<byte value="x9"/>Strg+LMK</translation>
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksToolBar.py" line="94"/>
@@ -8532,7 +8531,7 @@
         <translation>Docstring hat falsche Einrückung</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="86"/>
         <source>docstring summary does not end with a period</source>
         <translation>Docstring Zusammenfassung endet nicht mit einem Punkt</translation>
     </message>
@@ -8567,7 +8566,7 @@
         <translation>Klassendocstring hat keine nachfolgende Leerzeile</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
         <source>docstring summary is not followed by a blank line</source>
         <translation>Docstring Zusammenfassung hat keine folgende Leerzeile</translation>
     </message>
@@ -8577,92 +8576,92 @@
         <translation>letzter Abschnitt des Docstring hat keine folgende Leerzeile</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
         <source>private function/method is missing a docstring</source>
         <translation>Private Funktion/Methode hat keinen Docstring</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="76"/>
         <source>private class is missing a docstring</source>
         <translation>Private Klasse hat keinen Docstring</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="77"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation>einleitende Anführungszeichen nicht auf separater Zeile</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="80"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation>einleitende Anführungszeichen nicht auf separater Zeile</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
         <source>trailing quotes of docstring not on separate line</source>
         <translation>schließende Anführungszeichen nicht auf separater Zeile</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="87"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="90"/>
         <source>docstring does not contain a @return line but function/method returns something</source>
         <translation>Docstring enthält keine @return Zeile obwohl die Funktion/Methode etwas zurückgibt</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="91"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="94"/>
         <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
         <translation>Docstring enthält eine @return Zeile obwohl die Funktion/Methode nichts zurückgibt</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="103"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation>Docstring enthält nicht genügend @param/@keyparam Zeilen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="106"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
-        <translation>Docstring enthält zu viele @param/@keyparam Zeilen</translation>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
+        <translation>Docstring enthält nicht genügend @param/@keyparam Zeilen</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="109"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
-        <translation>&apos;keyword only&apos; Argumente müssen mit @keyparam Zeilen dokumentiert werden</translation>
+        <source>docstring contains too many @param/@keyparam lines</source>
+        <translation>Docstring enthält zu viele @param/@keyparam Zeilen</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="112"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
-        <translation>Reihenfolge der @param/@keyparam Zeilen stimmt nicht mit der Funktions-/Methodensignatur überein</translation>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <translation>&apos;keyword only&apos; Argumente müssen mit @keyparam Zeilen dokumentiert werden</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="115"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation>Reihenfolge der @param/@keyparam Zeilen stimmt nicht mit der Funktions-/Methodensignatur überein</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="118"/>
         <source>class docstring is preceded by a blank line</source>
         <translation>Klassendocstring hat eine führende Leerzeile</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="117"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="120"/>
         <source>class docstring is followed by a blank line</source>
         <translation>Klassendocstring hat eine nachfolgende Leerzeile</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="119"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation>Funktions-/Methodendocstring hat eine führende Leerzeile</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="122"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation>Funktions-/Methodendocstring hat eine führende Leerzeile</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
         <source>function/method docstring is followed by a blank line</source>
         <translation>Funktions-/Methodendocstring hat eine nachfolgende Leerzeile</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation>letzter Abschnitt des Docstring hat eine folgende Leerzeile</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="131"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation>letzter Abschnitt des Docstring hat eine folgende Leerzeile</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="134"/>
         <source>docstring does not contain a @exception line but function/method raises an exception</source>
         <translation>Docstring enthält keine @exception Zeile obwohl die Funktion/Methode eine Ausnahme erzeugt</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="135"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="138"/>
         <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
         <translation>Docstring enthält eine @exception Zeile obwohl die Funktion/Methode keine Ausnahme erzeugt</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="158"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="161"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
@@ -8672,42 +8671,42 @@
         <translation>Docstring enthält keine Zusammenfassung</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="88"/>
         <source>docstring summary does not start with &apos;{0}&apos;</source>
         <translation>Docstring Zusammenfassung beginnt nicht mit &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="139"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation>Ausnahme &apos;{0}&apos; wird geworfen, ist aber nicht dokumentiert</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="142"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
-        <translation>dokumentierte Ausnahme &apos;{0}&apos; wird nicht geworfen</translation>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
+        <translation>Ausnahme &apos;{0}&apos; wird geworfen, ist aber nicht dokumentiert</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="145"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
-        <translation>Docstring enthält keine @signal Zeile obwohl die Klasse Signale definiert</translation>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <translation>dokumentierte Ausnahme &apos;{0}&apos; wird nicht geworfen</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="148"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
-        <translation>Docstring enthält eine @signal Zeile obwohl die Klasse keine Signale definiert</translation>
+        <source>docstring does not contain a @signal line but class defines signals</source>
+        <translation>Docstring enthält keine @signal Zeile obwohl die Klasse Signale definiert</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="151"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
-        <translation>definiertes Signal &apos;{0}&apos; ist nicht dokumentiert</translation>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <translation>Docstring enthält eine @signal Zeile obwohl die Klasse keine Signale definiert</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="154"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation>definiertes Signal &apos;{0}&apos; ist nicht dokumentiert</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="157"/>
         <source>documented signal &apos;{0}&apos; is not defined</source>
         <translation>dokumentiertes Signal &apos;{0}&apos; ist nicht definiert</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="75"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="78"/>
         <source>class docstring is still a default string</source>
         <translation>Klassendocstring is noch immer ein Standardstring</translation>
     </message>
@@ -8722,15 +8721,43 @@
         <translation>Moduldocstring is noch immer ein Standardstring</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="95"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="98"/>
         <source>docstring does not contain a @yield line but function/method yields something</source>
         <translation>Docstring enthält keine @yield Zeile obwohl die Funktion/Methode &apos;yield&apos; enthält</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="99"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="102"/>
         <source>docstring contains a @yield line but function/method doesn&apos;t yield anything</source>
         <translation>Docstring enthält eine @yield Zeile obwohl die Funktion/Methode kein &apos;yield&apos; enthält</translation>
     </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <source>function docstring still contains some placeholders</source>
+        <translation>Funktionsdocstring enthält noch immer Platzhalter</translation>
+    </message>
+</context>
+<context>
+    <name>DocstringGenerator</name>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="42"/>
+        <source>Eric</source>
+        <translation>Eric</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="44"/>
+        <source>NumPy</source>
+        <translation>NumPy</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="46"/>
+        <source>Google</source>
+        <translation>Google</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="48"/>
+        <source>Sphinx</source>
+        <translation>Sphinx</translation>
+    </message>
 </context>
 <context>
     <name>DotDesktopListSelectionDialog</name>
@@ -10942,930 +10969,940 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3110"/>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
         <source>Open File</source>
         <translation>Datei öffnen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
         <source>Save File</source>
         <translation>Datei sichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="783"/>
+        <location filename="../QScintilla/Editor.py" line="785"/>
         <source>Undo</source>
         <translation>Rückgängig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="786"/>
+        <location filename="../QScintilla/Editor.py" line="788"/>
         <source>Redo</source>
         <translation>Wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="793"/>
+        <location filename="../QScintilla/Editor.py" line="795"/>
         <source>Cut</source>
         <translation>Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="796"/>
+        <location filename="../QScintilla/Editor.py" line="798"/>
         <source>Copy</source>
         <translation>Kopieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="799"/>
+        <location filename="../QScintilla/Editor.py" line="801"/>
         <source>Paste</source>
         <translation>Einfügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="807"/>
+        <location filename="../QScintilla/Editor.py" line="809"/>
         <source>Indent</source>
         <translation>Einrücken</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="810"/>
+        <location filename="../QScintilla/Editor.py" line="812"/>
         <source>Unindent</source>
         <translation>Einrücken rückgängig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="813"/>
+        <location filename="../QScintilla/Editor.py" line="815"/>
         <source>Comment</source>
         <translation>Kommentar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="816"/>
+        <location filename="../QScintilla/Editor.py" line="818"/>
         <source>Uncomment</source>
         <translation>Kommentar entfernen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="902"/>
-        <source>Close</source>
-        <translation>Schließen</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="908"/>
+        <source>Close</source>
+        <translation>Schließen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="914"/>
         <source>Save</source>
         <translation>Speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="911"/>
+        <location filename="../QScintilla/Editor.py" line="917"/>
         <source>Save As...</source>
         <translation>Speichern unter...</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Editor.py" line="830"/>
+        <source>Select all</source>
+        <translation>Alles auswählen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="831"/>
+        <source>Deselect all</source>
+        <translation>Auswahl aufheben</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Editor.py" line="828"/>
-        <source>Select all</source>
-        <translation>Alles auswählen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="829"/>
-        <source>Deselect all</source>
-        <translation>Auswahl aufheben</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="826"/>
         <source>Select to brace</source>
         <translation>Zur Klammer auswählen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="933"/>
         <source>Print</source>
         <translation>Drucken</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2675"/>
+        <location filename="../QScintilla/Editor.py" line="2681"/>
         <source>Printing...</source>
         <translation>Drucke...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2692"/>
+        <location filename="../QScintilla/Editor.py" line="2698"/>
         <source>Printing completed</source>
         <translation>Drucken beendet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2694"/>
+        <location filename="../QScintilla/Editor.py" line="2700"/>
         <source>Error while printing</source>
         <translation>Fehler beim Drucken</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2697"/>
+        <location filename="../QScintilla/Editor.py" line="2703"/>
         <source>Printing aborted</source>
         <translation>Drucken abgebrochen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7033"/>
+        <location filename="../QScintilla/Editor.py" line="7046"/>
         <source>File changed</source>
         <translation>Datei geändert</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="974"/>
+        <location filename="../QScintilla/Editor.py" line="980"/>
         <source>Check</source>
         <translation>Prüfen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <source>File Modified</source>
         <translation>Datei geändert</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="996"/>
+        <location filename="../QScintilla/Editor.py" line="1002"/>
         <source>Code metrics...</source>
         <translation>Quelltextmetriken...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="997"/>
+        <location filename="../QScintilla/Editor.py" line="1003"/>
         <source>Code coverage...</source>
         <translation>Quelltext Abdeckung...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1005"/>
+        <location filename="../QScintilla/Editor.py" line="1011"/>
         <source>Profile data...</source>
         <translation>Profildaten...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="994"/>
+        <location filename="../QScintilla/Editor.py" line="1000"/>
         <source>Show</source>
         <translation>Zeige</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Stream Comment</source>
         <translation>Stream Kommentar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Box Comment</source>
         <translation>Box Kommentar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>Modification of Read Only file</source>
         <translation>Änderungsversuch für eine schreibgeschützte Datei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>You are attempting to change a read only file. Please save to a different file first.</source>
         <translation>Sie versuchen, eine schreibgeschützte Datei zu ändern. Bitte speichern Sie sie zuerst in eine andere Datei.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1044"/>
+        <location filename="../QScintilla/Editor.py" line="1050"/>
         <source>Languages</source>
         <translation>Sprachen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="789"/>
+        <location filename="../QScintilla/Editor.py" line="791"/>
         <source>Revert to last saved state</source>
         <translation>Zurück zum letzten gesichert Zustand</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Macro Name</source>
         <translation>Makro Name</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Select a macro name:</source>
         <translation>Wähle einen Makro Namen:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6792"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Macro files (*.macro)</source>
         <translation>Makrodateien (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6750"/>
+        <location filename="../QScintilla/Editor.py" line="6763"/>
         <source>Load macro file</source>
         <translation>Lade Makrodatei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6772"/>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
         <source>Error loading macro</source>
         <translation>Fehler beim Makro Laden</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6792"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Save macro file</source>
         <translation>Makrodatei schreiben</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
         <source>Save macro</source>
         <translation>Makro speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6824"/>
-        <source>Error saving macro</source>
-        <translation>Fehler beim Makro speichern</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6837"/>
+        <source>Error saving macro</source>
+        <translation>Fehler beim Makro speichern</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6850"/>
         <source>Start Macro Recording</source>
         <translation>Makroaufzeichnung starten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Macro Recording</source>
         <translation>Makroaufzeichnung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Enter name of the macro:</source>
         <translation>Gib einen Namen für das Makro ein:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1224"/>
-        <source>Toggle bookmark</source>
-        <translation>Lesezeichen setzen/löschen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1226"/>
-        <source>Next bookmark</source>
-        <translation>Nächstes Lesezeichen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1228"/>
-        <source>Previous bookmark</source>
-        <translation>Vorheriges Lesezeichen</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1230"/>
+        <source>Toggle bookmark</source>
+        <translation>Lesezeichen setzen/löschen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1232"/>
+        <source>Next bookmark</source>
+        <translation>Nächstes Lesezeichen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1234"/>
+        <source>Previous bookmark</source>
+        <translation>Vorheriges Lesezeichen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1236"/>
         <source>Clear all bookmarks</source>
         <translation>Alle Lesezeichen löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1239"/>
+        <location filename="../QScintilla/Editor.py" line="1245"/>
         <source>Toggle breakpoint</source>
         <translation>Haltepunkt setzen/löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1249"/>
+        <location filename="../QScintilla/Editor.py" line="1255"/>
         <source>Next breakpoint</source>
         <translation>Nächster Haltepunkt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1251"/>
+        <location filename="../QScintilla/Editor.py" line="1257"/>
         <source>Previous breakpoint</source>
         <translation>Vorheriger Haltepunkt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1256"/>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
         <source>Clear all breakpoints</source>
         <translation>Alle Haltepunkte löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1244"/>
+        <location filename="../QScintilla/Editor.py" line="1250"/>
         <source>Edit breakpoint...</source>
         <translation>Haltepunkt bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5613"/>
+        <location filename="../QScintilla/Editor.py" line="5626"/>
         <source>Enable breakpoint</source>
         <translation>Haltepunkt aktivieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5616"/>
+        <location filename="../QScintilla/Editor.py" line="5629"/>
         <source>Disable breakpoint</source>
         <translation>Haltepunkt deaktivieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <source>Code Coverage</source>
         <translation>Quelltext Abdeckung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <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="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Profile Data</source>
         <translation>Profildaten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Please select a profile file</source>
         <translation>Bitte wählen Sie eine Datei mit Profildaten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion</source>
         <translation>Automatische Vervollständigung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation>Die automatische Vervollständigung ist nicht verfügbar, da keine Quelle gesetzt ist.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="854"/>
+        <location filename="../QScintilla/Editor.py" line="860"/>
         <source>Use Monospaced Font</source>
         <translation>Benutze Monospace Font</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="847"/>
+        <location filename="../QScintilla/Editor.py" line="853"/>
         <source>Shorten empty lines</source>
         <translation>Leere Zeilen verkürzen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1304"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Goto syntax error</source>
         <translation>Zu Syntaxfehler gehen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1313"/>
+        <location filename="../QScintilla/Editor.py" line="1319"/>
         <source>Clear syntax error</source>
         <translation>Syntaxfehler löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="859"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Autosave enabled</source>
         <translation>Autom. Speicherung aktiv</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <source>Drop Error</source>
         <translation>Drop Fehler</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1314"/>
         <source>Show syntax error message</source>
         <translation>Zeige Syntaxfehlermeldung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <source>Syntax Error</source>
         <translation>Syntaxfehler</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <source>No syntax error message available.</source>
         <translation>Keine Syntaxfehlermeldung verfügbar.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1241"/>
+        <location filename="../QScintilla/Editor.py" line="1247"/>
         <source>Toggle temporary breakpoint</source>
         <translation>Temporären Haltepunkt setzen/löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="999"/>
+        <location filename="../QScintilla/Editor.py" line="1005"/>
         <source>Show code coverage annotations</source>
         <translation>Markiere Zeilen ohne Abdeckung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1002"/>
+        <location filename="../QScintilla/Editor.py" line="1008"/>
         <source>Hide code coverage annotations</source>
         <translation>Lösche Abdeckungsmarkierungen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1335"/>
+        <location filename="../QScintilla/Editor.py" line="1341"/>
         <source>Next uncovered line</source>
         <translation>Nächste nichtabgedeckte Zeile</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1339"/>
+        <location filename="../QScintilla/Editor.py" line="1345"/>
         <source>Previous uncovered line</source>
         <translation>Vorige nichtabgedeckte Zeile</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Zeilen ohne Abdeckung Markieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6047"/>
+        <location filename="../QScintilla/Editor.py" line="6060"/>
         <source>All lines have been covered.</source>
         <translation>Alle Zeilen sind abgedeckt.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>There is no coverage file available.</source>
         <translation>Es gibt keine Datei mit Abdeckungsinformationen.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6763"/>
+        <location filename="../QScintilla/Editor.py" line="6776"/>
         <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="6772"/>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
         <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="6824"/>
+        <location filename="../QScintilla/Editor.py" line="6837"/>
         <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="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; ist keine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="379"/>
+        <location filename="../QScintilla/Editor.py" line="381"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Größe der Datei &lt;b&gt;{0}&lt;/b&gt; ist &lt;b&gt;{1} KB&lt;7B&gt;. Soll sie wirklich geladen werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
-        <source>Diagrams</source>
-        <translation>Diagramme</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1020"/>
-        <source>Class Diagram...</source>
-        <translation>Klassendiagramm...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1022"/>
-        <source>Package Diagram...</source>
-        <translation>Package Diagramm...</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1024"/>
-        <source>Imports Diagram...</source>
-        <translation>Imports-Diagramm...</translation>
+        <source>Diagrams</source>
+        <translation>Diagramme</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1026"/>
+        <source>Class Diagram...</source>
+        <translation>Klassendiagramm...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1028"/>
+        <source>Package Diagram...</source>
+        <translation>Package Diagramm...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1030"/>
+        <source>Imports Diagram...</source>
+        <translation>Imports-Diagramm...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1032"/>
         <source>Application Diagram...</source>
         <translation>Applikations-Diagramm...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1177"/>
+        <location filename="../QScintilla/Editor.py" line="1183"/>
         <source>No Language</source>
         <translation>Keine Sprache</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7213"/>
+        <location filename="../QScintilla/Editor.py" line="7237"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7375"/>
+        <location filename="../QScintilla/Editor.py" line="7399"/>
         <source>Resources</source>
         <translation>Ressourcen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7401"/>
         <source>Add file...</source>
         <translation>Datei hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7379"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add files...</source>
         <translation>Dateien hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7405"/>
         <source>Add aliased file...</source>
         <translation>Aliased-Datei hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7384"/>
+        <location filename="../QScintilla/Editor.py" line="7408"/>
         <source>Add localized resource...</source>
         <translation>Lokalisierte Ressource hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7407"/>
+        <location filename="../QScintilla/Editor.py" line="7431"/>
         <source>Add file resource</source>
         <translation>Dateiressource hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7423"/>
+        <location filename="../QScintilla/Editor.py" line="7447"/>
         <source>Add file resources</source>
         <translation>Dateiressourcen hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add aliased file resource</source>
         <translation>Aliased-Dateiressourcen hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <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="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Package Diagram</source>
         <translation>Package-Diagramm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Include class attributes?</source>
         <translation>Klassenattribute anzeigen?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Application Diagram</source>
         <translation>Applikations-Diagramm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Include module names?</source>
         <translation>Modulnamen anzeigen?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7388"/>
+        <location filename="../QScintilla/Editor.py" line="7412"/>
         <source>Add resource frame</source>
         <translation>Ressourcenrahmen hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6837"/>
+        <location filename="../QScintilla/Editor.py" line="6850"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>Eine Makroaufzeichnung ist bereits aktiv. Neu starten?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1344"/>
+        <location filename="../QScintilla/Editor.py" line="1350"/>
         <source>Next task</source>
         <translation>Nächste Aufgabe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1348"/>
+        <location filename="../QScintilla/Editor.py" line="1354"/>
         <source>Previous task</source>
         <translation>Vorherige Aufgabe</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Editor.py" line="962"/>
+        <source>Complete from Document</source>
+        <translation>Vervollständigung vom Dokument</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="964"/>
+        <source>Complete from APIs</source>
+        <translation>Vervollständigung von APIs</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="966"/>
+        <source>Complete from Document and APIs</source>
+        <translation>Vervollständigung vom Dokument und von APIs</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1208"/>
+        <source>Export as</source>
+        <translation>Exportieren als</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
+        <source>Export source</source>
+        <translation>Quelltext exportieren</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1396"/>
+        <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Für das Exportformat &lt;b&gt;{0}&lt;/b&gt; steht kein Exporter zur Verfügung. Abbruch...&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
+        <source>No export format given. Aborting...</source>
+        <translation>Kein Exportformat angegeben. Abbruch...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
+        <source>Imports Diagram</source>
+        <translation>Imports Diagramm</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
+        <source>Include imports from external modules?</source>
+        <translation>Imports externer Module anzeigen?</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="884"/>
+        <source>Calltip</source>
+        <translation>Calltip</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="930"/>
+        <source>Print Preview</source>
+        <translation>Druckvorschau</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="470"/>
+        <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Quelltexteditorfenster&lt;/b&gt;&lt;p&gt;Dieses Fenster wird zum Bearbeiten von Quelltexten benutzt. Sie können beliebig viele dieser Fenster öffnen. Der Name der Datei wird im Titel des Fensters dargestellt.&lt;/p&gt;&lt;p&gt;Um Haltepunkte zu setzen, klicken sie in den Raum zwischen den Zeilennummern und der Faltungsspalte. Über das Kontextmenü des Bereiches links des Editors können Haltepunkte bearbeitet werden.&lt;/p&gt;&lt;p&gt;Um Lesezeichen zu setzen, drücken Sie die Shift-Taste und klicken in den Raum zwischen den Zeilennummern und der Faltungsspalte.&lt;/p&gt;&lt;p&gt;Diese Aktionen können über das Kontextmenü umgedreht werden.&lt;/p&gt;&lt;p&gt;Ein Klick auf einen Syntaxfehler-Marker mit gedrückter Strg-Taste zeigt die zugehörige Fehlermeldung an.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="869"/>
+        <source>Typing aids enabled</source>
+        <translation>Eingabehilfen aktiv</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1140"/>
+        <source>End-of-Line Type</source>
+        <translation>Zeilenendemarkierung</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1144"/>
+        <source>Unix</source>
+        <translation>Unix</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1151"/>
+        <source>Windows</source>
+        <translation>Windows</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1158"/>
+        <source>Macintosh</source>
+        <translation>Macintosh</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1099"/>
+        <source>Encodings</source>
+        <translation>Kodierungen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1079"/>
+        <source>Guessed</source>
+        <translation>Ermittelt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1419"/>
+        <source>Alternatives</source>
+        <translation>Alternativen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1415"/>
+        <source>Alternatives ({0})</source>
+        <translation>Alternativen ({0})</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
+        <source>Pygments Lexer</source>
+        <translation>Pygments Lexer</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
+        <source>Select the Pygments lexer to apply.</source>
+        <translation>Wähle den anzuwendenden Pygments Lexer.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7905"/>
+        <source>Check spelling...</source>
+        <translation>Rechtschreibprüfung...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="839"/>
+        <source>Check spelling of selection...</source>
+        <translation>Rechtschreibprüfung für Auswahl...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7908"/>
+        <source>Add to dictionary</source>
+        <translation>Zum Wörterbuch hinzufügen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7910"/>
+        <source>Ignore All</source>
+        <translation>Alle ignorieren</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="843"/>
+        <source>Remove from dictionary</source>
+        <translation>Aus dem Wörterbuch entfernen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geöffnet werden.&lt;br /&gt;Ursache: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3240"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gesichert werden.&lt;br/&gt;Grund: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1324"/>
+        <source>Next warning</source>
+        <translation>Nächste Warnung</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1328"/>
+        <source>Previous warning</source>
+        <translation>Vorherige Warnung</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1332"/>
+        <source>Show warning message</source>
+        <translation>Zeige Warnung</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
+        <source>Clear warnings</source>
+        <translation>Warnungen löschen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
+        <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="6623"/>
+        <source>Warning: {0}</source>
+        <translation>Warnung: {0}</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6630"/>
+        <source>Error: {0}</source>
+        <translation>Fehler: {0}</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7042"/>
+        <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
+        <translation>&lt;br&gt;&lt;b&gt;Warnung:&lt;/b&gt; Vorgenommenen Änderungen gehen beim neu einlesen verloren.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="926"/>
+        <source>Open &apos;rejection&apos; file</source>
+        <translation>Öffne „Ablehnungs“-Datei</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1036"/>
+        <source>Load Diagram...</source>
+        <translation>Diagramm laden...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1359"/>
+        <source>Next change</source>
+        <translation>Nächste Änderung</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1363"/>
+        <source>Previous change</source>
+        <translation>Vorherige Änderung</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
+        <source>Sort Lines</source>
+        <translation>Zeilen sortieren</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
+        <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="6558"/>
+        <source>Warning</source>
+        <translation>Warnung</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
+        <source>No warning messages available.</source>
+        <translation>Keine Warnmeldungen verfügbar.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6620"/>
+        <source>Style: {0}</source>
+        <translation>Stil: {0}</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="900"/>
+        <source>New Document View</source>
+        <translation>Neue Dokumentenansicht</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="903"/>
+        <source>New Document View (with new split)</source>
+        <translation>Neue Dokumentenansicht (in neuem Abschnitt)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="990"/>
+        <source>Tools</source>
+        <translation>Werkzeuge</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1121"/>
+        <source>Re-Open With Encoding</source>
+        <translation>Öffnen mit Kodierung</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="876"/>
+        <source>Automatic Completion enabled</source>
+        <translation>Automatische Vervollständigung aktiv</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Editor.py" line="956"/>
-        <source>Complete from Document</source>
-        <translation>Vervollständigung vom Dokument</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="958"/>
-        <source>Complete from APIs</source>
-        <translation>Vervollständigung von APIs</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="960"/>
-        <source>Complete from Document and APIs</source>
-        <translation>Vervollständigung vom Dokument und von APIs</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1202"/>
-        <source>Export as</source>
-        <translation>Exportieren als</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
-        <source>Export source</source>
-        <translation>Quelltext exportieren</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1390"/>
-        <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Für das Exportformat &lt;b&gt;{0}&lt;/b&gt; steht kein Exporter zur Verfügung. Abbruch...&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
-        <source>No export format given. Aborting...</source>
-        <translation>Kein Exportformat angegeben. Abbruch...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
-        <source>Imports Diagram</source>
-        <translation>Imports Diagramm</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
-        <source>Include imports from external modules?</source>
-        <translation>Imports externer Module anzeigen?</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="878"/>
-        <source>Calltip</source>
-        <translation>Calltip</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
-        <source>Print Preview</source>
-        <translation>Druckvorschau</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="468"/>
-        <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Quelltexteditorfenster&lt;/b&gt;&lt;p&gt;Dieses Fenster wird zum Bearbeiten von Quelltexten benutzt. Sie können beliebig viele dieser Fenster öffnen. Der Name der Datei wird im Titel des Fensters dargestellt.&lt;/p&gt;&lt;p&gt;Um Haltepunkte zu setzen, klicken sie in den Raum zwischen den Zeilennummern und der Faltungsspalte. Über das Kontextmenü des Bereiches links des Editors können Haltepunkte bearbeitet werden.&lt;/p&gt;&lt;p&gt;Um Lesezeichen zu setzen, drücken Sie die Shift-Taste und klicken in den Raum zwischen den Zeilennummern und der Faltungsspalte.&lt;/p&gt;&lt;p&gt;Diese Aktionen können über das Kontextmenü umgedreht werden.&lt;/p&gt;&lt;p&gt;Ein Klick auf einen Syntaxfehler-Marker mit gedrückter Strg-Taste zeigt die zugehörige Fehlermeldung an.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
-        <source>Typing aids enabled</source>
-        <translation>Eingabehilfen aktiv</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1134"/>
-        <source>End-of-Line Type</source>
-        <translation>Zeilenendemarkierung</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1138"/>
-        <source>Unix</source>
-        <translation>Unix</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1145"/>
-        <source>Windows</source>
-        <translation>Windows</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1152"/>
-        <source>Macintosh</source>
-        <translation>Macintosh</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1093"/>
-        <source>Encodings</source>
-        <translation>Kodierungen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1073"/>
-        <source>Guessed</source>
-        <translation>Ermittelt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1413"/>
-        <source>Alternatives</source>
-        <translation>Alternativen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1409"/>
-        <source>Alternatives ({0})</source>
-        <translation>Alternativen ({0})</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
-        <source>Pygments Lexer</source>
-        <translation>Pygments Lexer</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
-        <source>Select the Pygments lexer to apply.</source>
-        <translation>Wähle den anzuwendenden Pygments Lexer.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7881"/>
-        <source>Check spelling...</source>
-        <translation>Rechtschreibprüfung...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="837"/>
-        <source>Check spelling of selection...</source>
-        <translation>Rechtschreibprüfung für Auswahl...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7884"/>
-        <source>Add to dictionary</source>
-        <translation>Zum Wörterbuch hinzufügen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7886"/>
-        <source>Ignore All</source>
-        <translation>Alle ignorieren</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="841"/>
-        <source>Remove from dictionary</source>
-        <translation>Aus dem Wörterbuch entfernen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3110"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geöffnet werden.&lt;br /&gt;Ursache: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3234"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gesichert werden.&lt;br/&gt;Grund: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1318"/>
-        <source>Next warning</source>
-        <translation>Nächste Warnung</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1322"/>
-        <source>Previous warning</source>
-        <translation>Vorherige Warnung</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1326"/>
-        <source>Show warning message</source>
-        <translation>Zeige Warnung</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1330"/>
-        <source>Clear warnings</source>
-        <translation>Warnungen löschen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
-        <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="6610"/>
-        <source>Warning: {0}</source>
-        <translation>Warnung: {0}</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6617"/>
-        <source>Error: {0}</source>
-        <translation>Fehler: {0}</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7029"/>
-        <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>
+        <source>Complete</source>
+        <translation>Vervollständigen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
+        <source>Auto-Completion Provider</source>
+        <translation>Provider für automatische Vervollständigungen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
+        <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="5192"/>
+        <source>Call-Tips Provider</source>
+        <translation>Calltipps-Provider</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
+        <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="8415"/>
+        <source>Register Mouse Click Handler</source>
+        <translation>Maus Klick Handler registrieren</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
+        <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>
     <message>
         <location filename="../QScintilla/Editor.py" line="920"/>
-        <source>Open &apos;rejection&apos; file</source>
-        <translation>Öffne „Ablehnungs“-Datei</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1030"/>
-        <source>Load Diagram...</source>
-        <translation>Diagramm laden...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1353"/>
-        <source>Next change</source>
-        <translation>Nächste Änderung</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1357"/>
-        <source>Previous change</source>
-        <translation>Vorherige Änderung</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
-        <source>Sort Lines</source>
-        <translation>Zeilen sortieren</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
-        <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="6545"/>
-        <source>Warning</source>
-        <translation>Warnung</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
-        <source>No warning messages available.</source>
-        <translation>Keine Warnmeldungen verfügbar.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6607"/>
-        <source>Style: {0}</source>
-        <translation>Stil: {0}</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
-        <source>New Document View</source>
-        <translation>Neue Dokumentenansicht</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="897"/>
-        <source>New Document View (with new split)</source>
-        <translation>Neue Dokumentenansicht (in neuem Abschnitt)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="984"/>
-        <source>Tools</source>
-        <translation>Werkzeuge</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1115"/>
-        <source>Re-Open With Encoding</source>
-        <translation>Öffnen mit Kodierung</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
-        <source>Automatic Completion enabled</source>
-        <translation>Automatische Vervollständigung aktiv</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="950"/>
-        <source>Complete</source>
-        <translation>Vervollständigen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
-        <source>Auto-Completion Provider</source>
-        <translation>Provider für automatische Vervollständigungen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
-        <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="5184"/>
-        <source>Call-Tips Provider</source>
-        <translation>Calltipps-Provider</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="5184"/>
-        <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="8391"/>
-        <source>Register Mouse Click Handler</source>
-        <translation>Maus Klick Handler registrieren</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8391"/>
-        <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>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="914"/>
         <source>Save Copy...</source>
         <translation>Kopie speichern...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="953"/>
+        <location filename="../QScintilla/Editor.py" line="959"/>
         <source>Clear Completions Cache</source>
         <translation>Vervollständigungsspeicher löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="880"/>
+        <location filename="../QScintilla/Editor.py" line="886"/>
         <source>Code Info</source>
         <translation>Code Info</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1361"/>
+        <location filename="../QScintilla/Editor.py" line="1367"/>
         <source>Clear changes</source>
         <translation>Änderungsmarker löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="803"/>
+        <location filename="../QScintilla/Editor.py" line="805"/>
         <source>Execute Selection In Console</source>
         <translation>Auswahl in Konsole ausführen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>EditorConfig Properties</source>
         <translation>EditorConfig Eigenschaften</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die EditorConfig Eigenschaften für die Datei &lt;b&gt;{0}&lt;/b&gt; konnten nicht geladen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
+        <location filename="../QScintilla/Editor.py" line="1271"/>
         <source>Toggle all folds</source>
         <translation>Alle Faltungen umschalten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1270"/>
+        <location filename="../QScintilla/Editor.py" line="1276"/>
         <source>Toggle all folds (including children)</source>
         <translation>Alle Faltungen umschalten (inkl. Unterfaltungen)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1275"/>
-        <source>Toggle current fold</source>
-        <translation>Aktuelle Faltung umschalten</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1281"/>
+        <source>Toggle current fold</source>
+        <translation>Aktuelle Faltung umschalten</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1287"/>
         <source>Expand (including children)</source>
         <translation>Ausklappen (inkl. Unterfaltungen)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
-        <source>Collapse (including children)</source>
-        <translation>Einklappen (inkl. Unterfaltungen)</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1292"/>
+        <source>Collapse (including children)</source>
+        <translation>Einklappen (inkl. Unterfaltungen)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1298"/>
         <source>Clear all folds</source>
         <translation>Alle Faltungen aufklappen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1173"/>
+        <location filename="../QScintilla/Editor.py" line="1179"/>
         <source>Spell Check Languages</source>
         <translation>Sprachen für Rechtschreibprüfung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7023"/>
+        <location filename="../QScintilla/Editor.py" line="7036"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; wurde geändert, während sie in eric geöffnet war. Neu einlesen?&lt;/p&gt;</translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="849"/>
+        <source>Insert Docstring</source>
+        <translation>Docstring einfügen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <source>Generate Docstring</source>
+        <translation>Docstring erzeugen</translation>
+    </message>
 </context>
 <context>
     <name>EditorAPIsPage</name>
@@ -13111,72 +13148,72 @@
 <context>
     <name>EditorGeneralPage</name>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="125"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="169"/>
         <source>Displays the selected indentation width.</source>
         <translation>Zeigt die ausgewählte Einrückungstiefe.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="103"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="147"/>
         <source>Move to set the indentation width.</source>
         <translation>Verschiebe den Regler zur Wahl der Einrückungstiefe.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="93"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="137"/>
         <source>Indentation width:</source>
         <translation>Einrückungstiefe:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="55"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="99"/>
         <source>Move to set the tab width.</source>
         <translation>Bewegen Sie den Schieber, um die Tabulatorweite zu setzen.</translation>
     </message>
     <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="89"/>
+        <source>Tab width:</source>
+        <translation>Tabulatorweite:</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="121"/>
+        <source>Displays the selected tab width.</source>
+        <translation>Zeigt die gewählte Tabulatorweite an.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="75"/>
+        <source>Select whether tabs shall be converted upon opening the file</source>
+        <translation>Wähle, ob Tabulatoren beim Öffnen der Datei umgewandelt werden sollen</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="78"/>
+        <source>Convert tabs upon open</source>
+        <translation>Tabulatoren beim Öffnen umwandeln</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="65"/>
+        <source>Select whether pressing the tab key indents.</source>
+        <translation>Wähle aus, ob das Drücken der Tabulatortaste einrücken soll.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="68"/>
+        <source>Tab key indents</source>
+        <translation>Tabulatortaste rückt ein</translation>
+    </message>
+    <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="45"/>
-        <source>Tab width:</source>
-        <translation>Tabulatorweite:</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="77"/>
-        <source>Displays the selected tab width.</source>
-        <translation>Zeigt die gewählte Tabulatorweite an.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="266"/>
-        <source>Select whether tabs shall be converted upon opening the file</source>
-        <translation>Wähle, ob Tabulatoren beim Öffnen der Datei umgewandelt werden sollen</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="269"/>
-        <source>Convert tabs upon open</source>
-        <translation>Tabulatoren beim Öffnen umwandeln</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="256"/>
-        <source>Select whether pressing the tab key indents.</source>
-        <translation>Wähle aus, ob das Drücken der Tabulatortaste einrücken soll.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="259"/>
-        <source>Tab key indents</source>
-        <translation>Tabulatortaste rückt ein</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="236"/>
         <source>Select whether autoindentation shall be enabled</source>
         <translation>Wähle aus, ob die automatische Einrückung aktiv sein soll</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="239"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="48"/>
         <source>Auto indentation</source>
         <translation>Automatische Einrückung</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="246"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="55"/>
         <source>Select whether tab characters are used for indentations.</source>
         <translation>Wähle aus, ob Tabulatoren zum Einrücken verwendet werden sollen.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="249"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="58"/>
         <source>Use tabs for indentations</source>
         <translation>Benutze Tabulatoren zum Einrücken</translation>
     </message>
@@ -13191,135 +13228,150 @@
         <translation>Tabulatoren &amp;&amp; Einrückung</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="371"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="373"/>
         <source>Comments</source>
         <translation>Kommentare</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="377"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="379"/>
         <source>Select to insert the comment sign at column 0</source>
         <translation>Auswählen, um das Kommentarzeichen in Spalte 0 einzufügen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="383"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="385"/>
         <source>Insert comment at column 0</source>
         <translation>Kommentarzeichen in Spalte 0 einfügen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="380"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="382"/>
         <source>&lt;b&gt;Insert comment at column 0&lt;/b&gt;&lt;p&gt;Select to insert the comment sign at column 0. Otherwise, the comment sign is inserted at the first non-whitespace position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kommentarzeichen in Spalte 0 einfügen&lt;/b&gt;&lt;p&gt;Auswählen, um das Kommentarzeichen in Spalte 0 einzufügen. Ansonsten wird das Kommentarzeichen an der ersten Stelle, die kein Leerzeichen ist, eingefügt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="393"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="424"/>
         <source>Virtual Space</source>
         <translation>Virtueller Bereich</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="399"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="430"/>
         <source>Virtual space is the space after the last character of a line. It is not allocated unless some text is entered or copied into it. Usage of virtual space can be configured with these selections.</source>
         <translation>Der virtuelle Bereich ist der Bereich nach dem letzten Zeichen einer Zeile. Hierfür wird erst Platz allokiert, wenn Text eingegeben oder hineinkopiert wird. Die Verwendung des virtuellen Bereiches kann mit diesen Optionen konfiguriert werden.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="409"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="440"/>
         <source>Select to enable a rectangular selection to extend into virtual space</source>
         <translation>Auswählen, um zuzulassen, dass eine rechteckigen Auswahl bis in den virtuellen Bereich ausgedehnt wird</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="412"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="443"/>
         <source>Selection may access virtual space</source>
         <translation>Auswahl in den virtuellen Bereich erweitern</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="419"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="450"/>
         <source>Select to allow the cursor to be moved into virtual space</source>
         <translation>Auswählen, um zuzulassen, dass die Einfügemarke in den virtuellen Bereich bewegt wird</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="422"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="453"/>
         <source>Cursor can move into virtual space</source>
         <translation>Einfügemarke in den virtuellen Bereich bewegen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="158"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="206"/>
         <source>Language</source>
         <translation>Sprache</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="163"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="211"/>
         <source>Tab Width</source>
         <translation>Tabulatorweite</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="168"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="216"/>
         <source>Indent Width</source>
         <translation>Einrückungstiefe</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="196"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="244"/>
         <source>Press to add a language specific override</source>
         <translation>Drücken, um eine Sprachen spezifische Änderung hinzuzufügen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="203"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="251"/>
         <source>Press to delete the selected language specific override</source>
         <translation>Drücken, um die ausgewählten Sprachen spezifischen Änderungen zu löschen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="210"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="258"/>
         <source>Press to edit the selected language specific override</source>
         <translation>Drücken, um die ausgewählte Sprachen spezifische Änderung zu bearbeiten</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Tab and Indent Override</source>
         <translation>Tabulator und Einrückung Änderung</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Shall the selected entries really be removed?</source>
         <translation>Sollen die ausgewählten Einträge wirklich gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="281"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="283"/>
         <source>Select to enable the source code outline view</source>
         <translation>Auswählen, um die Quelltextübersichtsanzeige zu aktivieren</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="284"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="286"/>
         <source>Source Code Outline</source>
         <translation>Quelltextübersicht</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="293"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="295"/>
         <source>Default Width:</source>
         <translation>Standardbreite:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="320"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="302"/>
         <source>Enter the default width of the source code outline view</source>
         <translation>Gib die Standardbreite für die Quelltextübersichtsanzeige ein</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="313"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="321"/>
         <source>Width Step Size:</source>
         <translation>Schrittweite für Breite:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="339"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="328"/>
         <source>Enter the amount of pixels the width of the outline should be increased or decreased</source>
         <translation>Gib die Anzahl an Pixel ein, um die die Übersicht verbreitert bzw. verkleinert werden soll</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="358"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="360"/>
         <source>Select to show the source code encoding</source>
         <translation>Auswählen, um die Quelltextkodierung anzuzeigen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="361"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="363"/>
         <source>Show source file encoding</source>
         <translation>Zeige Quelltextkodierung an</translation>
     </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="395"/>
+        <source>Docstring</source>
+        <translation>Docstring</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="401"/>
+        <source>Docstring Style:</source>
+        <translation>Docstring Stil:</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="414"/>
+        <source>Select the docstring style to be used</source>
+        <translation>Wähle den zu verwendenden Stil für Docstrings</translation>
+    </message>
 </context>
 <context>
     <name>EditorHighlightersPage</name>
@@ -44605,12 +44657,12 @@
     </message>
     <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1050"/>
-        <source>µPy Chart</source>
+        <source>&#xc2;&#xb5;Py Chart</source>
         <translation>µPy Chart</translation>
     </message>
     <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1130"/>
-        <source>µPy Files</source>
+        <source>&#xc2;&#xb5;Py Files</source>
         <translation>µPy Dateien</translation>
     </message>
     <message>
@@ -50045,17 +50097,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1627"/>
+        <location filename="../Preferences/__init__.py" line="1629"/>
         <source>Export Preferences</source>
         <translation>Einstellungen exportieren</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Import Preferences</source>
         <translation>Einstellungen importieren</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation>Properties-Dateien (*.ini);;Alle Dateien (*)</translation>
     </message>
@@ -50561,527 +50613,527 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>Read project file</source>
         <translation>Projektdatei lesen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>Delete translation</source>
         <translation>Übersetzung löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1677"/>
+        <location filename="../Project/Project.py" line="1678"/>
         <source>Add file</source>
         <translation>Datei hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>Delete file</source>
         <translation>Datei löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>Create project directory</source>
         <translation>Projektverzeichnis erstellen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>Open project</source>
         <translation>Projekt öffnen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save project as</source>
         <translation>Projekt speichern unter</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>Save File</source>
         <translation>Datei speichern</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>Close Project</source>
         <translation>Projekt schließen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>The current project has unsaved changes.</source>
         <translation>Das aktuelle Projekt hat ungesicherte Änderungen.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>&amp;Save</source>
         <translation>&amp;Speichern</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>New project</source>
         <translation>Neues Projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>&amp;New...</source>
         <translation>&amp;Neu...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3850"/>
-        <source>Generate a new project</source>
-        <translation>Erstelle ein neues Projekt</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3851"/>
+        <source>Generate a new project</source>
+        <translation>Erstelle ein neues Projekt</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3852"/>
         <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neu...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Eingabe der Informationen des neuen Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>&amp;Open...</source>
         <translation>&amp;Öffnen...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3864"/>
-        <source>Open an existing project</source>
-        <translation>Öffnet ein bestehendes Projekt</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3865"/>
+        <source>Open an existing project</source>
+        <translation>Öffnet ein bestehendes Projekt</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3866"/>
         <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Öffnen...&lt;/b&gt;&lt;p&gt;Dies öffnet ein bestehendes Projekt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>Close project</source>
         <translation>Projekt schließen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>&amp;Close</source>
         <translation>Schl&amp;ießen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3876"/>
-        <source>Close the current project</source>
-        <translation>Schließt das aktuelle Projekt</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3877"/>
+        <source>Close the current project</source>
+        <translation>Schließt das aktuelle Projekt</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3878"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Schließen&lt;/b&gt;&lt;p&gt;Dies schließt das aktuelle Projekt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3884"/>
+        <location filename="../Project/Project.py" line="3885"/>
         <source>Save project</source>
         <translation>Projekt speichern</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3888"/>
-        <source>Save the current project</source>
-        <translation>Speichert das aktuelle Projekt</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3889"/>
+        <source>Save the current project</source>
+        <translation>Speichert das aktuelle Projekt</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3890"/>
         <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Speichern&lt;/b&gt;&lt;p&gt;Dies speichert das aktuelle Projekt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3900"/>
+        <location filename="../Project/Project.py" line="3901"/>
         <source>Save the current project to a new file</source>
         <translation>Speichert das aktuelle Projekt in eine neue Datei</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3902"/>
+        <location filename="../Project/Project.py" line="3903"/>
         <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Speichern unter&lt;/b&gt;&lt;p&gt;Dies speichert das aktuelle Projekt in eine neue Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add translation to project</source>
         <translation>Übersetzung zum Projekt hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add &amp;translation...</source>
         <translation>&amp;Übersetzung hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3947"/>
+        <location filename="../Project/Project.py" line="3948"/>
         <source>Add a translation to the current project</source>
         <translation>Eine Übersetzung zum aktuellen Projekt hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3949"/>
+        <location filename="../Project/Project.py" line="3950"/>
         <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Übersetzung hinzufügen...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, mit dem eine Übersetzung zum aktuellen Projekt hinzugefügt werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>Project properties</source>
         <translation>Projekteigenschaften</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>&amp;Properties...</source>
         <translation>&amp;Eigenschaften...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3992"/>
-        <source>Show the project properties</source>
-        <translation>Zeigt die Projekteigenschaften an</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3993"/>
+        <source>Show the project properties</source>
+        <translation>Zeigt die Projekteigenschaften an</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3994"/>
         <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eigenschaften...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog an, mit dem die Projekteigenschaften bearbeitet werden können.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4340"/>
+        <location filename="../Project/Project.py" line="4341"/>
         <source>Open &amp;Recent Projects</source>
         <translation>Zu&amp;letzt geöffnete Projekte</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1809"/>
+        <location filename="../Project/Project.py" line="1810"/>
         <source>The target directory must not be empty.</source>
         <translation>Das Zielverzeichnis darf nicht leer sein.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Search new files</source>
         <translation>Neue Dateien suchen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Searc&amp;h new files...</source>
         <translation>Neue &amp;Dateien suchen...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3961"/>
+        <location filename="../Project/Project.py" line="3962"/>
         <source>Search new files in the project directory.</source>
         <translation>Sucht neue Dateien im Projektverzeichnis.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>Add directory</source>
         <translation>Verzeichnis hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>The source directory must not be empty.</source>
         <translation>Das Quellverzeichnis darf nicht leer sein.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>Add Language</source>
         <translation>Sprache hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save &amp;as...</source>
         <translation>Speichern &amp;unter...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>Version Control System</source>
         <translation>Versionskontrollsystem</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>Search New Files</source>
         <translation>Neue Dateien suchen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>There were no new files found to be added.</source>
         <translation>Es wurden keine neuen Dateien gefunden.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>Read project session</source>
         <translation>Projektsitzung lesen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1244"/>
+        <location filename="../Project/Project.py" line="1245"/>
         <source>Please save the project first.</source>
         <translation>Bitte speichern Sie zuerst das Projekt.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>Save project session</source>
         <translation>Projektsitzung speichern</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4115"/>
+        <location filename="../Project/Project.py" line="4116"/>
         <source>Load session</source>
         <translation>Sitzung laden</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4119"/>
-        <source>Load the projects session file.</source>
-        <translation>Laden der Projektsitzung.</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4133"/>
-        <source>Save session</source>
-        <translation>Sitzung speichern</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4137"/>
-        <source>Save the projects session file.</source>
-        <translation>Speichern der Projektsitzung.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4120"/>
-        <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Sitzung laden&lt;/b&gt;&lt;p&gt;Dies lädt eine Projektsitzungsdatei. Die Sitzung enthält die folgenden Daten.&lt;br&gt;- alle offenen Quelltextdateien&lt;br&gt;- alle Haltepunkte&lt;br&gt;- die Kommandozeilenparameter&lt;br&gt;- das Arbeitsverzeichnis&lt;br&gt;- das Ausnahmemeldungsflag&lt;/p&gt;</translation>
+        <source>Load the projects session file.</source>
+        <translation>Laden der Projektsitzung.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4134"/>
+        <source>Save session</source>
+        <translation>Sitzung speichern</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="4138"/>
+        <source>Save the projects session file.</source>
+        <translation>Speichern der Projektsitzung.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4121"/>
+        <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Sitzung laden&lt;/b&gt;&lt;p&gt;Dies lädt eine Projektsitzungsdatei. Die Sitzung enthält die folgenden Daten.&lt;br&gt;- alle offenen Quelltextdateien&lt;br&gt;- alle Haltepunkte&lt;br&gt;- die Kommandozeilenparameter&lt;br&gt;- das Arbeitsverzeichnis&lt;br&gt;- das Ausnahmemeldungsflag&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4139"/>
         <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sitzung speichern&lt;/b&gt;&lt;p&gt;Dies speichert eine Projektsitzungsdatei. Die Sitzung enthält die folgenden Daten.&lt;br&gt;- alle offenen Quelltextdateien&lt;br&gt;- alle Haltepunkte&lt;br&gt;- die Kommandozeilenparameter&lt;br&gt;- das Arbeitsverzeichnis&lt;br&gt;- das Ausnahmemeldungsflag&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4354"/>
+        <location filename="../Project/Project.py" line="4355"/>
         <source>Source &amp;Documentation</source>
         <translation>&amp;Quelltextdokumentation</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4349"/>
+        <location filename="../Project/Project.py" line="4350"/>
         <source>Chec&amp;k</source>
         <translation>&amp;Prüfen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>Code Metrics</source>
         <translation>Quelltextmetriken</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>&amp;Code Metrics...</source>
         <translation>&amp;Quelltextmetriken...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4169"/>
+        <location filename="../Project/Project.py" line="4170"/>
         <source>Show some code metrics for the project.</source>
         <translation>Zeige einige Quelltextmetriken für das Projekt.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4171"/>
+        <location filename="../Project/Project.py" line="4172"/>
         <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Quelltextmetriken...&lt;/b&gt;&lt;p&gt;Dies zeigt einige Quelltextmetriken für alle Python-Dateien des Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Python Code Coverage</source>
         <translation>Python-Quelltext-Abdeckung</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Code Co&amp;verage...</source>
         <translation>&amp;Quelltext Abdeckung...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4183"/>
+        <location filename="../Project/Project.py" line="4184"/>
         <source>Show code coverage information for the project.</source>
         <translation>Zeige die Quelltextabdeckung für das Projekt.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4185"/>
+        <location filename="../Project/Project.py" line="4186"/>
         <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Quelltext Abdeckung...&lt;/b&gt;&lt;p&gt;Dies zeigt die Quelltextabdeckung für alle Python-Dateien des Projektes an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Profile Data</source>
         <translation>Profildaten</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4193"/>
+        <location filename="../Project/Project.py" line="4194"/>
         <source>&amp;Profile Data...</source>
         <translation>&amp;Profildaten...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4197"/>
+        <location filename="../Project/Project.py" line="4198"/>
         <source>Show profiling data for the project.</source>
         <translation>Zeige Profildaten des aktuellen Projektes.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4199"/>
+        <location filename="../Project/Project.py" line="4200"/>
         <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profildaten...&lt;/b&gt;&lt;p&gt;Dies zeigt die Profildaten des Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4351"/>
-        <source>Sho&amp;w</source>
-        <translation>&amp;Zeige</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5046"/>
-        <source>There is no main script defined for the current project. Aborting</source>
-        <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4996"/>
-        <source>Coverage Data</source>
-        <translation>Quelltext Abdeckungsdaten</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4345"/>
-        <source>&amp;Version Control</source>
-        <translation>&amp;Versionskontrolle</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="5123"/>
-        <source>Application Diagram</source>
-        <translation>Applikations-Diagramm</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4208"/>
-        <source>&amp;Application Diagram...</source>
-        <translation>&amp;Applikations-Diagramm...</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4212"/>
-        <source>Show a diagram of the project.</source>
-        <translation>Zeigt ein Diagramm des Projektes.</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4214"/>
-        <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Applikations-Diagramm...&lt;/b&gt;&lt;p&gt;Dies zeigt ein Diagramm des Projektes.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4352"/>
+        <source>Sho&amp;w</source>
+        <translation>&amp;Zeige</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5047"/>
+        <source>There is no main script defined for the current project. Aborting</source>
+        <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4997"/>
+        <source>Coverage Data</source>
+        <translation>Quelltext Abdeckungsdaten</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4346"/>
+        <source>&amp;Version Control</source>
+        <translation>&amp;Versionskontrolle</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="5124"/>
+        <source>Application Diagram</source>
+        <translation>Applikations-Diagramm</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4209"/>
+        <source>&amp;Application Diagram...</source>
+        <translation>&amp;Applikations-Diagramm...</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4213"/>
+        <source>Show a diagram of the project.</source>
+        <translation>Zeigt ein Diagramm des Projektes.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4215"/>
+        <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Applikations-Diagramm...&lt;/b&gt;&lt;p&gt;Dies zeigt ein Diagramm des Projektes.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4353"/>
         <source>&amp;Diagrams</source>
         <translation>&amp;Diagramme</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>Save project file</source>
         <translation>Projektdatei speichern</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Code Coverage</source>
         <translation>Quelltext Abdeckung</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Please select a coverage file</source>
         <translation>Bitte wählen Sie eine Datei mit Abdeckungsdaten</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Please select a profile file</source>
         <translation>Bitte wählen Sie eine Datei mit Profildaten</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory to project</source>
         <translation>Verzeichnis zum Projekt hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory...</source>
         <translation>Verzeichnis hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3932"/>
+        <location filename="../Project/Project.py" line="3933"/>
         <source>Add a directory to the current project</source>
         <translation>Füge den Inhalt eines Verzeichnisses zum Projekt hinzu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3934"/>
+        <location filename="../Project/Project.py" line="3935"/>
         <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Verzeichnis hinzufügen&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, mit dem ein Verzeichnis bzw. der Inhalt eines Verzeichnisses zum aktuellen Projekt hinzugefügt werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1957"/>
+        <location filename="../Project/Project.py" line="1958"/>
         <source>Rename file</source>
         <translation>Datei umbenennen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>Rename File</source>
         <translation>Datei umbenennen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2546"/>
+        <location filename="../Project/Project.py" line="2547"/>
         <source>Shall the project file be added to the repository?</source>
         <translation>Soll die Projektdatei zum Repository hinzugefügt werden?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>New Project</source>
         <translation>Neues Projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2476"/>
+        <location filename="../Project/Project.py" line="2477"/>
         <source>Add existing files to the project?</source>
         <translation>Existierende Dateien dem Projekt hinzufügen?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2603"/>
+        <location filename="../Project/Project.py" line="2604"/>
         <source>Would you like to edit the VCS command options?</source>
         <translation>Möchten Sie die VCS-Befehlsoptionen bearbeiten?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2575"/>
+        <location filename="../Project/Project.py" line="2576"/>
         <source>Select version control system for the project</source>
         <translation>Wähle das Versionskontrollsystem für das Projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Projektdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Projektdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geschrieben werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Projektsitzungsdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Projektsitzungsdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Projektverzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht erstellt werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>Delete project session</source>
         <translation>Projektsitzung löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Projektsitzungsdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4151"/>
+        <location filename="../Project/Project.py" line="4152"/>
         <source>Delete session</source>
         <translation>Sitzung löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4155"/>
-        <source>Delete the projects session file.</source>
-        <translation>Löscht die Projektsitzungsdatei.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4156"/>
+        <source>Delete the projects session file.</source>
+        <translation>Löscht die Projektsitzungsdatei.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4157"/>
         <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sitzung löschen&lt;/b&gt;&lt;p&gt;Dies löscht die Sitzungsdatei des Projektes.&lt;/p&gt;</translation>
     </message>
@@ -51096,287 +51148,287 @@
         <translation>Sonstige</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Include module names?</source>
         <translation>Modulnamen anzeigen?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>Delete directory</source>
         <translation>Verzeichnis löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>Read tasks</source>
         <translation>Aufgaben lesen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Aufgabendatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>Save tasks</source>
         <translation>Aufgaben speichern</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Aufgabendatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geschrieben werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>Read debugger properties</source>
         <translation>Debugger-Eigenschaften lesen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei mit den projektspezifischen Debugger-Eigenschaften &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>Save debugger properties</source>
         <translation>Debugger-Eigenschaften speichern</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei mit den projektspezifischen Debugger-Eigenschaften &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>Delete debugger properties</source>
         <translation>Debugger-Eigenschaften löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei mit den projektspezifischen Debugger-Eigenschaften &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger Properties</source>
         <translation>Debugger-Eigenschaften</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger &amp;Properties...</source>
         <translation>Debugger-&amp;Eigenschaften...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4055"/>
-        <source>Show the debugger properties</source>
-        <translation>Debugger-Eigenschaften anzeigen</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4056"/>
+        <source>Show the debugger properties</source>
+        <translation>Debugger-Eigenschaften anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4057"/>
         <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Debugger-Eigenschaften...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog an, um die projektspezifischen Debugger-Einstellungen zu bearbeiten.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>Load</source>
         <translation>Laden</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>&amp;Load</source>
         <translation>&amp;Laden</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4068"/>
+        <location filename="../Project/Project.py" line="4069"/>
         <source>Load the debugger properties</source>
         <translation>Debugger-Eigenschaften laden</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>Save</source>
         <translation>Speichern</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4080"/>
+        <location filename="../Project/Project.py" line="4081"/>
         <source>Save the debugger properties</source>
         <translation>Debugger-Eigenschaften speichern</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>Delete</source>
         <translation>Löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>&amp;Delete</source>
         <translation>&amp;Löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4092"/>
+        <location filename="../Project/Project.py" line="4093"/>
         <source>Delete the debugger properties</source>
         <translation>Debugger-Eigenschaften löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>Reset</source>
         <translation>Zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>&amp;Reset</source>
         <translation>&amp;Zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4105"/>
+        <location filename="../Project/Project.py" line="4106"/>
         <source>Reset the debugger properties</source>
         <translation>Debugger-Eigenschaften zurücksetzen</translation>
     </message>
     <message>
+        <location filename="../Project/Project.py" line="4343"/>
+        <source>Debugger</source>
+        <translation>Debugger</translation>
+    </message>
+    <message>
         <location filename="../Project/Project.py" line="4342"/>
-        <source>Debugger</source>
-        <translation>Debugger</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4341"/>
         <source>Session</source>
         <translation>Sitzung</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4069"/>
+        <location filename="../Project/Project.py" line="4070"/>
         <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Debugger-Eigenschaften laden&lt;/b&gt;&lt;p&gt;Dies lädt die projektspezifischen Debugger-Einstellungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4081"/>
+        <location filename="../Project/Project.py" line="4082"/>
         <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Debugger-Eigenschaften speichern&lt;/b&gt;&lt;p&gt;Dies speichert die projektspezifischen Debugger-Einstellungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4093"/>
+        <location filename="../Project/Project.py" line="4094"/>
         <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Debugger-Eigenschaften löschen&lt;/b&gt;&lt;p&gt;Dies löscht die Datei mit den projektspezifischen Debugger-Einstellungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4106"/>
+        <location filename="../Project/Project.py" line="4107"/>
         <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Debugger-Eigenschaften zurücksetzen&lt;/b&gt;&lt;p&gt;Dies setzt die projektspezifischen Debugger-Einstellungen zurück.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations</source>
         <translation>Dateitypzuordnungen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations...</source>
         <translation>Dateitypzuordnungen...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4019"/>
+        <location filename="../Project/Project.py" line="4020"/>
         <source>Show the project filetype associations</source>
         <translation>Zeigt die Dateitypzuordnungen des Projektes</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4353"/>
+        <location filename="../Project/Project.py" line="4354"/>
         <source>Pac&amp;kagers</source>
         <translation>Pa&amp;ketierer</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add files to project</source>
         <translation>Dateien zum Projekt hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add &amp;files...</source>
         <translation>&amp;Dateien hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3916"/>
+        <location filename="../Project/Project.py" line="3917"/>
         <source>Add files to the current project</source>
         <translation>Fügt Dateien zum aktuellen Projekt hinzu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3918"/>
+        <location filename="../Project/Project.py" line="3919"/>
         <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dateien hinzufügen...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, mit dem Dateien zum aktuellen Projekt hinzugefügt werden kann. Der Ort, an dem sie eingefügt werden, wird durch die Dateinamenerweiterung bestimmt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht umbenannt werden.&lt;br /&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3120"/>
+        <location filename="../Project/Project.py" line="3121"/>
         <source>Project Files (*.e4p)</source>
         <translation>Projektdateien (*.e4p)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4339"/>
+        <location filename="../Project/Project.py" line="4340"/>
         <source>&amp;Project</source>
         <translation>&amp;Projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4479"/>
+        <location filename="../Project/Project.py" line="4480"/>
         <source>Project</source>
         <translation>Projekt</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4545"/>
+        <location filename="../Project/Project.py" line="4546"/>
         <source>&amp;Clear</source>
         <translation>&amp;Löschen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1741"/>
+        <location filename="../Project/Project.py" line="1742"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>Read user project properties</source>
         <translation>Nutzer bezogene Projektdaten lesen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei mit den Nutzer bezogenen Projektdaten &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>Save user project properties</source>
         <translation>Nutzer bezogene Projektdaten sichern</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei mit den Nutzer bezogenen Projektdaten &lt;b&gt;{0}&lt;/b&gt; konnte nicht geschrieben werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>User project properties</source>
         <translation>Nutzer bezogene Projektdaten</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>&amp;User Properties...</source>
         <translation>&amp;Nutzer bezogene Projektdaten...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4005"/>
+        <location filename="../Project/Project.py" line="4006"/>
         <source>Show the user specific project properties</source>
         <translation>Zeigt die Nutzer bezogenen Projektdaten an</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4007"/>
+        <location filename="../Project/Project.py" line="4008"/>
         <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nutzer bezogene Projektdaten...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog an, um Nutzer bezogene Projektdaten zu bearbeiten.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>Syntax errors detected</source>
         <translation>Syntaxfehler gefunden</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>The project contains %n file(s) with syntax errors.</source>
         <translation>
             <numerusform>Das Projekt beinhaltet eine Datei mit Syntaxfehlern.</numerusform>
@@ -51384,47 +51436,47 @@
         </translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>Create Package List</source>
         <translation>Erzeuge Paketliste</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4237"/>
+        <location filename="../Project/Project.py" line="4238"/>
         <source>Create &amp;Package List</source>
         <translation>Erzeuge &amp;Paketliste</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>Create Plugin Archive</source>
         <translation>Erzeuge Plugin Archiv</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5267"/>
+        <location filename="../Project/Project.py" line="5268"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;PKGLIST&lt;/b&gt; existiert bereits.&lt;/p&gt;&lt;p&gt;Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;PKGLIST&lt;/b&gt; konnte nicht erzeugt werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5337"/>
+        <location filename="../Project/Project.py" line="5338"/>
         <source>The project does not have a main script defined. Aborting...</source>
         <translation>Für das Projekt wurde kein Hauptskript angegeben. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1708"/>
+        <location filename="../Project/Project.py" line="1709"/>
         <source>&lt;p&gt;The source directory doesn&apos;t contain any files belonging to the selected category.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Quellverzeichnis enthält keine Dateien, die zur gewählten Kategorie gehören.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>Select Version Control System</source>
         <translation>Versionskontrollsystem auswählen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2582"/>
+        <location filename="../Project/Project.py" line="2583"/>
         <source>None</source>
         <translation>Keines</translation>
     </message>
@@ -51434,52 +51486,52 @@
         <translation>Projekttyp Registrierung</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5477"/>
+        <location filename="../Project/Project.py" line="5478"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht im Archiv gespeichert werde. Sie wird ignoriert.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5548"/>
+        <location filename="../Project/Project.py" line="5549"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Plugindatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;br&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>You have to specify a translation pattern first.</source>
         <translation>Sie müssen zuerst ein Übersetzungsmuster festlegen.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Translation Pattern</source>
         <translation>Übersetzungsmuster</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Enter the path pattern for translation files (use &apos;%language%&apos; in place of the language code):</source>
         <translation>Gib das Pfadmuster für Übersetzungsdateien ein (benutze „%language%“ anstelle des Sprachcodes):</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das ausgewählte Versionskontrollsystem &lt;b&gt;{0}&lt;/b&gt; konnte nicht gefunden werden.&lt;br/&gt;Versionskontrolle nicht möglich.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations</source>
         <translation>Lexerzuordnungen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations...</source>
         <translation>Lexerzuordnungen...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4037"/>
+        <location filename="../Project/Project.py" line="4038"/>
         <source>Show the project lexer associations (overriding defaults)</source>
         <translation>Zeigt die projektspezifischen Lexerzuordnungen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4039"/>
+        <location filename="../Project/Project.py" line="4040"/>
         <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lexerzuordnungen&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, um die projektspezifischen Lexerzuordnungen zu bearbeiten. Diese Zuordnungen überschreiben die globalen Lexerzuordnungen. Lexer werden verwendet, um den Editortext einzufärben.&lt;/p&gt;</translation>
     </message>
@@ -51489,42 +51541,42 @@
         <translation>Python 3-Dateien (*.py *.py3);;Python 3-GUI-Dateien (*.pyw *.pyw3);;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1664"/>
+        <location filename="../Project/Project.py" line="1665"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die ausgewählte Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht zu &lt;b&gt;{1}&lt;/b&gt; hinzugefügt werden.&lt;/p&gt;&lt;p&gt;Ursache: {2}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1723"/>
+        <location filename="../Project/Project.py" line="1724"/>
         <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Zielverzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht erstellt werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>Create main script</source>
         <translation>Hauptskript erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>&lt;p&gt;The mainscript &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Hauptskript &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden.&lt;br/&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>Load Diagram</source>
         <translation>Diagramm laden</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>&amp;Load Diagram...</source>
         <translation>Diagramm &amp;laden...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4226"/>
+        <location filename="../Project/Project.py" line="4227"/>
         <source>Load a diagram from file.</source>
         <translation>Lade ein Diagramm aus einer Datei.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4228"/>
+        <location filename="../Project/Project.py" line="4229"/>
         <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Diagramm laden...&lt;/b&gt;&lt;p&gt;Dies lädt ein Diagramm aus einer Datei.&lt;/p&gt;</translation>
     </message>
@@ -51549,12 +51601,12 @@
         <translation>PyQt5 Kommandozeile</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4854"/>
+        <location filename="../Project/Project.py" line="4855"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das ausgewählte Versionskontrollsystem &lt;b&gt;{0}&lt;/b&gt; konnte nicht gefunden werden.&lt;br/&gt;Ignoriere Übersteuerung.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Plugindatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;br&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
@@ -51564,198 +51616,198 @@
         <translation>Eric6 Plugin</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>Create project management directory</source>
         <translation>Projektverwaltungsverzeichnis erstellen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Projektverzeichnis &lt;b&gt;{0}&lt;/b&gt; ist nicht beschreibbar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Alt+Ctrl+P</source>
         <comment>Project|Search Project File</comment>
         <translation>Alt+Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3978"/>
+        <location filename="../Project/Project.py" line="3979"/>
         <source>Search for a file in the project list of files.</source>
         <translation>Suche nach einer Datei in der Liste der Projektdateien.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3980"/>
+        <location filename="../Project/Project.py" line="3981"/>
         <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Projektdatei suchen&lt;/b&gt;&lt;p&gt;Dies sucht nach einer Datei in der Liste der Projektdateien.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File</source>
         <translation>Projektdatei suchen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File...</source>
         <translation>Projektdatei suchen...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5373"/>
+        <location filename="../Project/Project.py" line="5374"/>
         <source>Create Plugin Archives</source>
         <translation>Erzeuge Plugin Archive</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4253"/>
+        <location filename="../Project/Project.py" line="4254"/>
         <source>Create Plugin &amp;Archives</source>
         <translation>Erzeuge Plugin &amp;Archive</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (Snapshot)</source>
         <translation>Erzeuge Plugin Archive (Snapshot)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (&amp;Snapshot)</source>
         <translation>Erzeuge Plugin Archive (&amp;Snapshot)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5351"/>
+        <location filename="../Project/Project.py" line="5352"/>
         <source>Select package lists:</source>
         <translation>Wähle Paketlisten:</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Creating plugin archives...</source>
         <translation>Erzeuge Plugin Archive...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Abort</source>
         <translation>Abbruch</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>%v/%m Archives</source>
         <translation>%v/%m Archive</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5385"/>
+        <location filename="../Project/Project.py" line="5386"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geladen werden.&lt;br/&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5362"/>
+        <location filename="../Project/Project.py" line="5363"/>
         <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Keine Paketlistendateien (PKGLIST*) verfügbar oder ausgewählt. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5413"/>
+        <location filename="../Project/Project.py" line="5414"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the&apos;; initial_list&apos; line of the header.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; ist noch nicht bereit.&lt;/p&gt;&lt;p&gt;Bitte überarbeite sie und löschen die Zeile &apos;; initial_list&apos; des Dateikopfes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3963"/>
+        <location filename="../Project/Project.py" line="3964"/>
         <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neue Dateien suchen...&lt;/b&gt;&lt;p&gt;Dies sucht im Projektverzeichnis und in registrierten Unterverzeichnissen nach neuen Dateien (Quellen, *.ui, *.idl, *.proto).&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4021"/>
+        <location filename="../Project/Project.py" line="4022"/>
         <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dateitypzuordnungen...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Eingabe der Dateitypzuordnungen des Projektes. Diese Zuordnungen bestimmen den Typ (Quellen, Formulare, Schnittstellen, Protokolle oder Sonstige) über ein Dateinamenmuster. Sie werden genutzt, wenn eine Datei zum Projekt hinzugefügt oder wenn nach neuen Dateien gesucht wird.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die ausgewählte Übersetzungsdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die ausgewählte Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das ausgewählte Verzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>Create Makefile</source>
         <translation>Makefile erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die make Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden.&lt;br/&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>Execute Make</source>
         <translation>Make ausführen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4291"/>
+        <location filename="../Project/Project.py" line="4292"/>
         <source>&amp;Execute Make</source>
         <translation>&amp;Make ausführen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4295"/>
+        <location filename="../Project/Project.py" line="4296"/>
         <source>Perform a &apos;make&apos; run.</source>
         <translation>Führt eine &apos;make&apos; Lauf aus.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4297"/>
+        <location filename="../Project/Project.py" line="4298"/>
         <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a &apos;make&apos; run to rebuild the configured target.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Make ausführen&lt;/b&gt;&lt;p&gt;Die führt einen &apos;make&apos; Lauf aus, um das konfigurierte Ziel zu bauen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5755"/>
+        <location filename="../Project/Project.py" line="5756"/>
         <source>Test for Changes</source>
         <translation>Auf Änderungen prüfen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4305"/>
+        <location filename="../Project/Project.py" line="4306"/>
         <source>&amp;Test for Changes</source>
         <translation>Auf Änderungen &amp;prüfen</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4309"/>
+        <location filename="../Project/Project.py" line="4310"/>
         <source>Question &apos;make&apos;, if a rebuild is needed.</source>
         <translation>Fragt &apos;make&apos;, ob ein Neubau erforderlich ist.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4311"/>
+        <location filename="../Project/Project.py" line="4312"/>
         <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions &apos;make&apos;, if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Auf Änderungen prüfen&lt;/b&gt;&lt;p&gt;Dies fragt &apos;make&apos;, ob ein Neubau des konfigurierten Zieles erforderlich ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4356"/>
+        <location filename="../Project/Project.py" line="4357"/>
         <source>Make</source>
         <translation>Make</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5703"/>
+        <location filename="../Project/Project.py" line="5704"/>
         <source>The make process did not start.</source>
         <translation>Der make Prozess ist nicht gestartet.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5748"/>
+        <location filename="../Project/Project.py" line="5749"/>
         <source>The make process crashed.</source>
         <translation>Der make Prozess ist abgestürzt.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5758"/>
+        <location filename="../Project/Project.py" line="5759"/>
         <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es gibt Änderungen, die einen Neubau des konfigurierten Zieles &lt;b&gt;{0}&lt;/b&gt; erfordern.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5763"/>
+        <location filename="../Project/Project.py" line="5764"/>
         <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es gibt Änderungen, die einen Neubau des Standardzieles erfordern.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>The makefile contains errors.</source>
         <translation>Die make Datei enthält Fehler.</translation>
     </message>
@@ -51770,7 +51822,7 @@
         <translation>PySide2 Kommandozeile</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4344"/>
+        <location filename="../Project/Project.py" line="4345"/>
         <source>Project-T&amp;ools</source>
         <translation>Projekt&amp;werkzeuge</translation>
     </message>
@@ -51800,47 +51852,47 @@
         <translation>PySide6 Kommandozeile</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4242"/>
+        <location filename="../Project/Project.py" line="4243"/>
         <source>Create an initial PKGLIST file for an eric plugin.</source>
         <translation>Erzeugt eine erste PKGLIST-Datei für ein eric Plugin.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4244"/>
+        <location filename="../Project/Project.py" line="4245"/>
         <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Erzeuge Paketliste&lt;/b&gt;&lt;p&gt;Dies erzeugt eine erste Liste von Dateien, die in ein eric Pluginarchive einbezogen werden sollen. Die Liste wird aus der Projektdatei erzeugt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4258"/>
+        <location filename="../Project/Project.py" line="4259"/>
         <source>Create eric plugin archive files.</source>
         <translation>Erzeugt eric Plugin Archivdateien.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4260"/>
+        <location filename="../Project/Project.py" line="4261"/>
         <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Erzeuge Plugin Archive&lt;/b&gt;&lt;p&gt;Dies erzeugt eric Plugin Archivdateien mit den Dateien, die in einer PKGLIST*-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert, falls er nicht in der Paketlistendatei angegeben ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4275"/>
+        <location filename="../Project/Project.py" line="4276"/>
         <source>Create eric plugin archive files (snapshot releases).</source>
         <translation>Erzeugt eric Plugin Archivdateien (Snapshot Releases).</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4277"/>
+        <location filename="../Project/Project.py" line="4278"/>
         <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Erzeuge Plugin Archive (Snapshot)&lt;/b&gt;&lt;p&gt;Dies erzeugt eric Plugin Archivdateien mit den Dateien, die in der PKGLIST*-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert, falls er nicht in der Paketlistendatei angegeben ist. Der Versionseintrag des Hauptskriptes wird verändert, um ein Snapshot Release anzuzeigen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5441"/>
+        <location filename="../Project/Project.py" line="5442"/>
         <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die eric Plugin Archivdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5496"/>
+        <location filename="../Project/Project.py" line="5497"/>
         <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die eric Plugin Archivdateien wurden mit einigen Fehlern erzeugt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5504"/>
+        <location filename="../Project/Project.py" line="5505"/>
         <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die eric Plugin Archivdateien wurden erfolgreich erzeugt.&lt;/p&gt;</translation>
     </message>
@@ -53602,12 +53654,12 @@
 <context>
     <name>PropertiesDialog</name>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="113"/>
+        <location filename="../Project/PropertiesDialog.py" line="121"/>
         <source>The project is version controlled by &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation>Das Projekt steht unter Versionskontrolle durch &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="119"/>
+        <location filename="../Project/PropertiesDialog.py" line="127"/>
         <source>The project is not version controlled.</source>
         <translation>Das Projekt steht nicht unter Versionskontrolle.</translation>
     </message>
@@ -53626,12 +53678,12 @@
 &lt;p&gt;Falls das Projekt mit einem Versionskontrollsystem verwaltet wird, zeigt der „Zeige Repositoryinfo“-Knopf Informationen über das Repository an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="315"/>
+        <location filename="../Project/PropertiesDialog.ui" line="329"/>
         <source>Enter authors email</source>
         <translation>Gib die E-Mail-Adresse des Autors ein</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="318"/>
+        <location filename="../Project/PropertiesDialog.ui" line="332"/>
         <source>&lt;b&gt;Email&lt;/b&gt;
 &lt;p&gt;Enter the email address of the author&lt;/p&gt;</source>
         <translation>&lt;b&gt;E-Mail&lt;/b&gt;
@@ -53652,19 +53704,19 @@
 eine Dialoges auswählen, indem Sie den Knopf rechts drücken.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="339"/>
+        <location filename="../Project/PropertiesDialog.ui" line="353"/>
         <source>Enter description</source>
         <translation>Beschreibung eingeben</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="342"/>
+        <location filename="../Project/PropertiesDialog.ui" line="356"/>
         <source>&lt;b&gt;Description&lt;/b&gt;
 &lt;p&gt;Enter a short description for the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Beschreibung&lt;/b&gt;
 &lt;p&gt;Gib eine kurze Beschreibung des Projektes ein.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <location filename="../Project/PropertiesDialog.ui" line="298"/>
         <source>&amp;Author:</source>
         <translation>&amp;Autor:</translation>
     </message>
@@ -53718,24 +53770,24 @@
         <translation>&amp;Hauptdatei:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="326"/>
+        <location filename="../Project/PropertiesDialog.ui" line="340"/>
         <source>&amp;Description:</source>
         <translation>&amp;Beschreibung:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="294"/>
+        <location filename="../Project/PropertiesDialog.ui" line="308"/>
         <source>Enter authors name</source>
         <translation>Autorenname eingeben</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="297"/>
+        <location filename="../Project/PropertiesDialog.ui" line="311"/>
         <source>&lt;b&gt;Author&lt;/b&gt;
 &lt;p&gt;Enter the name of the author.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Autor&lt;/b&gt;
 &lt;p&gt;Gib den Autorennamen ein.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="305"/>
+        <location filename="../Project/PropertiesDialog.ui" line="319"/>
         <source>&amp;Email:</source>
         <translation>&amp;E-Mail:</translation>
     </message>
@@ -53764,17 +53816,17 @@
 &lt;p&gt;Gib die Versionsnummer ein.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="383"/>
+        <location filename="../Project/PropertiesDialog.ui" line="397"/>
         <source>Press to show information about the repository</source>
         <translation>Betätigen um Informationen über das Repository anzuzeigen</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="386"/>
+        <location filename="../Project/PropertiesDialog.ui" line="400"/>
         <source>Show &amp;Repository Info</source>
         <translation>Zeige &amp;Repositoryinfo</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="389"/>
+        <location filename="../Project/PropertiesDialog.ui" line="403"/>
         <source>Alt+R</source>
         <translation>Alt+R</translation>
     </message>
@@ -53794,7 +53846,7 @@
         <translation>Projekt&amp;typ:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="58"/>
+        <location filename="../Project/PropertiesDialog.py" line="66"/>
         <source>Source Files ({0});;All Files (*)</source>
         <translation>Quelldateien ({0});;Alle Dateien (*)</translation>
     </message>
@@ -53865,12 +53917,12 @@
         <translation>Windows/DOS</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="358"/>
+        <location filename="../Project/PropertiesDialog.ui" line="372"/>
         <source>Select to create a version controlled project</source>
         <translation>Auswählen, um ein Projekt mit Versionskontrolle zu erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="361"/>
+        <location filename="../Project/PropertiesDialog.ui" line="375"/>
         <source>Version Controlled Project</source>
         <translation>Projekt mit Versionskontrolle</translation>
     </message>
@@ -53889,6 +53941,21 @@
         <source>Press to open a dialog to enter the &apos;make&apos; parameters</source>
         <translation>Drücken, um einen Dialog zur Eingabe der &apos;make&apos; Parameter zu öffnen</translation>
     </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <source>Docstring Style:</source>
+        <translation>Docstring Stil:</translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="291"/>
+        <source>Select the docstring style for the project</source>
+        <translation>Wähle den für das Projekt zu verwendenden Stil für Docstrings</translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.py" line="50"/>
+        <source>None</source>
+        <translation>Keiner</translation>
+    </message>
 </context>
 <context>
     <name>ProtobufPage</name>
@@ -83748,8 +83815,8 @@
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserView.py" line="666"/>
-        <source>Open Link in New Tab	Ctrl+LMB</source>
-        <translation>Link in neuem Fenster öffnen	Strg+LMK</translation>
+        <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source>
+        <translation>Link in neuem Fenster öffnen<byte value="x9"/>Strg+LMK</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserView.py" line="672"/>
--- a/eric6/i18n/eric6_empty.ts	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/i18n/eric6_empty.ts	Fri Jan 22 16:48:43 2021 +0100
@@ -8459,7 +8459,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="86"/>
         <source>docstring summary does not end with a period</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8494,7 +8494,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
         <source>docstring summary is not followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8504,132 +8504,132 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
         <source>private function/method is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="76"/>
         <source>private class is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="77"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="80"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
         <source>trailing quotes of docstring not on separate line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="88"/>
         <source>docstring summary does not start with &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="87"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="90"/>
         <source>docstring does not contain a @return line but function/method returns something</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="91"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="94"/>
         <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="103"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="106"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="109"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <source>docstring contains too many @param/@keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="112"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="115"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="118"/>
         <source>class docstring is preceded by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="117"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="120"/>
         <source>class docstring is followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="119"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="122"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
         <source>function/method docstring is followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="131"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="134"/>
         <source>docstring does not contain a @exception line but function/method raises an exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="135"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="138"/>
         <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="158"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="161"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="139"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="142"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="145"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="148"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <source>docstring does not contain a @signal line but class defines signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="151"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="154"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="157"/>
         <source>documented signal &apos;{0}&apos; is not defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="75"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="78"/>
         <source>class docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8644,15 +8644,43 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="95"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="98"/>
         <source>docstring does not contain a @yield line but function/method yields something</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="99"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="102"/>
         <source>docstring contains a @yield line but function/method doesn&apos;t yield anything</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <source>function docstring still contains some placeholders</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>DocstringGenerator</name>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="42"/>
+        <source>Eric</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="44"/>
+        <source>NumPy</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="46"/>
+        <source>Google</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="48"/>
+        <source>Sphinx</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DotDesktopListSelectionDialog</name>
@@ -10839,930 +10867,940 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3110"/>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
         <source>Open File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="379"/>
+        <location filename="../QScintilla/Editor.py" line="381"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="468"/>
+        <location filename="../QScintilla/Editor.py" line="470"/>
         <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="783"/>
+        <location filename="../QScintilla/Editor.py" line="785"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="786"/>
+        <location filename="../QScintilla/Editor.py" line="788"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="789"/>
+        <location filename="../QScintilla/Editor.py" line="791"/>
         <source>Revert to last saved state</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="793"/>
+        <location filename="../QScintilla/Editor.py" line="795"/>
         <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="796"/>
+        <location filename="../QScintilla/Editor.py" line="798"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="799"/>
+        <location filename="../QScintilla/Editor.py" line="801"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="807"/>
+        <location filename="../QScintilla/Editor.py" line="809"/>
         <source>Indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="810"/>
+        <location filename="../QScintilla/Editor.py" line="812"/>
         <source>Unindent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="813"/>
+        <location filename="../QScintilla/Editor.py" line="815"/>
         <source>Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="816"/>
+        <location filename="../QScintilla/Editor.py" line="818"/>
         <source>Uncomment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Stream Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Box Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="826"/>
-        <source>Select to brace</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="828"/>
+        <source>Select to brace</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="829"/>
+        <location filename="../QScintilla/Editor.py" line="831"/>
         <source>Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7881"/>
+        <location filename="../QScintilla/Editor.py" line="7905"/>
         <source>Check spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="837"/>
+        <location filename="../QScintilla/Editor.py" line="839"/>
         <source>Check spelling of selection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="841"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Remove from dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="847"/>
+        <location filename="../QScintilla/Editor.py" line="853"/>
         <source>Shorten empty lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="854"/>
+        <location filename="../QScintilla/Editor.py" line="860"/>
         <source>Use Monospaced Font</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="859"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Autosave enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="869"/>
         <source>Typing aids enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="876"/>
         <source>Automatic Completion enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="878"/>
+        <location filename="../QScintilla/Editor.py" line="884"/>
         <source>Calltip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
+        <location filename="../QScintilla/Editor.py" line="900"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="897"/>
+        <location filename="../QScintilla/Editor.py" line="903"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="902"/>
-        <source>Close</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="908"/>
-        <source>Save</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="911"/>
-        <source>Save As...</source>
+        <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="914"/>
-        <source>Save Copy...</source>
+        <source>Save</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="917"/>
+        <source>Save As...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="920"/>
+        <source>Save Copy...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="926"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
+        <location filename="../QScintilla/Editor.py" line="930"/>
         <source>Print Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="933"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="950"/>
-        <source>Complete</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="956"/>
+        <source>Complete</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="962"/>
         <source>Complete from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="958"/>
+        <location filename="../QScintilla/Editor.py" line="964"/>
         <source>Complete from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="960"/>
+        <location filename="../QScintilla/Editor.py" line="966"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="974"/>
+        <location filename="../QScintilla/Editor.py" line="980"/>
         <source>Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="984"/>
+        <location filename="../QScintilla/Editor.py" line="990"/>
         <source>Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="994"/>
+        <location filename="../QScintilla/Editor.py" line="1000"/>
         <source>Show</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="996"/>
-        <source>Code metrics...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="997"/>
-        <source>Code coverage...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="999"/>
-        <source>Show code coverage annotations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1002"/>
-        <source>Hide code coverage annotations</source>
+        <source>Code metrics...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1003"/>
+        <source>Code coverage...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1005"/>
+        <source>Show code coverage annotations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1008"/>
+        <source>Hide code coverage annotations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1011"/>
         <source>Profile data...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
-        <source>Diagrams</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1020"/>
-        <source>Class Diagram...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1022"/>
-        <source>Package Diagram...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1024"/>
-        <source>Imports Diagram...</source>
+        <source>Diagrams</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1026"/>
-        <source>Application Diagram...</source>
+        <source>Class Diagram...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1028"/>
+        <source>Package Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1030"/>
+        <source>Imports Diagram...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1032"/>
+        <source>Application Diagram...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1036"/>
         <source>Load Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1044"/>
+        <location filename="../QScintilla/Editor.py" line="1050"/>
         <source>Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1177"/>
+        <location filename="../QScintilla/Editor.py" line="1183"/>
         <source>No Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1073"/>
+        <location filename="../QScintilla/Editor.py" line="1079"/>
         <source>Guessed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1413"/>
+        <location filename="../QScintilla/Editor.py" line="1419"/>
         <source>Alternatives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1093"/>
+        <location filename="../QScintilla/Editor.py" line="1099"/>
         <source>Encodings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1115"/>
+        <location filename="../QScintilla/Editor.py" line="1121"/>
         <source>Re-Open With Encoding</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1134"/>
+        <location filename="../QScintilla/Editor.py" line="1140"/>
         <source>End-of-Line Type</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1138"/>
+        <location filename="../QScintilla/Editor.py" line="1144"/>
         <source>Unix</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1145"/>
+        <location filename="../QScintilla/Editor.py" line="1151"/>
         <source>Windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1152"/>
+        <location filename="../QScintilla/Editor.py" line="1158"/>
         <source>Macintosh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1202"/>
+        <location filename="../QScintilla/Editor.py" line="1208"/>
         <source>Export as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1224"/>
-        <source>Toggle bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1226"/>
-        <source>Next bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1228"/>
-        <source>Previous bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1230"/>
+        <source>Toggle bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1232"/>
+        <source>Next bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1234"/>
+        <source>Previous bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1236"/>
         <source>Clear all bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1239"/>
+        <location filename="../QScintilla/Editor.py" line="1245"/>
         <source>Toggle breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1241"/>
+        <location filename="../QScintilla/Editor.py" line="1247"/>
         <source>Toggle temporary breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1244"/>
+        <location filename="../QScintilla/Editor.py" line="1250"/>
         <source>Edit breakpoint...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5613"/>
+        <location filename="../QScintilla/Editor.py" line="5626"/>
         <source>Enable breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1249"/>
+        <location filename="../QScintilla/Editor.py" line="1255"/>
         <source>Next breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1251"/>
+        <location filename="../QScintilla/Editor.py" line="1257"/>
         <source>Previous breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1256"/>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
         <source>Clear all breakpoints</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1304"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Goto syntax error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1314"/>
         <source>Show syntax error message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1313"/>
+        <location filename="../QScintilla/Editor.py" line="1319"/>
         <source>Clear syntax error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1318"/>
+        <location filename="../QScintilla/Editor.py" line="1324"/>
         <source>Next warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1322"/>
+        <location filename="../QScintilla/Editor.py" line="1328"/>
         <source>Previous warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1326"/>
+        <location filename="../QScintilla/Editor.py" line="1332"/>
         <source>Show warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1330"/>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
         <source>Clear warnings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1335"/>
+        <location filename="../QScintilla/Editor.py" line="1341"/>
         <source>Next uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1339"/>
+        <location filename="../QScintilla/Editor.py" line="1345"/>
         <source>Previous uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1344"/>
+        <location filename="../QScintilla/Editor.py" line="1350"/>
         <source>Next task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1348"/>
+        <location filename="../QScintilla/Editor.py" line="1354"/>
         <source>Previous task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1353"/>
+        <location filename="../QScintilla/Editor.py" line="1359"/>
         <source>Next change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1357"/>
+        <location filename="../QScintilla/Editor.py" line="1363"/>
         <source>Previous change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
         <source>Export source</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1390"/>
+        <location filename="../QScintilla/Editor.py" line="1396"/>
         <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
         <source>No export format given. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1409"/>
+        <location filename="../QScintilla/Editor.py" line="1415"/>
         <source>Alternatives ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
         <source>Pygments Lexer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>Modification of Read Only file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>You are attempting to change a read only file. Please save to a different file first.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2675"/>
+        <location filename="../QScintilla/Editor.py" line="2681"/>
         <source>Printing...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2692"/>
+        <location filename="../QScintilla/Editor.py" line="2698"/>
         <source>Printing completed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2694"/>
+        <location filename="../QScintilla/Editor.py" line="2700"/>
         <source>Error while printing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2697"/>
+        <location filename="../QScintilla/Editor.py" line="2703"/>
         <source>Printing aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <source>File Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <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="../QScintilla/Editor.py" line="3110"/>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
         <source>Save File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3234"/>
+        <location filename="../QScintilla/Editor.py" line="3240"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
         <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="5184"/>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5184"/>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
         <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="5616"/>
+        <location filename="../QScintilla/Editor.py" line="5629"/>
         <source>Disable breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <source>Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <source>Please select a coverage file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>Show Code Coverage Annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6047"/>
+        <location filename="../QScintilla/Editor.py" line="6060"/>
         <source>All lines have been covered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>There is no coverage file available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Profile Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Please select a profile file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <source>Syntax Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <source>No syntax error message available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
         <source>Warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6607"/>
+        <location filename="../QScintilla/Editor.py" line="6620"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6610"/>
+        <location filename="../QScintilla/Editor.py" line="6623"/>
         <source>Warning: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6617"/>
+        <location filename="../QScintilla/Editor.py" line="6630"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Macro Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Select a macro name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6750"/>
-        <source>Load macro file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6792"/>
-        <source>Macro files (*.macro)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6772"/>
-        <source>Error loading macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6763"/>
+        <source>Load macro file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
+        <source>Macro files (*.macro)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <source>Error loading macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6776"/>
         <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="6772"/>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
         <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="6792"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Save macro file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
         <source>Save macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
         <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="6824"/>
-        <source>Error saving macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6824"/>
-        <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="6837"/>
-        <source>Start Macro Recording</source>
+        <source>Error saving macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="6837"/>
+        <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="6850"/>
+        <source>Start Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6850"/>
         <source>Macro recording is already active. Start new?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Enter name of the macro:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7029"/>
+        <location filename="../QScintilla/Editor.py" line="7042"/>
         <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="7033"/>
+        <location filename="../QScintilla/Editor.py" line="7046"/>
         <source>File changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7213"/>
+        <location filename="../QScintilla/Editor.py" line="7237"/>
         <source>{0} (ro)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <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="7375"/>
+        <location filename="../QScintilla/Editor.py" line="7399"/>
         <source>Resources</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7401"/>
         <source>Add file...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7379"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7405"/>
         <source>Add aliased file...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7384"/>
+        <location filename="../QScintilla/Editor.py" line="7408"/>
         <source>Add localized resource...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7388"/>
+        <location filename="../QScintilla/Editor.py" line="7412"/>
         <source>Add resource frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7407"/>
+        <location filename="../QScintilla/Editor.py" line="7431"/>
         <source>Add file resource</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7423"/>
+        <location filename="../QScintilla/Editor.py" line="7447"/>
         <source>Add file resources</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add aliased file resource</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Package Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Include class attributes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
         <source>Imports Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
         <source>Include imports from external modules?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Application Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Include module names?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7884"/>
+        <location filename="../QScintilla/Editor.py" line="7908"/>
         <source>Add to dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7886"/>
+        <location filename="../QScintilla/Editor.py" line="7910"/>
         <source>Ignore All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8391"/>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8391"/>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="953"/>
+        <location filename="../QScintilla/Editor.py" line="959"/>
         <source>Clear Completions Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="880"/>
+        <location filename="../QScintilla/Editor.py" line="886"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1361"/>
+        <location filename="../QScintilla/Editor.py" line="1367"/>
         <source>Clear changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="803"/>
+        <location filename="../QScintilla/Editor.py" line="805"/>
         <source>Execute Selection In Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
+        <location filename="../QScintilla/Editor.py" line="1271"/>
         <source>Toggle all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1270"/>
+        <location filename="../QScintilla/Editor.py" line="1276"/>
         <source>Toggle all folds (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1275"/>
-        <source>Toggle current fold</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1281"/>
+        <source>Toggle current fold</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1287"/>
         <source>Expand (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
-        <source>Collapse (including children)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1292"/>
+        <source>Collapse (including children)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1298"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1173"/>
+        <location filename="../QScintilla/Editor.py" line="1179"/>
         <source>Spell Check Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7023"/>
+        <location filename="../QScintilla/Editor.py" line="7036"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="849"/>
+        <source>Insert Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorAPIsPage</name>
@@ -13016,205 +13054,220 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="89"/>
+        <source>Tab width:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="99"/>
+        <source>Move to set the tab width.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="121"/>
+        <source>Displays the selected tab width.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="137"/>
+        <source>Indentation width:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="147"/>
+        <source>Move to set the indentation width.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="169"/>
+        <source>Displays the selected indentation width.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="45"/>
-        <source>Tab width:</source>
+        <source>Select whether autoindentation shall be enabled</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="48"/>
+        <source>Auto indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="55"/>
-        <source>Move to set the tab width.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="77"/>
-        <source>Displays the selected tab width.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="93"/>
-        <source>Indentation width:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="103"/>
-        <source>Move to set the indentation width.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="125"/>
-        <source>Displays the selected indentation width.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="236"/>
-        <source>Select whether autoindentation shall be enabled</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="239"/>
-        <source>Auto indentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="246"/>
         <source>Select whether tab characters are used for indentations.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="249"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="58"/>
         <source>Use tabs for indentations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="256"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="65"/>
         <source>Select whether pressing the tab key indents.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="259"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="68"/>
         <source>Tab key indents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="266"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="75"/>
         <source>Select whether tabs shall be converted upon opening the file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="269"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="78"/>
         <source>Convert tabs upon open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="371"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="373"/>
         <source>Comments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="377"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="379"/>
         <source>Select to insert the comment sign at column 0</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="380"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="382"/>
         <source>&lt;b&gt;Insert comment at column 0&lt;/b&gt;&lt;p&gt;Select to insert the comment sign at column 0. Otherwise, the comment sign is inserted at the first non-whitespace position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="383"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="385"/>
         <source>Insert comment at column 0</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="393"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="424"/>
         <source>Virtual Space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="399"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="430"/>
         <source>Virtual space is the space after the last character of a line. It is not allocated unless some text is entered or copied into it. Usage of virtual space can be configured with these selections.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="409"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="440"/>
         <source>Select to enable a rectangular selection to extend into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="412"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="443"/>
         <source>Selection may access virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="419"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="450"/>
         <source>Select to allow the cursor to be moved into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="422"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="453"/>
         <source>Cursor can move into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="158"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="206"/>
         <source>Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="163"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="211"/>
         <source>Tab Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="168"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="216"/>
         <source>Indent Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="196"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="244"/>
         <source>Press to add a language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="203"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="251"/>
         <source>Press to delete the selected language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="210"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="258"/>
         <source>Press to edit the selected language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Tab and Indent Override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Shall the selected entries really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="281"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="283"/>
         <source>Select to enable the source code outline view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="284"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="286"/>
         <source>Source Code Outline</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="293"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="295"/>
         <source>Default Width:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="320"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="302"/>
         <source>Enter the default width of the source code outline view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="313"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="321"/>
         <source>Width Step Size:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="339"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="328"/>
         <source>Enter the amount of pixels the width of the outline should be increased or decreased</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="358"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="360"/>
         <source>Select to show the source code encoding</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="361"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="363"/>
         <source>Show source file encoding</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="395"/>
+        <source>Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="401"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="414"/>
+        <source>Select the docstring style to be used</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorHighlightersPage</name>
@@ -49798,17 +49851,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1627"/>
+        <location filename="../Preferences/__init__.py" line="1629"/>
         <source>Export Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Import Preferences</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50359,1155 +50412,1155 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>Read project file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>Save project file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>Read user project properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>Save user project properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>Read project session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1244"/>
+        <location filename="../Project/Project.py" line="1245"/>
         <source>Please save the project first.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>Save project session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>Delete project session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>Read tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>Save tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>Read debugger properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>Save debugger properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>Delete debugger properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>Add Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>You have to specify a translation pattern first.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>Delete translation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1677"/>
+        <location filename="../Project/Project.py" line="1678"/>
         <source>Add file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1741"/>
+        <location filename="../Project/Project.py" line="1742"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1664"/>
+        <location filename="../Project/Project.py" line="1665"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1809"/>
+        <location filename="../Project/Project.py" line="1810"/>
         <source>The target directory must not be empty.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>Add directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1708"/>
+        <location filename="../Project/Project.py" line="1709"/>
         <source>&lt;p&gt;The source directory doesn&apos;t contain any files belonging to the selected category.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1723"/>
+        <location filename="../Project/Project.py" line="1724"/>
         <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>The source directory must not be empty.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1957"/>
+        <location filename="../Project/Project.py" line="1958"/>
         <source>Rename file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>Rename File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>Delete file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>Delete directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>Create project directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>Create project management directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>Create main script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>&lt;p&gt;The mainscript &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>New Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2476"/>
+        <location filename="../Project/Project.py" line="2477"/>
         <source>Add existing files to the project?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>Select Version Control System</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2603"/>
+        <location filename="../Project/Project.py" line="2604"/>
         <source>Would you like to edit the VCS command options?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>New project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2546"/>
+        <location filename="../Project/Project.py" line="2547"/>
         <source>Shall the project file be added to the repository?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2582"/>
+        <location filename="../Project/Project.py" line="2583"/>
         <source>None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2575"/>
+        <location filename="../Project/Project.py" line="2576"/>
         <source>Select version control system for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Translation Pattern</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Enter the path pattern for translation files (use &apos;%language%&apos; in place of the language code):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>Open project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3120"/>
+        <location filename="../Project/Project.py" line="3121"/>
         <source>Project Files (*.e4p)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save project as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>Save File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>Close Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>The current project has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>Syntax errors detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>The project contains %n file(s) with syntax errors.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>&amp;New...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3850"/>
-        <source>Generate a new project</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3851"/>
+        <source>Generate a new project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3852"/>
         <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>&amp;Open...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3864"/>
-        <source>Open an existing project</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3865"/>
+        <source>Open an existing project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3866"/>
         <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>Close project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>&amp;Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3876"/>
-        <source>Close the current project</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3877"/>
+        <source>Close the current project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3878"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3884"/>
+        <location filename="../Project/Project.py" line="3885"/>
         <source>Save project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>&amp;Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3888"/>
-        <source>Save the current project</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3889"/>
+        <source>Save the current project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3890"/>
         <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save &amp;as...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3900"/>
+        <location filename="../Project/Project.py" line="3901"/>
         <source>Save the current project to a new file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3902"/>
+        <location filename="../Project/Project.py" line="3903"/>
         <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add files to project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add &amp;files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3916"/>
+        <location filename="../Project/Project.py" line="3917"/>
         <source>Add files to the current project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3918"/>
+        <location filename="../Project/Project.py" line="3919"/>
         <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory to project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3932"/>
+        <location filename="../Project/Project.py" line="3933"/>
         <source>Add a directory to the current project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3934"/>
+        <location filename="../Project/Project.py" line="3935"/>
         <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add translation to project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add &amp;translation...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3947"/>
+        <location filename="../Project/Project.py" line="3948"/>
         <source>Add a translation to the current project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3949"/>
+        <location filename="../Project/Project.py" line="3950"/>
         <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Search new files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Searc&amp;h new files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3961"/>
+        <location filename="../Project/Project.py" line="3962"/>
         <source>Search new files in the project directory.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Alt+Ctrl+P</source>
         <comment>Project|Search Project File</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3978"/>
+        <location filename="../Project/Project.py" line="3979"/>
         <source>Search for a file in the project list of files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3980"/>
+        <location filename="../Project/Project.py" line="3981"/>
         <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>Project properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>&amp;Properties...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3992"/>
-        <source>Show the project properties</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3993"/>
+        <source>Show the project properties</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3994"/>
         <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>User project properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>&amp;User Properties...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4005"/>
+        <location filename="../Project/Project.py" line="4006"/>
         <source>Show the user specific project properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4007"/>
+        <location filename="../Project/Project.py" line="4008"/>
         <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4019"/>
+        <location filename="../Project/Project.py" line="4020"/>
         <source>Show the project filetype associations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4037"/>
+        <location filename="../Project/Project.py" line="4038"/>
         <source>Show the project lexer associations (overriding defaults)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4039"/>
+        <location filename="../Project/Project.py" line="4040"/>
         <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger &amp;Properties...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4055"/>
-        <source>Show the debugger properties</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4056"/>
+        <source>Show the debugger properties</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4057"/>
         <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>Load</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>&amp;Load</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4068"/>
-        <source>Load the debugger properties</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4069"/>
+        <source>Load the debugger properties</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4070"/>
         <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4080"/>
-        <source>Save the debugger properties</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4081"/>
+        <source>Save the debugger properties</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4082"/>
         <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>&amp;Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4092"/>
-        <source>Delete the debugger properties</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4093"/>
+        <source>Delete the debugger properties</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4094"/>
         <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>Reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>&amp;Reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4105"/>
-        <source>Reset the debugger properties</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4106"/>
+        <source>Reset the debugger properties</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4107"/>
         <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4115"/>
+        <location filename="../Project/Project.py" line="4116"/>
         <source>Load session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4119"/>
-        <source>Load the projects session file.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4120"/>
+        <source>Load the projects session file.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4121"/>
         <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4133"/>
+        <location filename="../Project/Project.py" line="4134"/>
         <source>Save session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4137"/>
-        <source>Save the projects session file.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4138"/>
+        <source>Save the projects session file.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4139"/>
         <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4151"/>
+        <location filename="../Project/Project.py" line="4152"/>
         <source>Delete session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4155"/>
-        <source>Delete the projects session file.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4156"/>
+        <source>Delete the projects session file.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4157"/>
         <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>Code Metrics</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>&amp;Code Metrics...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4169"/>
+        <location filename="../Project/Project.py" line="4170"/>
         <source>Show some code metrics for the project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4171"/>
+        <location filename="../Project/Project.py" line="4172"/>
         <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Python Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Code Co&amp;verage...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4183"/>
+        <location filename="../Project/Project.py" line="4184"/>
         <source>Show code coverage information for the project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4185"/>
+        <location filename="../Project/Project.py" line="4186"/>
         <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Profile Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4193"/>
+        <location filename="../Project/Project.py" line="4194"/>
         <source>&amp;Profile Data...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4197"/>
+        <location filename="../Project/Project.py" line="4198"/>
         <source>Show profiling data for the project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4199"/>
+        <location filename="../Project/Project.py" line="4200"/>
         <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Application Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4208"/>
+        <location filename="../Project/Project.py" line="4209"/>
         <source>&amp;Application Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4212"/>
+        <location filename="../Project/Project.py" line="4213"/>
         <source>Show a diagram of the project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4214"/>
+        <location filename="../Project/Project.py" line="4215"/>
         <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>Load Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>&amp;Load Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4226"/>
+        <location filename="../Project/Project.py" line="4227"/>
         <source>Load a diagram from file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4228"/>
+        <location filename="../Project/Project.py" line="4229"/>
         <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>Create Package List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4237"/>
+        <location filename="../Project/Project.py" line="4238"/>
         <source>Create &amp;Package List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>Create Plugin Archive</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4339"/>
-        <source>&amp;Project</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4340"/>
+        <source>&amp;Project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4341"/>
         <source>Open &amp;Recent Projects</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4345"/>
+        <location filename="../Project/Project.py" line="4346"/>
         <source>&amp;Version Control</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4349"/>
+        <location filename="../Project/Project.py" line="4350"/>
         <source>Chec&amp;k</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4351"/>
-        <source>Sho&amp;w</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4352"/>
-        <source>&amp;Diagrams</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4341"/>
-        <source>Session</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4354"/>
-        <source>Source &amp;Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4342"/>
-        <source>Debugger</source>
+        <source>Sho&amp;w</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="4353"/>
+        <source>&amp;Diagrams</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4342"/>
+        <source>Session</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4355"/>
+        <source>Source &amp;Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4343"/>
+        <source>Debugger</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4354"/>
         <source>Pac&amp;kagers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4479"/>
+        <location filename="../Project/Project.py" line="4480"/>
         <source>Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4545"/>
+        <location filename="../Project/Project.py" line="4546"/>
         <source>&amp;Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>Search New Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>There were no new files found to be added.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>Version Control System</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4854"/>
+        <location filename="../Project/Project.py" line="4855"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4996"/>
+        <location filename="../Project/Project.py" line="4997"/>
         <source>Coverage Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5046"/>
+        <location filename="../Project/Project.py" line="5047"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Please select a coverage file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Please select a profile file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Include module names?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5267"/>
+        <location filename="../Project/Project.py" line="5268"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5337"/>
+        <location filename="../Project/Project.py" line="5338"/>
         <source>The project does not have a main script defined. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5477"/>
+        <location filename="../Project/Project.py" line="5478"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5548"/>
+        <location filename="../Project/Project.py" line="5549"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5373"/>
+        <location filename="../Project/Project.py" line="5374"/>
         <source>Create Plugin Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4253"/>
+        <location filename="../Project/Project.py" line="4254"/>
         <source>Create Plugin &amp;Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (Snapshot)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (&amp;Snapshot)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5351"/>
+        <location filename="../Project/Project.py" line="5352"/>
         <source>Select package lists:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Creating plugin archives...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Abort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>%v/%m Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5385"/>
+        <location filename="../Project/Project.py" line="5386"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5362"/>
+        <location filename="../Project/Project.py" line="5363"/>
         <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5413"/>
+        <location filename="../Project/Project.py" line="5414"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the&apos;; initial_list&apos; line of the header.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3963"/>
+        <location filename="../Project/Project.py" line="3964"/>
         <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4021"/>
+        <location filename="../Project/Project.py" line="4022"/>
         <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>Create Makefile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>Execute Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4291"/>
+        <location filename="../Project/Project.py" line="4292"/>
         <source>&amp;Execute Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4295"/>
+        <location filename="../Project/Project.py" line="4296"/>
         <source>Perform a &apos;make&apos; run.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4297"/>
+        <location filename="../Project/Project.py" line="4298"/>
         <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a &apos;make&apos; run to rebuild the configured target.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5755"/>
+        <location filename="../Project/Project.py" line="5756"/>
         <source>Test for Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4305"/>
+        <location filename="../Project/Project.py" line="4306"/>
         <source>&amp;Test for Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4309"/>
+        <location filename="../Project/Project.py" line="4310"/>
         <source>Question &apos;make&apos;, if a rebuild is needed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4311"/>
+        <location filename="../Project/Project.py" line="4312"/>
         <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions &apos;make&apos;, if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4356"/>
+        <location filename="../Project/Project.py" line="4357"/>
         <source>Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5703"/>
+        <location filename="../Project/Project.py" line="5704"/>
         <source>The make process did not start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5748"/>
+        <location filename="../Project/Project.py" line="5749"/>
         <source>The make process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5758"/>
+        <location filename="../Project/Project.py" line="5759"/>
         <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5763"/>
+        <location filename="../Project/Project.py" line="5764"/>
         <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>The makefile contains errors.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51522,7 +51575,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4344"/>
+        <location filename="../Project/Project.py" line="4345"/>
         <source>Project-T&amp;ools</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51552,47 +51605,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4242"/>
+        <location filename="../Project/Project.py" line="4243"/>
         <source>Create an initial PKGLIST file for an eric plugin.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4244"/>
+        <location filename="../Project/Project.py" line="4245"/>
         <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4258"/>
+        <location filename="../Project/Project.py" line="4259"/>
         <source>Create eric plugin archive files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4260"/>
+        <location filename="../Project/Project.py" line="4261"/>
         <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4275"/>
+        <location filename="../Project/Project.py" line="4276"/>
         <source>Create eric plugin archive files (snapshot releases).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4277"/>
+        <location filename="../Project/Project.py" line="4278"/>
         <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5441"/>
+        <location filename="../Project/Project.py" line="5442"/>
         <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5496"/>
+        <location filename="../Project/Project.py" line="5497"/>
         <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5504"/>
+        <location filename="../Project/Project.py" line="5505"/>
         <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53359,12 +53412,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="326"/>
+        <location filename="../Project/PropertiesDialog.ui" line="340"/>
         <source>&amp;Description:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="339"/>
+        <location filename="../Project/PropertiesDialog.ui" line="353"/>
         <source>Enter description</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53538,80 +53591,80 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <location filename="../Project/PropertiesDialog.ui" line="298"/>
         <source>&amp;Author:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="294"/>
+        <location filename="../Project/PropertiesDialog.ui" line="308"/>
         <source>Enter authors name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="297"/>
+        <location filename="../Project/PropertiesDialog.ui" line="311"/>
         <source>&lt;b&gt;Author&lt;/b&gt;
 &lt;p&gt;Enter the name of the author.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="305"/>
+        <location filename="../Project/PropertiesDialog.ui" line="319"/>
         <source>&amp;Email:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="315"/>
+        <location filename="../Project/PropertiesDialog.ui" line="329"/>
         <source>Enter authors email</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="318"/>
+        <location filename="../Project/PropertiesDialog.ui" line="332"/>
         <source>&lt;b&gt;Email&lt;/b&gt;
 &lt;p&gt;Enter the email address of the author&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="342"/>
+        <location filename="../Project/PropertiesDialog.ui" line="356"/>
         <source>&lt;b&gt;Description&lt;/b&gt;
 &lt;p&gt;Enter a short description for the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="358"/>
+        <location filename="../Project/PropertiesDialog.ui" line="372"/>
         <source>Select to create a version controlled project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="361"/>
+        <location filename="../Project/PropertiesDialog.ui" line="375"/>
         <source>Version Controlled Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="383"/>
+        <location filename="../Project/PropertiesDialog.ui" line="397"/>
         <source>Press to show information about the repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="386"/>
+        <location filename="../Project/PropertiesDialog.ui" line="400"/>
         <source>Show &amp;Repository Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="389"/>
+        <location filename="../Project/PropertiesDialog.ui" line="403"/>
         <source>Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="58"/>
+        <location filename="../Project/PropertiesDialog.py" line="66"/>
         <source>Source Files ({0});;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="113"/>
+        <location filename="../Project/PropertiesDialog.py" line="121"/>
         <source>The project is version controlled by &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="119"/>
+        <location filename="../Project/PropertiesDialog.py" line="127"/>
         <source>The project is not version controlled.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53630,6 +53683,21 @@
         <source>Press to open a dialog to enter the &apos;make&apos; parameters</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="291"/>
+        <source>Select the docstring style for the project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.py" line="50"/>
+        <source>None</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ProtobufPage</name>
--- a/eric6/i18n/eric6_en.ts	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/i18n/eric6_en.ts	Fri Jan 22 16:48:43 2021 +0100
@@ -8462,7 +8462,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="86"/>
         <source>docstring summary does not end with a period</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8497,7 +8497,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
         <source>docstring summary is not followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8507,92 +8507,92 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
         <source>private function/method is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="76"/>
         <source>private class is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="77"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="80"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
         <source>trailing quotes of docstring not on separate line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="87"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="90"/>
         <source>docstring does not contain a @return line but function/method returns something</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="91"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="94"/>
         <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="103"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="106"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="109"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <source>docstring contains too many @param/@keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="112"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="115"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="118"/>
         <source>class docstring is preceded by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="117"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="120"/>
         <source>class docstring is followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="119"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="122"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
         <source>function/method docstring is followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="131"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="134"/>
         <source>docstring does not contain a @exception line but function/method raises an exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="135"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="138"/>
         <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="158"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="161"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8602,42 +8602,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="88"/>
         <source>docstring summary does not start with &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="139"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="142"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="145"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="148"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <source>docstring does not contain a @signal line but class defines signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="151"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="154"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="157"/>
         <source>documented signal &apos;{0}&apos; is not defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="75"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="78"/>
         <source>class docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8652,15 +8652,43 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="95"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="98"/>
         <source>docstring does not contain a @yield line but function/method yields something</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="99"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="102"/>
         <source>docstring contains a @yield line but function/method doesn&apos;t yield anything</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <source>function docstring still contains some placeholders</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>DocstringGenerator</name>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="42"/>
+        <source>Eric</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="44"/>
+        <source>NumPy</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="46"/>
+        <source>Google</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="48"/>
+        <source>Sphinx</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DotDesktopListSelectionDialog</name>
@@ -10854,930 +10882,940 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3110"/>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
         <source>Open File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="379"/>
+        <location filename="../QScintilla/Editor.py" line="381"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="468"/>
+        <location filename="../QScintilla/Editor.py" line="470"/>
         <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="783"/>
+        <location filename="../QScintilla/Editor.py" line="785"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="786"/>
+        <location filename="../QScintilla/Editor.py" line="788"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="789"/>
+        <location filename="../QScintilla/Editor.py" line="791"/>
         <source>Revert to last saved state</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="793"/>
+        <location filename="../QScintilla/Editor.py" line="795"/>
         <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="796"/>
+        <location filename="../QScintilla/Editor.py" line="798"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="799"/>
+        <location filename="../QScintilla/Editor.py" line="801"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="807"/>
+        <location filename="../QScintilla/Editor.py" line="809"/>
         <source>Indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="810"/>
+        <location filename="../QScintilla/Editor.py" line="812"/>
         <source>Unindent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="813"/>
+        <location filename="../QScintilla/Editor.py" line="815"/>
         <source>Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="816"/>
+        <location filename="../QScintilla/Editor.py" line="818"/>
         <source>Uncomment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Stream Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Box Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="826"/>
-        <source>Select to brace</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="828"/>
+        <source>Select to brace</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="829"/>
+        <location filename="../QScintilla/Editor.py" line="831"/>
         <source>Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7881"/>
+        <location filename="../QScintilla/Editor.py" line="7905"/>
         <source>Check spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="837"/>
+        <location filename="../QScintilla/Editor.py" line="839"/>
         <source>Check spelling of selection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="841"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Remove from dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="847"/>
+        <location filename="../QScintilla/Editor.py" line="853"/>
         <source>Shorten empty lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="854"/>
+        <location filename="../QScintilla/Editor.py" line="860"/>
         <source>Use Monospaced Font</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="859"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Autosave enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="869"/>
         <source>Typing aids enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="902"/>
-        <source>Close</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="908"/>
+        <source>Close</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="914"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="911"/>
+        <location filename="../QScintilla/Editor.py" line="917"/>
         <source>Save As...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
+        <location filename="../QScintilla/Editor.py" line="930"/>
         <source>Print Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="933"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="956"/>
+        <location filename="../QScintilla/Editor.py" line="962"/>
         <source>Complete from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="958"/>
+        <location filename="../QScintilla/Editor.py" line="964"/>
         <source>Complete from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="960"/>
+        <location filename="../QScintilla/Editor.py" line="966"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="878"/>
+        <location filename="../QScintilla/Editor.py" line="884"/>
         <source>Calltip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="974"/>
+        <location filename="../QScintilla/Editor.py" line="980"/>
         <source>Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="994"/>
+        <location filename="../QScintilla/Editor.py" line="1000"/>
         <source>Show</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="996"/>
-        <source>Code metrics...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="997"/>
-        <source>Code coverage...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="999"/>
-        <source>Show code coverage annotations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1002"/>
-        <source>Hide code coverage annotations</source>
+        <source>Code metrics...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1003"/>
+        <source>Code coverage...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1005"/>
+        <source>Show code coverage annotations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1008"/>
+        <source>Hide code coverage annotations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1011"/>
         <source>Profile data...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
-        <source>Diagrams</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1020"/>
-        <source>Class Diagram...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1022"/>
-        <source>Package Diagram...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1024"/>
-        <source>Imports Diagram...</source>
+        <source>Diagrams</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1026"/>
+        <source>Class Diagram...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1028"/>
+        <source>Package Diagram...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1030"/>
+        <source>Imports Diagram...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1032"/>
         <source>Application Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1044"/>
+        <location filename="../QScintilla/Editor.py" line="1050"/>
         <source>Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1177"/>
+        <location filename="../QScintilla/Editor.py" line="1183"/>
         <source>No Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1073"/>
+        <location filename="../QScintilla/Editor.py" line="1079"/>
         <source>Guessed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1413"/>
+        <location filename="../QScintilla/Editor.py" line="1419"/>
         <source>Alternatives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1093"/>
+        <location filename="../QScintilla/Editor.py" line="1099"/>
         <source>Encodings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1134"/>
+        <location filename="../QScintilla/Editor.py" line="1140"/>
         <source>End-of-Line Type</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1138"/>
+        <location filename="../QScintilla/Editor.py" line="1144"/>
         <source>Unix</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1145"/>
+        <location filename="../QScintilla/Editor.py" line="1151"/>
         <source>Windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1152"/>
+        <location filename="../QScintilla/Editor.py" line="1158"/>
         <source>Macintosh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1202"/>
+        <location filename="../QScintilla/Editor.py" line="1208"/>
         <source>Export as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1224"/>
-        <source>Toggle bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1226"/>
-        <source>Next bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1228"/>
-        <source>Previous bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1230"/>
+        <source>Toggle bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1232"/>
+        <source>Next bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1234"/>
+        <source>Previous bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1236"/>
         <source>Clear all bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1239"/>
+        <location filename="../QScintilla/Editor.py" line="1245"/>
         <source>Toggle breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1241"/>
+        <location filename="../QScintilla/Editor.py" line="1247"/>
         <source>Toggle temporary breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1244"/>
+        <location filename="../QScintilla/Editor.py" line="1250"/>
         <source>Edit breakpoint...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5613"/>
+        <location filename="../QScintilla/Editor.py" line="5626"/>
         <source>Enable breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1249"/>
+        <location filename="../QScintilla/Editor.py" line="1255"/>
         <source>Next breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1251"/>
+        <location filename="../QScintilla/Editor.py" line="1257"/>
         <source>Previous breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1256"/>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
         <source>Clear all breakpoints</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1304"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Goto syntax error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1314"/>
         <source>Show syntax error message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1313"/>
+        <location filename="../QScintilla/Editor.py" line="1319"/>
         <source>Clear syntax error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1318"/>
+        <location filename="../QScintilla/Editor.py" line="1324"/>
         <source>Next warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1322"/>
+        <location filename="../QScintilla/Editor.py" line="1328"/>
         <source>Previous warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1326"/>
+        <location filename="../QScintilla/Editor.py" line="1332"/>
         <source>Show warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1330"/>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
         <source>Clear warnings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1335"/>
+        <location filename="../QScintilla/Editor.py" line="1341"/>
         <source>Next uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1339"/>
+        <location filename="../QScintilla/Editor.py" line="1345"/>
         <source>Previous uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1344"/>
+        <location filename="../QScintilla/Editor.py" line="1350"/>
         <source>Next task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1348"/>
+        <location filename="../QScintilla/Editor.py" line="1354"/>
         <source>Previous task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
         <source>Export source</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1390"/>
+        <location filename="../QScintilla/Editor.py" line="1396"/>
         <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
         <source>No export format given. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1409"/>
+        <location filename="../QScintilla/Editor.py" line="1415"/>
         <source>Alternatives ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
         <source>Pygments Lexer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>Modification of Read Only file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>You are attempting to change a read only file. Please save to a different file first.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2675"/>
+        <location filename="../QScintilla/Editor.py" line="2681"/>
         <source>Printing...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2692"/>
+        <location filename="../QScintilla/Editor.py" line="2698"/>
         <source>Printing completed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2694"/>
+        <location filename="../QScintilla/Editor.py" line="2700"/>
         <source>Error while printing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2697"/>
+        <location filename="../QScintilla/Editor.py" line="2703"/>
         <source>Printing aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <source>File Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <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="../QScintilla/Editor.py" line="3110"/>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
         <source>Save File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3234"/>
+        <location filename="../QScintilla/Editor.py" line="3240"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5616"/>
+        <location filename="../QScintilla/Editor.py" line="5629"/>
         <source>Disable breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <source>Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <source>Please select a coverage file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>Show Code Coverage Annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6047"/>
+        <location filename="../QScintilla/Editor.py" line="6060"/>
         <source>All lines have been covered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>There is no coverage file available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Profile Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Please select a profile file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <source>Syntax Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <source>No syntax error message available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Macro Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Select a macro name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6750"/>
-        <source>Load macro file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6792"/>
-        <source>Macro files (*.macro)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6772"/>
-        <source>Error loading macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6763"/>
+        <source>Load macro file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
+        <source>Macro files (*.macro)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <source>Error loading macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6776"/>
         <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="6772"/>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
         <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="6792"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Save macro file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
         <source>Save macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
         <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="6824"/>
-        <source>Error saving macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6824"/>
-        <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="6837"/>
-        <source>Start Macro Recording</source>
+        <source>Error saving macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="6837"/>
+        <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="6850"/>
+        <source>Start Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6850"/>
         <source>Macro recording is already active. Start new?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Enter name of the macro:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7033"/>
+        <location filename="../QScintilla/Editor.py" line="7046"/>
         <source>File changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7213"/>
+        <location filename="../QScintilla/Editor.py" line="7237"/>
         <source>{0} (ro)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <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="7375"/>
+        <location filename="../QScintilla/Editor.py" line="7399"/>
         <source>Resources</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7401"/>
         <source>Add file...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7379"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7405"/>
         <source>Add aliased file...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7384"/>
+        <location filename="../QScintilla/Editor.py" line="7408"/>
         <source>Add localized resource...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7388"/>
+        <location filename="../QScintilla/Editor.py" line="7412"/>
         <source>Add resource frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7407"/>
+        <location filename="../QScintilla/Editor.py" line="7431"/>
         <source>Add file resource</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7423"/>
+        <location filename="../QScintilla/Editor.py" line="7447"/>
         <source>Add file resources</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add aliased file resource</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Package Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Include class attributes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
         <source>Imports Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
         <source>Include imports from external modules?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Application Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Include module names?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7884"/>
+        <location filename="../QScintilla/Editor.py" line="7908"/>
         <source>Add to dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7886"/>
+        <location filename="../QScintilla/Editor.py" line="7910"/>
         <source>Ignore All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6610"/>
+        <location filename="../QScintilla/Editor.py" line="6623"/>
         <source>Warning: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6617"/>
+        <location filename="../QScintilla/Editor.py" line="6630"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7029"/>
+        <location filename="../QScintilla/Editor.py" line="7042"/>
         <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="926"/>
+        <source>Open &apos;rejection&apos; file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1036"/>
+        <source>Load Diagram...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1359"/>
+        <source>Next change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1363"/>
+        <source>Previous change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
+        <source>Sort Lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
+        <source>The selection contains illegal data for a numerical sort.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
+        <source>Warning</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
+        <source>No warning messages available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6620"/>
+        <source>Style: {0}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="900"/>
+        <source>New Document View</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="903"/>
+        <source>New Document View (with new split)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="990"/>
+        <source>Tools</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1121"/>
+        <source>Re-Open With Encoding</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="876"/>
+        <source>Automatic Completion enabled</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="956"/>
+        <source>Complete</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
+        <source>Auto-Completion Provider</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
+        <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="5192"/>
+        <source>Call-Tips Provider</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
+        <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="8415"/>
+        <source>Register Mouse Click Handler</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
+        <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>
+    <message>
         <location filename="../QScintilla/Editor.py" line="920"/>
-        <source>Open &apos;rejection&apos; file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1030"/>
-        <source>Load Diagram...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1353"/>
-        <source>Next change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1357"/>
-        <source>Previous change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
-        <source>Sort Lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
-        <source>The selection contains illegal data for a numerical sort.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
-        <source>Warning</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
-        <source>No warning messages available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6607"/>
-        <source>Style: {0}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
-        <source>New Document View</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="897"/>
-        <source>New Document View (with new split)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="984"/>
-        <source>Tools</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1115"/>
-        <source>Re-Open With Encoding</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
-        <source>Automatic Completion enabled</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="950"/>
-        <source>Complete</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
-        <source>Auto-Completion Provider</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
-        <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="5184"/>
-        <source>Call-Tips Provider</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="5184"/>
-        <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="8391"/>
-        <source>Register Mouse Click Handler</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8391"/>
-        <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>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="914"/>
         <source>Save Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="953"/>
+        <location filename="../QScintilla/Editor.py" line="959"/>
         <source>Clear Completions Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="880"/>
+        <location filename="../QScintilla/Editor.py" line="886"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1361"/>
+        <location filename="../QScintilla/Editor.py" line="1367"/>
         <source>Clear changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="803"/>
+        <location filename="../QScintilla/Editor.py" line="805"/>
         <source>Execute Selection In Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
+        <location filename="../QScintilla/Editor.py" line="1271"/>
         <source>Toggle all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1270"/>
+        <location filename="../QScintilla/Editor.py" line="1276"/>
         <source>Toggle all folds (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1275"/>
-        <source>Toggle current fold</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1281"/>
+        <source>Toggle current fold</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1287"/>
         <source>Expand (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
-        <source>Collapse (including children)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1292"/>
+        <source>Collapse (including children)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1298"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1173"/>
+        <location filename="../QScintilla/Editor.py" line="1179"/>
         <source>Spell Check Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7023"/>
+        <location filename="../QScintilla/Editor.py" line="7036"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="849"/>
+        <source>Insert Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorAPIsPage</name>
@@ -13031,205 +13069,220 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="45"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="89"/>
         <source>Tab width:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="99"/>
+        <source>Move to set the tab width.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="121"/>
+        <source>Displays the selected tab width.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="137"/>
+        <source>Indentation width:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="147"/>
+        <source>Move to set the indentation width.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="169"/>
+        <source>Displays the selected indentation width.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="55"/>
-        <source>Move to set the tab width.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="77"/>
-        <source>Displays the selected tab width.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="93"/>
-        <source>Indentation width:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="103"/>
-        <source>Move to set the indentation width.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="125"/>
-        <source>Displays the selected indentation width.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="246"/>
         <source>Select whether tab characters are used for indentations.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="249"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="58"/>
         <source>Use tabs for indentations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="236"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="45"/>
         <source>Select whether autoindentation shall be enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="239"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="48"/>
         <source>Auto indentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="266"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="75"/>
         <source>Select whether tabs shall be converted upon opening the file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="269"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="78"/>
         <source>Convert tabs upon open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="256"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="65"/>
         <source>Select whether pressing the tab key indents.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="259"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="68"/>
         <source>Tab key indents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="371"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="373"/>
         <source>Comments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="377"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="379"/>
         <source>Select to insert the comment sign at column 0</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="380"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="382"/>
         <source>&lt;b&gt;Insert comment at column 0&lt;/b&gt;&lt;p&gt;Select to insert the comment sign at column 0. Otherwise, the comment sign is inserted at the first non-whitespace position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="383"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="385"/>
         <source>Insert comment at column 0</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="393"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="424"/>
         <source>Virtual Space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="399"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="430"/>
         <source>Virtual space is the space after the last character of a line. It is not allocated unless some text is entered or copied into it. Usage of virtual space can be configured with these selections.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="409"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="440"/>
         <source>Select to enable a rectangular selection to extend into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="412"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="443"/>
         <source>Selection may access virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="419"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="450"/>
         <source>Select to allow the cursor to be moved into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="422"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="453"/>
         <source>Cursor can move into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="158"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="206"/>
         <source>Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="163"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="211"/>
         <source>Tab Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="168"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="216"/>
         <source>Indent Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="196"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="244"/>
         <source>Press to add a language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="203"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="251"/>
         <source>Press to delete the selected language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="210"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="258"/>
         <source>Press to edit the selected language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Tab and Indent Override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Shall the selected entries really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="281"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="283"/>
         <source>Select to enable the source code outline view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="284"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="286"/>
         <source>Source Code Outline</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="293"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="295"/>
         <source>Default Width:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="320"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="302"/>
         <source>Enter the default width of the source code outline view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="313"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="321"/>
         <source>Width Step Size:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="339"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="328"/>
         <source>Enter the amount of pixels the width of the outline should be increased or decreased</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="358"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="360"/>
         <source>Select to show the source code encoding</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="361"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="363"/>
         <source>Show source file encoding</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="395"/>
+        <source>Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="401"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="414"/>
+        <source>Select the docstring style to be used</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorHighlightersPage</name>
@@ -49840,17 +49893,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1627"/>
+        <location filename="../Preferences/__init__.py" line="1629"/>
         <source>Export Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Import Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50376,312 +50429,312 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>Read project file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>Save project file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>Read user project properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>Save user project properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>Read project session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1244"/>
+        <location filename="../Project/Project.py" line="1245"/>
         <source>Please save the project first.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>Save project session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>Delete project session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>Read tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>Save tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>Read debugger properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>Save debugger properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>Delete debugger properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>Add Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>You have to specify a translation pattern first.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>Delete translation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1677"/>
+        <location filename="../Project/Project.py" line="1678"/>
         <source>Add file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1741"/>
+        <location filename="../Project/Project.py" line="1742"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1664"/>
+        <location filename="../Project/Project.py" line="1665"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1809"/>
+        <location filename="../Project/Project.py" line="1810"/>
         <source>The target directory must not be empty.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>Add directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1708"/>
+        <location filename="../Project/Project.py" line="1709"/>
         <source>&lt;p&gt;The source directory doesn&apos;t contain any files belonging to the selected category.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1723"/>
+        <location filename="../Project/Project.py" line="1724"/>
         <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>The source directory must not be empty.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1957"/>
+        <location filename="../Project/Project.py" line="1958"/>
         <source>Rename file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>Rename File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>Delete file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>Delete directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>Create project directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>New Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2476"/>
+        <location filename="../Project/Project.py" line="2477"/>
         <source>Add existing files to the project?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>Select Version Control System</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2603"/>
+        <location filename="../Project/Project.py" line="2604"/>
         <source>Would you like to edit the VCS command options?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>New project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2546"/>
+        <location filename="../Project/Project.py" line="2547"/>
         <source>Shall the project file be added to the repository?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2582"/>
+        <location filename="../Project/Project.py" line="2583"/>
         <source>None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2575"/>
+        <location filename="../Project/Project.py" line="2576"/>
         <source>Select version control system for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Translation Pattern</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Enter the path pattern for translation files (use &apos;%language%&apos; in place of the language code):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>Open project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3120"/>
+        <location filename="../Project/Project.py" line="3121"/>
         <source>Project Files (*.e4p)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save project as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>Save File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>Close Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>The current project has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>Syntax errors detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>The project contains %n file(s) with syntax errors.</source>
         <translation>
             <numerusform>The project contains one file with syntax errors.</numerusform>
@@ -50689,637 +50742,637 @@
         </translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>&amp;New...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3850"/>
-        <source>Generate a new project</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3851"/>
+        <source>Generate a new project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3852"/>
         <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>&amp;Open...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3864"/>
-        <source>Open an existing project</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3865"/>
+        <source>Open an existing project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3866"/>
         <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>Close project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>&amp;Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3876"/>
-        <source>Close the current project</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3877"/>
+        <source>Close the current project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3878"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3884"/>
+        <location filename="../Project/Project.py" line="3885"/>
         <source>Save project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>&amp;Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3888"/>
-        <source>Save the current project</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3889"/>
+        <source>Save the current project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3890"/>
         <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save &amp;as...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3900"/>
+        <location filename="../Project/Project.py" line="3901"/>
         <source>Save the current project to a new file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3902"/>
+        <location filename="../Project/Project.py" line="3903"/>
         <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add files to project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add &amp;files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3916"/>
+        <location filename="../Project/Project.py" line="3917"/>
         <source>Add files to the current project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3918"/>
+        <location filename="../Project/Project.py" line="3919"/>
         <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory to project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3932"/>
+        <location filename="../Project/Project.py" line="3933"/>
         <source>Add a directory to the current project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3934"/>
+        <location filename="../Project/Project.py" line="3935"/>
         <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add translation to project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add &amp;translation...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3947"/>
+        <location filename="../Project/Project.py" line="3948"/>
         <source>Add a translation to the current project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3949"/>
+        <location filename="../Project/Project.py" line="3950"/>
         <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Search new files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Searc&amp;h new files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3961"/>
+        <location filename="../Project/Project.py" line="3962"/>
         <source>Search new files in the project directory.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>Project properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>&amp;Properties...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3992"/>
-        <source>Show the project properties</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3993"/>
+        <source>Show the project properties</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3994"/>
         <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>User project properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>&amp;User Properties...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4005"/>
+        <location filename="../Project/Project.py" line="4006"/>
         <source>Show the user specific project properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4007"/>
+        <location filename="../Project/Project.py" line="4008"/>
         <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4019"/>
+        <location filename="../Project/Project.py" line="4020"/>
         <source>Show the project filetype associations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4037"/>
+        <location filename="../Project/Project.py" line="4038"/>
         <source>Show the project lexer associations (overriding defaults)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4039"/>
+        <location filename="../Project/Project.py" line="4040"/>
         <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger &amp;Properties...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4055"/>
-        <source>Show the debugger properties</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4056"/>
+        <source>Show the debugger properties</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4057"/>
         <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>Load</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>&amp;Load</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4068"/>
-        <source>Load the debugger properties</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4069"/>
+        <source>Load the debugger properties</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4070"/>
         <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4080"/>
-        <source>Save the debugger properties</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4081"/>
+        <source>Save the debugger properties</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4082"/>
         <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>&amp;Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4092"/>
-        <source>Delete the debugger properties</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4093"/>
+        <source>Delete the debugger properties</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4094"/>
         <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>Reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>&amp;Reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4105"/>
-        <source>Reset the debugger properties</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4106"/>
+        <source>Reset the debugger properties</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4107"/>
         <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4115"/>
+        <location filename="../Project/Project.py" line="4116"/>
         <source>Load session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4119"/>
-        <source>Load the projects session file.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4120"/>
+        <source>Load the projects session file.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4121"/>
         <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4133"/>
+        <location filename="../Project/Project.py" line="4134"/>
         <source>Save session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4137"/>
-        <source>Save the projects session file.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4138"/>
+        <source>Save the projects session file.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4139"/>
         <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4151"/>
+        <location filename="../Project/Project.py" line="4152"/>
         <source>Delete session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4155"/>
-        <source>Delete the projects session file.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4156"/>
+        <source>Delete the projects session file.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4157"/>
         <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>Code Metrics</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>&amp;Code Metrics...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4169"/>
+        <location filename="../Project/Project.py" line="4170"/>
         <source>Show some code metrics for the project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4171"/>
+        <location filename="../Project/Project.py" line="4172"/>
         <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Python Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Code Co&amp;verage...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4183"/>
+        <location filename="../Project/Project.py" line="4184"/>
         <source>Show code coverage information for the project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4185"/>
+        <location filename="../Project/Project.py" line="4186"/>
         <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Profile Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4193"/>
+        <location filename="../Project/Project.py" line="4194"/>
         <source>&amp;Profile Data...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4197"/>
+        <location filename="../Project/Project.py" line="4198"/>
         <source>Show profiling data for the project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4199"/>
+        <location filename="../Project/Project.py" line="4200"/>
         <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Application Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4208"/>
+        <location filename="../Project/Project.py" line="4209"/>
         <source>&amp;Application Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4212"/>
+        <location filename="../Project/Project.py" line="4213"/>
         <source>Show a diagram of the project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4214"/>
+        <location filename="../Project/Project.py" line="4215"/>
         <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>Create Package List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4237"/>
+        <location filename="../Project/Project.py" line="4238"/>
         <source>Create &amp;Package List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>Create Plugin Archive</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4339"/>
-        <source>&amp;Project</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4340"/>
-        <source>Open &amp;Recent Projects</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4345"/>
-        <source>&amp;Version Control</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4349"/>
-        <source>Chec&amp;k</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4351"/>
-        <source>Sho&amp;w</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4352"/>
-        <source>&amp;Diagrams</source>
+        <source>&amp;Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="4341"/>
-        <source>Session</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4354"/>
-        <source>Source &amp;Documentation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4342"/>
-        <source>Debugger</source>
+        <source>Open &amp;Recent Projects</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4346"/>
+        <source>&amp;Version Control</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4350"/>
+        <source>Chec&amp;k</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4352"/>
+        <source>Sho&amp;w</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="4353"/>
+        <source>&amp;Diagrams</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4342"/>
+        <source>Session</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4355"/>
+        <source>Source &amp;Documentation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4343"/>
+        <source>Debugger</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4354"/>
         <source>Pac&amp;kagers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4479"/>
+        <location filename="../Project/Project.py" line="4480"/>
         <source>Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4545"/>
+        <location filename="../Project/Project.py" line="4546"/>
         <source>&amp;Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>Search New Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>There were no new files found to be added.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>Version Control System</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4996"/>
+        <location filename="../Project/Project.py" line="4997"/>
         <source>Coverage Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5046"/>
+        <location filename="../Project/Project.py" line="5047"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Please select a coverage file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Please select a profile file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Include module names?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5267"/>
+        <location filename="../Project/Project.py" line="5268"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5337"/>
+        <location filename="../Project/Project.py" line="5338"/>
         <source>The project does not have a main script defined. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5477"/>
+        <location filename="../Project/Project.py" line="5478"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5548"/>
+        <location filename="../Project/Project.py" line="5549"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>Create main script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>&lt;p&gt;The mainscript &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>Load Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>&amp;Load Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4226"/>
+        <location filename="../Project/Project.py" line="4227"/>
         <source>Load a diagram from file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4228"/>
+        <location filename="../Project/Project.py" line="4229"/>
         <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51344,12 +51397,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4854"/>
+        <location filename="../Project/Project.py" line="4855"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51359,198 +51412,198 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>Create project management directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Alt+Ctrl+P</source>
         <comment>Project|Search Project File</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3978"/>
+        <location filename="../Project/Project.py" line="3979"/>
         <source>Search for a file in the project list of files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3980"/>
+        <location filename="../Project/Project.py" line="3981"/>
         <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5373"/>
+        <location filename="../Project/Project.py" line="5374"/>
         <source>Create Plugin Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4253"/>
+        <location filename="../Project/Project.py" line="4254"/>
         <source>Create Plugin &amp;Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (Snapshot)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (&amp;Snapshot)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5351"/>
+        <location filename="../Project/Project.py" line="5352"/>
         <source>Select package lists:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Creating plugin archives...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Abort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>%v/%m Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5385"/>
+        <location filename="../Project/Project.py" line="5386"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5362"/>
+        <location filename="../Project/Project.py" line="5363"/>
         <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5413"/>
+        <location filename="../Project/Project.py" line="5414"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the&apos;; initial_list&apos; line of the header.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3963"/>
+        <location filename="../Project/Project.py" line="3964"/>
         <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4021"/>
+        <location filename="../Project/Project.py" line="4022"/>
         <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>Create Makefile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>Execute Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4291"/>
+        <location filename="../Project/Project.py" line="4292"/>
         <source>&amp;Execute Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4295"/>
+        <location filename="../Project/Project.py" line="4296"/>
         <source>Perform a &apos;make&apos; run.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4297"/>
+        <location filename="../Project/Project.py" line="4298"/>
         <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a &apos;make&apos; run to rebuild the configured target.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5755"/>
+        <location filename="../Project/Project.py" line="5756"/>
         <source>Test for Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4305"/>
+        <location filename="../Project/Project.py" line="4306"/>
         <source>&amp;Test for Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4309"/>
+        <location filename="../Project/Project.py" line="4310"/>
         <source>Question &apos;make&apos;, if a rebuild is needed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4311"/>
+        <location filename="../Project/Project.py" line="4312"/>
         <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions &apos;make&apos;, if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4356"/>
+        <location filename="../Project/Project.py" line="4357"/>
         <source>Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5703"/>
+        <location filename="../Project/Project.py" line="5704"/>
         <source>The make process did not start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5748"/>
+        <location filename="../Project/Project.py" line="5749"/>
         <source>The make process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5758"/>
+        <location filename="../Project/Project.py" line="5759"/>
         <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5763"/>
+        <location filename="../Project/Project.py" line="5764"/>
         <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>The makefile contains errors.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51565,7 +51618,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4344"/>
+        <location filename="../Project/Project.py" line="4345"/>
         <source>Project-T&amp;ools</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51595,47 +51648,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4242"/>
+        <location filename="../Project/Project.py" line="4243"/>
         <source>Create an initial PKGLIST file for an eric plugin.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4244"/>
+        <location filename="../Project/Project.py" line="4245"/>
         <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4258"/>
+        <location filename="../Project/Project.py" line="4259"/>
         <source>Create eric plugin archive files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4260"/>
+        <location filename="../Project/Project.py" line="4261"/>
         <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4275"/>
+        <location filename="../Project/Project.py" line="4276"/>
         <source>Create eric plugin archive files (snapshot releases).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4277"/>
+        <location filename="../Project/Project.py" line="4278"/>
         <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5441"/>
+        <location filename="../Project/Project.py" line="5442"/>
         <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5496"/>
+        <location filename="../Project/Project.py" line="5497"/>
         <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5504"/>
+        <location filename="../Project/Project.py" line="5505"/>
         <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53560,65 +53613,65 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <location filename="../Project/PropertiesDialog.ui" line="298"/>
         <source>&amp;Author:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="294"/>
+        <location filename="../Project/PropertiesDialog.ui" line="308"/>
         <source>Enter authors name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="297"/>
+        <location filename="../Project/PropertiesDialog.ui" line="311"/>
         <source>&lt;b&gt;Author&lt;/b&gt;
 &lt;p&gt;Enter the name of the author.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="305"/>
+        <location filename="../Project/PropertiesDialog.ui" line="319"/>
         <source>&amp;Email:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="315"/>
+        <location filename="../Project/PropertiesDialog.ui" line="329"/>
         <source>Enter authors email</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="318"/>
+        <location filename="../Project/PropertiesDialog.ui" line="332"/>
         <source>&lt;b&gt;Email&lt;/b&gt;
 &lt;p&gt;Enter the email address of the author&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="326"/>
+        <location filename="../Project/PropertiesDialog.ui" line="340"/>
         <source>&amp;Description:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="339"/>
+        <location filename="../Project/PropertiesDialog.ui" line="353"/>
         <source>Enter description</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="342"/>
+        <location filename="../Project/PropertiesDialog.ui" line="356"/>
         <source>&lt;b&gt;Description&lt;/b&gt;
 &lt;p&gt;Enter a short description for the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="383"/>
+        <location filename="../Project/PropertiesDialog.ui" line="397"/>
         <source>Press to show information about the repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="386"/>
+        <location filename="../Project/PropertiesDialog.ui" line="400"/>
         <source>Show &amp;Repository Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="389"/>
+        <location filename="../Project/PropertiesDialog.ui" line="403"/>
         <source>Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53634,27 +53687,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="113"/>
+        <location filename="../Project/PropertiesDialog.py" line="121"/>
         <source>The project is version controlled by &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="119"/>
+        <location filename="../Project/PropertiesDialog.py" line="127"/>
         <source>The project is not version controlled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="58"/>
+        <location filename="../Project/PropertiesDialog.py" line="66"/>
         <source>Source Files ({0});;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="358"/>
+        <location filename="../Project/PropertiesDialog.ui" line="372"/>
         <source>Select to create a version controlled project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="361"/>
+        <location filename="../Project/PropertiesDialog.ui" line="375"/>
         <source>Version Controlled Project</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53673,6 +53726,21 @@
         <source>Press to open a dialog to enter the &apos;make&apos; parameters</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="291"/>
+        <source>Select the docstring style for the project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.py" line="50"/>
+        <source>None</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ProtobufPage</name>
--- a/eric6/i18n/eric6_es.ts	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/i18n/eric6_es.ts	Fri Jan 22 16:48:43 2021 +0100
@@ -8634,7 +8634,7 @@
         <translation>docstring tiene indentación errónea</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="86"/>
         <source>docstring summary does not end with a period</source>
         <translation>docstring de resumen no termina en punto</translation>
     </message>
@@ -8669,7 +8669,7 @@
         <translation>docstring de clase no seguido de línea en blanco</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
         <source>docstring summary is not followed by a blank line</source>
         <translation>docstring de resumen no seguido de línea en blanco</translation>
     </message>
@@ -8679,92 +8679,92 @@
         <translation>último párrafo de docstring no seguido de línea en blanco</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
         <source>private function/method is missing a docstring</source>
         <translation>función/método privado al que le falta docstring</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="76"/>
         <source>private class is missing a docstring</source>
         <translation>clase privada a la que falta un docstring</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="77"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation>comillas iniciales de docstring no están en línea separada</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="80"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation>comillas iniciales de docstring no están en línea separada</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
         <source>trailing quotes of docstring not on separate line</source>
         <translation>comillas finales de docstring no están en línea separada</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="87"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="90"/>
         <source>docstring does not contain a @return line but function/method returns something</source>
         <translation>docstring no contiene una línea @return pero la función/método retorna algo</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="91"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="94"/>
         <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
         <translation>docstring contiene una línea @return pero la función/método no retorna nada</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="103"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation>docstring no contiene suficientes líneas @param/@keyparam</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="106"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
-        <translation>docstring contiene demasiadas líneas @param/@keyparam</translation>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
+        <translation>docstring no contiene suficientes líneas @param/@keyparam</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="109"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
-        <translation>los argumentos de solo palabra clave deben estar documentados con líneas @keyparam</translation>
+        <source>docstring contains too many @param/@keyparam lines</source>
+        <translation>docstring contiene demasiadas líneas @param/@keyparam</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="112"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
-        <translation>orden de líneas @param/@keyparam no coincide con la firma de la función/método</translation>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <translation>los argumentos de solo palabra clave deben estar documentados con líneas @keyparam</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="115"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation>orden de líneas @param/@keyparam no coincide con la firma de la función/método</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="118"/>
         <source>class docstring is preceded by a blank line</source>
         <translation>docstring de clase precedida de línea en blanco</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="117"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="120"/>
         <source>class docstring is followed by a blank line</source>
         <translation>docstring de clase seguida de línea en blanco</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="119"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation>docstring de función/método precedido de línea en blanco</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="122"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation>docstring de función/método precedido de línea en blanco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
         <source>function/method docstring is followed by a blank line</source>
         <translation>docstring de función/método seguido de línea en blanco</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation>último párrafo de docstring seguido de línea en blanco</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="131"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation>último párrafo de docstring seguido de línea en blanco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="134"/>
         <source>docstring does not contain a @exception line but function/method raises an exception</source>
         <translation>docstring no contiene una línea @exception pero la función/método lanza una excepción</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="135"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="138"/>
         <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
         <translation>docstring contiene una línea @exception pero la función/método no lanza una excepción</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="158"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="161"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
@@ -8774,42 +8774,42 @@
         <translation>docstring no contiene un resumen</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="88"/>
         <source>docstring summary does not start with &apos;{0}&apos;</source>
         <translation>docstring de resumen no empieza con &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="139"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation>la excepción &apos;{0}&apos; no está documentada en una docstring</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="142"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
-        <translation>la excepción documentada &apos;{0}&apos; no se utiliza</translation>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
+        <translation>la excepción &apos;{0}&apos; no está documentada en una docstring</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="145"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
-        <translation>docstring no contiene una línea @signal pero la clase define signals</translation>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <translation>la excepción documentada &apos;{0}&apos; no se utiliza</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="148"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
-        <translation>docstring contiene una línea @signal pero la clase no define signals</translation>
+        <source>docstring does not contain a @signal line but class defines signals</source>
+        <translation>docstring no contiene una línea @signal pero la clase define signals</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="151"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
-        <translation>la signal definida &apos;{0}&apos; no está documentada en una docstring</translation>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <translation>docstring contiene una línea @signal pero la clase no define signals</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="154"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation>la signal definida &apos;{0}&apos; no está documentada en una docstring</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="157"/>
         <source>documented signal &apos;{0}&apos; is not defined</source>
         <translation>la signal documentada &apos;{0}&apos; no está definida</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="75"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="78"/>
         <source>class docstring is still a default string</source>
         <translation>docstring de clase es todavía una cadena por defecto</translation>
     </message>
@@ -8824,15 +8824,43 @@
         <translation>docstring de módulo es todavía una cadena por defecto</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="95"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="98"/>
         <source>docstring does not contain a @yield line but function/method yields something</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="99"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="102"/>
         <source>docstring contains a @yield line but function/method doesn&apos;t yield anything</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <source>function docstring still contains some placeholders</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>DocstringGenerator</name>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="42"/>
+        <source>Eric</source>
+        <translation type="unfinished">Eric</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="44"/>
+        <source>NumPy</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="46"/>
+        <source>Google</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="48"/>
+        <source>Sphinx</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DotDesktopListSelectionDialog</name>
@@ -11061,812 +11089,812 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3110"/>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
         <source>Open File</source>
         <translation>Abrir archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="783"/>
+        <location filename="../QScintilla/Editor.py" line="785"/>
         <source>Undo</source>
         <translation>Deshacer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="786"/>
+        <location filename="../QScintilla/Editor.py" line="788"/>
         <source>Redo</source>
         <translation>Rehacer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="789"/>
+        <location filename="../QScintilla/Editor.py" line="791"/>
         <source>Revert to last saved state</source>
         <translation>Volver al último estado guardado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="793"/>
+        <location filename="../QScintilla/Editor.py" line="795"/>
         <source>Cut</source>
         <translation>Cortar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="796"/>
+        <location filename="../QScintilla/Editor.py" line="798"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="799"/>
+        <location filename="../QScintilla/Editor.py" line="801"/>
         <source>Paste</source>
         <translation>Pegar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="807"/>
+        <location filename="../QScintilla/Editor.py" line="809"/>
         <source>Indent</source>
         <translation>Indentar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="810"/>
+        <location filename="../QScintilla/Editor.py" line="812"/>
         <source>Unindent</source>
         <translation>Desindentar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="813"/>
+        <location filename="../QScintilla/Editor.py" line="815"/>
         <source>Comment</source>
         <translation>Pasar a comentario</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="816"/>
+        <location filename="../QScintilla/Editor.py" line="818"/>
         <source>Uncomment</source>
         <translation>Sacar de comentario</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Stream Comment</source>
         <translation>Bloque de comentario</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Box Comment</source>
         <translation>Caja de comentario</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="826"/>
-        <source>Select to brace</source>
-        <translation>Seleccionar hasta la llave ( &apos;{&apos; o &apos;}&apos; )</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="828"/>
+        <source>Select to brace</source>
+        <translation>Seleccionar hasta la llave ( &apos;{&apos; o &apos;}&apos; )</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Select all</source>
         <translation>Seleccionar todo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="829"/>
+        <location filename="../QScintilla/Editor.py" line="831"/>
         <source>Deselect all</source>
         <translation>Deseleccionar todo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="847"/>
+        <location filename="../QScintilla/Editor.py" line="853"/>
         <source>Shorten empty lines</source>
         <translation>Acortar las líneas vacías</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="854"/>
+        <location filename="../QScintilla/Editor.py" line="860"/>
         <source>Use Monospaced Font</source>
         <translation>Usar fuente monoespaciada</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="859"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Autosave enabled</source>
         <translation>Autoguardar habilitado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="902"/>
-        <source>Close</source>
-        <translation>Cerrar</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="908"/>
+        <source>Close</source>
+        <translation>Cerrar</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="914"/>
         <source>Save</source>
         <translation>Guardar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="911"/>
+        <location filename="../QScintilla/Editor.py" line="917"/>
         <source>Save As...</source>
         <translation>Guardar como...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="933"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="956"/>
+        <location filename="../QScintilla/Editor.py" line="962"/>
         <source>Complete from Document</source>
         <translation>Completar desde documento</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="958"/>
+        <location filename="../QScintilla/Editor.py" line="964"/>
         <source>Complete from APIs</source>
         <translation>Completar desde APIs</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="960"/>
+        <location filename="../QScintilla/Editor.py" line="966"/>
         <source>Complete from Document and APIs</source>
         <translation>Completar desde Documento y APIs</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="974"/>
+        <location filename="../QScintilla/Editor.py" line="980"/>
         <source>Check</source>
         <translation>Verificar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="994"/>
+        <location filename="../QScintilla/Editor.py" line="1000"/>
         <source>Show</source>
         <translation>Mostrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="996"/>
-        <source>Code metrics...</source>
-        <translation>Métricas de código...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="997"/>
-        <source>Code coverage...</source>
-        <translation>Cobertura de código...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="999"/>
-        <source>Show code coverage annotations</source>
-        <translation>Mostrar anotaciones de cobertura de codigo</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1002"/>
-        <source>Hide code coverage annotations</source>
-        <translation>Ocultar anotaciones de cobertura de codigo</translation>
+        <source>Code metrics...</source>
+        <translation>Métricas de código...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1003"/>
+        <source>Code coverage...</source>
+        <translation>Cobertura de código...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1005"/>
+        <source>Show code coverage annotations</source>
+        <translation>Mostrar anotaciones de cobertura de codigo</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1008"/>
+        <source>Hide code coverage annotations</source>
+        <translation>Ocultar anotaciones de cobertura de codigo</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1011"/>
         <source>Profile data...</source>
         <translation>Datos de profiling...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
-        <source>Diagrams</source>
-        <translation>Diagramas</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1020"/>
-        <source>Class Diagram...</source>
-        <translation>Diagrama de clases...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1022"/>
-        <source>Package Diagram...</source>
-        <translation>Diagrama de paquetes...</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1024"/>
-        <source>Imports Diagram...</source>
-        <translation>Diagrama de imports...</translation>
+        <source>Diagrams</source>
+        <translation>Diagramas</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1026"/>
+        <source>Class Diagram...</source>
+        <translation>Diagrama de clases...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1028"/>
+        <source>Package Diagram...</source>
+        <translation>Diagrama de paquetes...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1030"/>
+        <source>Imports Diagram...</source>
+        <translation>Diagrama de imports...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1032"/>
         <source>Application Diagram...</source>
         <translation>Diagrama de aplicación...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1044"/>
+        <location filename="../QScintilla/Editor.py" line="1050"/>
         <source>Languages</source>
         <translation>Lenguajes</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1177"/>
+        <location filename="../QScintilla/Editor.py" line="1183"/>
         <source>No Language</source>
         <translation>Ningún Lenguaje</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1202"/>
+        <location filename="../QScintilla/Editor.py" line="1208"/>
         <source>Export as</source>
         <translation>Exportar como</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1224"/>
-        <source>Toggle bookmark</source>
-        <translation>Alternar marcador</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1226"/>
-        <source>Next bookmark</source>
-        <translation>Nuevo marcador</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1228"/>
-        <source>Previous bookmark</source>
-        <translation>Marcador anterior</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1230"/>
+        <source>Toggle bookmark</source>
+        <translation>Alternar marcador</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1232"/>
+        <source>Next bookmark</source>
+        <translation>Nuevo marcador</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1234"/>
+        <source>Previous bookmark</source>
+        <translation>Marcador anterior</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1236"/>
         <source>Clear all bookmarks</source>
         <translation>Borrar todos los marcadores</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1304"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Goto syntax error</source>
         <translation>Ir al error de sintaxis</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1314"/>
         <source>Show syntax error message</source>
         <translation>Ver el mensaje de error de sintaxis</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1313"/>
+        <location filename="../QScintilla/Editor.py" line="1319"/>
         <source>Clear syntax error</source>
         <translation>Borrar error de sintaxis</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1239"/>
+        <location filename="../QScintilla/Editor.py" line="1245"/>
         <source>Toggle breakpoint</source>
         <translation>Alternar punto de interrupción</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1241"/>
+        <location filename="../QScintilla/Editor.py" line="1247"/>
         <source>Toggle temporary breakpoint</source>
         <translation>Alternar punto de interrupción temporal</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1244"/>
+        <location filename="../QScintilla/Editor.py" line="1250"/>
         <source>Edit breakpoint...</source>
         <translation>Editar punto de interrupción...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5613"/>
+        <location filename="../QScintilla/Editor.py" line="5626"/>
         <source>Enable breakpoint</source>
         <translation>Activar punto de interrupción</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1249"/>
+        <location filename="../QScintilla/Editor.py" line="1255"/>
         <source>Next breakpoint</source>
         <translation>Siguiente punto de interrupción</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1251"/>
+        <location filename="../QScintilla/Editor.py" line="1257"/>
         <source>Previous breakpoint</source>
         <translation>Punto de interrupción anterior</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1256"/>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
         <source>Clear all breakpoints</source>
         <translation>Borrar todos los puntos de interrupción</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1335"/>
+        <location filename="../QScintilla/Editor.py" line="1341"/>
         <source>Next uncovered line</source>
         <translation>Siguiente línea sin cobertura</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1339"/>
+        <location filename="../QScintilla/Editor.py" line="1345"/>
         <source>Previous uncovered line</source>
         <translation>Anterior línea sin cobertura</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1344"/>
+        <location filename="../QScintilla/Editor.py" line="1350"/>
         <source>Next task</source>
         <translation>Nueva tarea</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1348"/>
+        <location filename="../QScintilla/Editor.py" line="1354"/>
         <source>Previous task</source>
         <translation>Tarea anterior</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
         <source>Export source</source>
         <translation>Exportar fuente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
         <source>No export format given. Aborting...</source>
         <translation>No se ha proporcionado un formato de exportación. Abortando...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>Modification of Read Only file</source>
         <translation>Modificación de un archivo de solo lectura</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>You are attempting to change a read only file. Please save to a different file first.</source>
         <translation>Usted está intentando modificar un archivo solo lectura. Por favor guarde en otro archivo primero.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2675"/>
+        <location filename="../QScintilla/Editor.py" line="2681"/>
         <source>Printing...</source>
         <translation>Imprimiendo...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2692"/>
+        <location filename="../QScintilla/Editor.py" line="2698"/>
         <source>Printing completed</source>
         <translation>Impresión completa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2694"/>
+        <location filename="../QScintilla/Editor.py" line="2700"/>
         <source>Error while printing</source>
         <translation>Error al imprimir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2697"/>
+        <location filename="../QScintilla/Editor.py" line="2703"/>
         <source>Printing aborted</source>
         <translation>Impresión cancelada</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <source>File Modified</source>
         <translation>Archivo modificado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
         <source>Save File</source>
         <translation>Guardar archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion</source>
         <translation>Autocompletar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation>Autocompletar no está disponible porque no hay origen de datos para autocompletar.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5616"/>
+        <location filename="../QScintilla/Editor.py" line="5629"/>
         <source>Disable breakpoint</source>
         <translation>Deshabilitar punto de interrupción</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <source>Code Coverage</source>
         <translation>Cobertura de codigo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <source>Please select a coverage file</source>
         <translation>Por favor seleccione un archivo de cobertura</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Mostrar Anotaciones de Cobertura de Código</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6047"/>
+        <location filename="../QScintilla/Editor.py" line="6060"/>
         <source>All lines have been covered.</source>
         <translation>Todas las líneas han sido cubiertas.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>There is no coverage file available.</source>
         <translation>No hay archivo de cobertura disponible.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Profile Data</source>
         <translation>Datos de profiling</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Please select a profile file</source>
         <translation>Por favor seleccione un archivo de profiling</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <source>Syntax Error</source>
         <translation>Error de sintaxis</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <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="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Macro Name</source>
         <translation>Nombre de macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Select a macro name:</source>
         <translation>Seleccione un nombre de macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6750"/>
+        <location filename="../QScintilla/Editor.py" line="6763"/>
         <source>Load macro file</source>
         <translation>Cargar archivo de macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6792"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Macro files (*.macro)</source>
         <translation>Archivos de Macro  (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6772"/>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
         <source>Error loading macro</source>
         <translation>Error al cargar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6792"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Save macro file</source>
         <translation>Guardar archivo de macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
         <source>Save macro</source>
         <translation>Guardar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6824"/>
-        <source>Error saving macro</source>
-        <translation>Error al guardar macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6837"/>
-        <source>Start Macro Recording</source>
-        <translation>Comenzar grabación de macro</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6837"/>
+        <source>Error saving macro</source>
+        <translation>Error al guardar macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6850"/>
+        <source>Start Macro Recording</source>
+        <translation>Comenzar grabación de macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6850"/>
         <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="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Macro Recording</source>
         <translation>Grabando macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Enter name of the macro:</source>
         <translation>Introduzca el nombre de la macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7033"/>
+        <location filename="../QScintilla/Editor.py" line="7046"/>
         <source>File changed</source>
         <translation>Archivo modificado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <source>Drop Error</source>
         <translation>Error al soltar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7375"/>
+        <location filename="../QScintilla/Editor.py" line="7399"/>
         <source>Resources</source>
         <translation>Recursos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7401"/>
         <source>Add file...</source>
         <translation>Añadir archivo...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7379"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add files...</source>
         <translation>Añadir archivos...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7405"/>
         <source>Add aliased file...</source>
         <translation>Añadir archivo con un alias...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7384"/>
+        <location filename="../QScintilla/Editor.py" line="7408"/>
         <source>Add localized resource...</source>
         <translation>Añadir recursos localizados...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7388"/>
+        <location filename="../QScintilla/Editor.py" line="7412"/>
         <source>Add resource frame</source>
         <translation>Añadir ventana de recursos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7407"/>
+        <location filename="../QScintilla/Editor.py" line="7431"/>
         <source>Add file resource</source>
         <translation>Añadir archivo de recursos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7423"/>
+        <location filename="../QScintilla/Editor.py" line="7447"/>
         <source>Add file resources</source>
         <translation>Añadir archivo de recursos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add aliased file resource</source>
         <translation>Añadir archivo de recursos con un alias</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Package Diagram</source>
         <translation>Digrama de paquetes</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Include class attributes?</source>
         <translation>¿Incluir atributos de clase?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
         <source>Imports Diagram</source>
         <translation>Diagrama de imports</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
         <source>Include imports from external modules?</source>
         <translation>¿Incluir los imports de módulos externos?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Application Diagram</source>
         <translation>Diagrama de aplicación</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Include module names?</source>
         <translation>¿Incluir nombres de módulos?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="878"/>
+        <location filename="../QScintilla/Editor.py" line="884"/>
         <source>Calltip</source>
         <translation>Consejo de llamada</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
+        <location filename="../QScintilla/Editor.py" line="930"/>
         <source>Print Preview</source>
         <translation>Presentación preliminar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="468"/>
+        <location filename="../QScintilla/Editor.py" line="470"/>
         <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Una Ventana de Edición de Códigos Fuente&lt;/b&gt;&lt;p&gt;Esta ventana se utiliza para mostrar y editar un archivo de código fuente.  Puede abrir tantas como desee. El nombre del archivo se muestra en la barra de título de la ventana.&lt;/p&gt;&lt;p&gt;Para insertar puntos de interrupción basta con hacer un click en el espacio entre los números de línea y los marcadores de plegado.  Pueden editarse con el menú de contexto de los márgenes.&lt;/p&gt;&lt;p&gt;Para insertar marcadores solo hay que hacer Shift-click en el espacio entre los números de línea y los marcadores de plegado.&lt;/p&gt;&lt;p&gt;Estas acciones se pueden revertir utilizando el menú de contexto.&lt;/p&gt;&lt;p&gt;Haciendo Ctrl-click en un marcador de error sintáctico se muestra información sobre el dicho error.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="869"/>
         <source>Typing aids enabled</source>
         <translation>Ayudas al tecleo habilitadas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1134"/>
+        <location filename="../QScintilla/Editor.py" line="1140"/>
         <source>End-of-Line Type</source>
         <translation>Tipo de fin-de-línea</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1138"/>
+        <location filename="../QScintilla/Editor.py" line="1144"/>
         <source>Unix</source>
         <translation>Unix</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1145"/>
+        <location filename="../QScintilla/Editor.py" line="1151"/>
         <source>Windows</source>
         <translation>Windows</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1152"/>
+        <location filename="../QScintilla/Editor.py" line="1158"/>
         <source>Macintosh</source>
         <translation>Macintosh</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1093"/>
+        <location filename="../QScintilla/Editor.py" line="1099"/>
         <source>Encodings</source>
         <translation>Codificaciones</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1073"/>
+        <location filename="../QScintilla/Editor.py" line="1079"/>
         <source>Guessed</source>
         <translation>Suposición</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1413"/>
+        <location filename="../QScintilla/Editor.py" line="1419"/>
         <source>Alternatives</source>
         <translation>Alternativas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
         <source>Pygments Lexer</source>
         <translation>Analizador Léxico de Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Seleccionar el Analizador Léxico de Pygments.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7881"/>
+        <location filename="../QScintilla/Editor.py" line="7905"/>
         <source>Check spelling...</source>
         <translation>Corrección ortográfica...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="837"/>
+        <location filename="../QScintilla/Editor.py" line="839"/>
         <source>Check spelling of selection...</source>
         <translation>Corrección ortográfica de la selección...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7884"/>
+        <location filename="../QScintilla/Editor.py" line="7908"/>
         <source>Add to dictionary</source>
         <translation>Añadir al diccionario</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7886"/>
+        <location filename="../QScintilla/Editor.py" line="7910"/>
         <source>Ignore All</source>
         <translation>Ignorar Todo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="841"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Remove from dictionary</source>
         <translation>Eliminar del diccionario</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="379"/>
+        <location filename="../QScintilla/Editor.py" line="381"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El tamaño del archivo &lt;b&gt;{0}&lt;/b&gt; es &lt;b&gt;{1} KB&lt;/b&gt;. ¿Desea cargarlo de todos modos?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1390"/>
+        <location filename="../QScintilla/Editor.py" line="1396"/>
         <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;No hay un exportador disponible para el formato de exportación &lt;b&gt;{0}&lt;/b&gt;. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1409"/>
+        <location filename="../QScintilla/Editor.py" line="1415"/>
         <source>Alternatives ({0})</source>
         <translation>Alternativas ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <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="../QScintilla/Editor.py" line="3110"/>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo&lt;b&gt;{0}&lt;/b&gt; no puede ser abierto.&lt;br /&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3234"/>
+        <location filename="../QScintilla/Editor.py" line="3240"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no puede ser guardado.&lt;br&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6763"/>
+        <location filename="../QScintilla/Editor.py" line="6776"/>
         <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="6772"/>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
         <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="6824"/>
+        <location filename="../QScintilla/Editor.py" line="6837"/>
         <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="7213"/>
+        <location filename="../QScintilla/Editor.py" line="7237"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <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="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation>Alias para el archivo &lt;b&gt;{0}&lt;/b&gt;:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1318"/>
+        <location filename="../QScintilla/Editor.py" line="1324"/>
         <source>Next warning</source>
         <translation>Siguiente advertencia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1322"/>
+        <location filename="../QScintilla/Editor.py" line="1328"/>
         <source>Previous warning</source>
         <translation>Anterior advertencia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1326"/>
+        <location filename="../QScintilla/Editor.py" line="1332"/>
         <source>Show warning message</source>
         <translation>Mostrar mensaje de advertencia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1330"/>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
         <source>Clear warnings</source>
         <translation>Limpiar advertencias</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
         <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="6610"/>
+        <location filename="../QScintilla/Editor.py" line="6623"/>
         <source>Warning: {0}</source>
         <translation>Advertencia: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6617"/>
+        <location filename="../QScintilla/Editor.py" line="6630"/>
         <source>Error: {0}</source>
         <translation>Error: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7029"/>
+        <location filename="../QScintilla/Editor.py" line="7042"/>
         <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
         <translation>&lt;br&gt;&lt;b&gt;Advertencia:&lt;/b&gt; Perderá los cambios si lo reabre.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="920"/>
+        <location filename="../QScintilla/Editor.py" line="926"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation>Abrir archivo &apos;de rechazo&apos;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1030"/>
+        <location filename="../QScintilla/Editor.py" line="1036"/>
         <source>Load Diagram...</source>
         <translation>Cargar Diagrama...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1353"/>
+        <location filename="../QScintilla/Editor.py" line="1359"/>
         <source>Next change</source>
         <translation>Siguiente cambio</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1357"/>
+        <location filename="../QScintilla/Editor.py" line="1363"/>
         <source>Previous change</source>
         <translation>Cambio anterior</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
         <source>Sort Lines</source>
         <translation>Ordenar Líneas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
         <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="6545"/>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
         <source>Warning</source>
         <translation>Advertencia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
         <source>No warning messages available.</source>
         <translation>No hay mensajes de advertencia disponibles.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6607"/>
+        <location filename="../QScintilla/Editor.py" line="6620"/>
         <source>Style: {0}</source>
         <translation>Estilo: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
+        <location filename="../QScintilla/Editor.py" line="900"/>
         <source>New Document View</source>
         <translation>Nueva Vista de Documento</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="897"/>
+        <location filename="../QScintilla/Editor.py" line="903"/>
         <source>New Document View (with new split)</source>
         <translation>Nueva Vista de Documento (con nueva división)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="984"/>
+        <location filename="../QScintilla/Editor.py" line="990"/>
         <source>Tools</source>
         <translation>Herramientas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1115"/>
+        <location filename="../QScintilla/Editor.py" line="1121"/>
         <source>Re-Open With Encoding</source>
         <translation>Reabrir Con Codificación</translation>
     </message>
@@ -11876,120 +11904,130 @@
         <translation type="obsolete">&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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="876"/>
         <source>Automatic Completion enabled</source>
         <translation>Autocompletar habilitado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="950"/>
+        <location filename="../QScintilla/Editor.py" line="956"/>
         <source>Complete</source>
         <translation>Completo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
         <source>Auto-Completion Provider</source>
         <translation>Proveedor de Autocompletado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
         <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="5184"/>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
         <source>Call-Tips Provider</source>
         <translation>Proveedor de Call-Tips</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5184"/>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
         <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="8391"/>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
         <source>Register Mouse Click Handler</source>
         <translation>Registrar Manejador de Clicks de Ratón</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8391"/>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="914"/>
+        <location filename="../QScintilla/Editor.py" line="920"/>
         <source>Save Copy...</source>
         <translation>Guardar Copia...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="953"/>
+        <location filename="../QScintilla/Editor.py" line="959"/>
         <source>Clear Completions Cache</source>
         <translation>Limpiar Caché de Completado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="880"/>
+        <location filename="../QScintilla/Editor.py" line="886"/>
         <source>Code Info</source>
         <translation>Info del Código</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1361"/>
+        <location filename="../QScintilla/Editor.py" line="1367"/>
         <source>Clear changes</source>
         <translation>Limpiar cambios</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="803"/>
+        <location filename="../QScintilla/Editor.py" line="805"/>
         <source>Execute Selection In Console</source>
         <translation>Ejecutar Selección en Consola</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>EditorConfig Properties</source>
         <translation>Propiedades de EditorConfig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Las propiedades de EditorConfig para el archivo &lt;b&gt;{0}&lt;/b&gt; no se ha podido cargar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
+        <location filename="../QScintilla/Editor.py" line="1271"/>
         <source>Toggle all folds</source>
         <translation>Recoger/Desplegar los anidamientos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1270"/>
+        <location filename="../QScintilla/Editor.py" line="1276"/>
         <source>Toggle all folds (including children)</source>
         <translation>Recoger/Desplegar todos los anidamientos (inc. hijos)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1275"/>
-        <source>Toggle current fold</source>
-        <translation>Recoger/Desplegar el anidamiento actual</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1281"/>
+        <source>Toggle current fold</source>
+        <translation>Recoger/Desplegar el anidamiento actual</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1287"/>
         <source>Expand (including children)</source>
         <translation>Expandir (incluídos hijos)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
-        <source>Collapse (including children)</source>
-        <translation>Contraer (incluídos hijos)</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1292"/>
+        <source>Collapse (including children)</source>
+        <translation>Contraer (incluídos hijos)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1298"/>
         <source>Clear all folds</source>
         <translation>Limpiar todos los anidamientos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1173"/>
+        <location filename="../QScintilla/Editor.py" line="1179"/>
         <source>Spell Check Languages</source>
         <translation>Corrección Ortográfica Idiomas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7023"/>
+        <location filename="../QScintilla/Editor.py" line="7036"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="849"/>
+        <source>Insert Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorAPIsPage</name>
@@ -13240,72 +13278,72 @@
         <translation>&lt;b&gt;Configurar opciones generales para el editor&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="125"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="169"/>
         <source>Displays the selected indentation width.</source>
         <translation>Muestra la anchura de indentación seleccionada.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="103"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="147"/>
         <source>Move to set the indentation width.</source>
         <translation>Mueva para establecer el ancho de indentación.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="93"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="137"/>
         <source>Indentation width:</source>
         <translation>Ancho de indentación:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="55"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="99"/>
         <source>Move to set the tab width.</source>
         <translation>Mueva para establecer el ancho de la tabulación.</translation>
     </message>
     <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="89"/>
+        <source>Tab width:</source>
+        <translation>Ancho de la tabulación:</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="121"/>
+        <source>Displays the selected tab width.</source>
+        <translation>Muestra el ancho de tabulación seleccionado.</translation>
+    </message>
+    <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="45"/>
-        <source>Tab width:</source>
-        <translation>Ancho de la tabulación:</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="77"/>
-        <source>Displays the selected tab width.</source>
-        <translation>Muestra el ancho de tabulación seleccionado.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="236"/>
         <source>Select whether autoindentation shall be enabled</source>
         <translation>Seleccionar si la autoindentación debe ser habilitada</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="239"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="48"/>
         <source>Auto indentation</source>
         <translation>Autoindentación</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="266"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="75"/>
         <source>Select whether tabs shall be converted upon opening the file</source>
         <translation>Seleccionar si las tabulaciones deben ser convertidas al abrir el archivo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="269"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="78"/>
         <source>Convert tabs upon open</source>
         <translation>Convertir tabulaciones al abrir</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="246"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="55"/>
         <source>Select whether tab characters are used for indentations.</source>
         <translation>Seleccionar si los caracteres de tabulaciones se utilizan para indentar.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="249"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="58"/>
         <source>Use tabs for indentations</source>
         <translation>Utilizar tabulaciones para indentar</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="256"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="65"/>
         <source>Select whether pressing the tab key indents.</source>
         <translation>Seleccionar si la pulsación de la tecla de tabulación indenta.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="259"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="68"/>
         <source>Tab key indents</source>
         <translation>Tecla de tabulación indenta</translation>
     </message>
@@ -13315,135 +13353,150 @@
         <translation>Tabulación &amp;&amp; Indentación</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="371"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="373"/>
         <source>Comments</source>
         <translation>Comentarios</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="377"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="379"/>
         <source>Select to insert the comment sign at column 0</source>
         <translation>Seleccionar para insertar el signo de comentario en la columna 0</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="383"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="385"/>
         <source>Insert comment at column 0</source>
         <translation>Insertar comentario en la columna 0</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="380"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="382"/>
         <source>&lt;b&gt;Insert comment at column 0&lt;/b&gt;&lt;p&gt;Select to insert the comment sign at column 0. Otherwise, the comment sign is inserted at the first non-whitespace position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Insertar comentario en la columna 0&lt;/b&gt;&lt;p&gt;Seleccionar para insertar el signo de comentario en la columna 0. De otro modo, el signo de comentario se inserta en la primera posición de no espacio en blanco.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="393"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="424"/>
         <source>Virtual Space</source>
         <translation>Espacio Virtual</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="399"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="430"/>
         <source>Virtual space is the space after the last character of a line. It is not allocated unless some text is entered or copied into it. Usage of virtual space can be configured with these selections.</source>
         <translation>Espacio virtual es el espacio detrás del último carácter en una línea. No es reservado a menos que se introduzca o se copie algún texto en él. El uso del espacio virtual puede ser configurado con estas selecciones.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="409"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="440"/>
         <source>Select to enable a rectangular selection to extend into virtual space</source>
         <translation>Seleccionar para habilitar una selección rectangular para extender en el espacio virtual</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="412"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="443"/>
         <source>Selection may access virtual space</source>
         <translation>La selección puede acceder el espacio virtual</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="419"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="450"/>
         <source>Select to allow the cursor to be moved into virtual space</source>
         <translation>Seleccionar para permitir al cursor moverse dentro del espacio virtual</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="422"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="453"/>
         <source>Cursor can move into virtual space</source>
         <translation>El cursor se puede mover dentro del espacio virtual</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="158"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="206"/>
         <source>Language</source>
         <translation>Lenguaje</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="163"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="211"/>
         <source>Tab Width</source>
         <translation>Ancho de Tabulación</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="168"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="216"/>
         <source>Indent Width</source>
         <translation>Ancho de Indentación</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="196"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="244"/>
         <source>Press to add a language specific override</source>
         <translation>Pulsar para añadir sobreescritura específica de lenguaje</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="203"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="251"/>
         <source>Press to delete the selected language specific override</source>
         <translation>Pulsar para borrar la sobreescritura específica de lenguaje seleccionada</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="210"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="258"/>
         <source>Press to edit the selected language specific override</source>
         <translation>Pulsar para editar la sobreescritura específica de lenguaje seleccionada</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Tab and Indent Override</source>
         <translation>Sobreescritura de Tabulación e Indentación</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Shall the selected entries really be removed?</source>
         <translation>¿Desea eliminar las entradas seleccionadas?</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="281"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="283"/>
         <source>Select to enable the source code outline view</source>
         <translation>Seleccionar para habilitar la vista de esquema de código fuente</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="284"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="286"/>
         <source>Source Code Outline</source>
         <translation>Esquema de Código Fuente</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="293"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="295"/>
         <source>Default Width:</source>
         <translation>Anchura por Defecto:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="320"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="302"/>
         <source>Enter the default width of the source code outline view</source>
         <translation>Introducir la anchura por defecto de la vista de esquema de código fuente</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="313"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="321"/>
         <source>Width Step Size:</source>
         <translation>Tamaño de Paso de Anchura:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="339"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="328"/>
         <source>Enter the amount of pixels the width of the outline should be increased or decreased</source>
         <translation>Introducir el número de píxeles para aumentar o disminuir la anchura del esquema</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="358"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="360"/>
         <source>Select to show the source code encoding</source>
         <translation>Seleccionar para mostrar la codificación del código fuente</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="361"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="363"/>
         <source>Show source file encoding</source>
         <translation>Mostrar codificación del archivo de código fuente</translation>
     </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="395"/>
+        <source>Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="401"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="414"/>
+        <source>Select the docstring style to be used</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorHighlightersPage</name>
@@ -50321,17 +50374,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1627"/>
+        <location filename="../Preferences/__init__.py" line="1629"/>
         <source>Export Preferences</source>
         <translation>Exportar Preferencias</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Import Preferences</source>
         <translation>Importar Preferencias</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation>Archivo de Propiedades (*.ini);;Todos los archivos (*)</translation>
     </message>
@@ -50847,207 +50900,207 @@
         <translation>Otro</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>Read project file</source>
         <translation>Leer archivo de proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>Save project file</source>
         <translation>Guardar proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>Read user project properties</source>
         <translation>Leer las propiedades de proyecto del usuario</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>Save user project properties</source>
         <translation>Guardar propiedades de proyecto del usuario</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>Read project session</source>
         <translation>Leer sesion de proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1244"/>
+        <location filename="../Project/Project.py" line="1245"/>
         <source>Please save the project first.</source>
         <translation>Por favor guarde primero el proyecto.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>Save project session</source>
         <translation>Guardar sesion de proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>Delete project session</source>
         <translation>Borrar sesion de proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>Read tasks</source>
         <translation>Leer tareas</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>Save tasks</source>
         <translation>Guardar Tareas</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>Read debugger properties</source>
         <translation>Leer propiedades del depurador</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>Save debugger properties</source>
         <translation>Guardar propiedades del depurador</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>Delete debugger properties</source>
         <translation>Borrar propiedades del depurador</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>Add Language</source>
         <translation>Añadir lenguaje</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>Delete translation</source>
         <translation>Borrar traducción</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1677"/>
+        <location filename="../Project/Project.py" line="1678"/>
         <source>Add file</source>
         <translation>Agregar archivo</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1809"/>
+        <location filename="../Project/Project.py" line="1810"/>
         <source>The target directory must not be empty.</source>
         <translation>El directorio de destino no puede estar vacío.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>Add directory</source>
         <translation>Añadir directorio</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1708"/>
+        <location filename="../Project/Project.py" line="1709"/>
         <source>&lt;p&gt;The source directory doesn&apos;t contain any files belonging to the selected category.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El directorio de origen no contiene archivos que pertenezcan a la categoría seleccionada.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>The source directory must not be empty.</source>
         <translation>El directorio de origen no puede estar vacío.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1957"/>
+        <location filename="../Project/Project.py" line="1958"/>
         <source>Rename file</source>
         <translation>Renombrar archivo</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>Rename File</source>
         <translation>Renombrar Archivo</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>Delete file</source>
         <translation>Borrar archivo</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>Delete directory</source>
         <translation>Borrar directorio</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>Create project directory</source>
         <translation>Crear directorio de proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>New Project</source>
         <translation>Proyecto nuevo</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2476"/>
+        <location filename="../Project/Project.py" line="2477"/>
         <source>Add existing files to the project?</source>
         <translation>¿Agregar archivos existentes al proyecto?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>Select Version Control System</source>
         <translation>Seleccion el Sistema de control de versiones (VCS)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2603"/>
+        <location filename="../Project/Project.py" line="2604"/>
         <source>Would you like to edit the VCS command options?</source>
         <translation>¿Le gustaría editar las opciones de comando para VCS?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>New project</source>
         <translation>Proyecto nuevo</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2546"/>
+        <location filename="../Project/Project.py" line="2547"/>
         <source>Shall the project file be added to the repository?</source>
         <translation>¿Debe añadirse el archivo de proyecto al repositorio?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2582"/>
+        <location filename="../Project/Project.py" line="2583"/>
         <source>None</source>
         <translation>Ninguno</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2575"/>
+        <location filename="../Project/Project.py" line="2576"/>
         <source>Select version control system for the project</source>
         <translation>Seleccione el sistema de control de versiones para el proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>Open project</source>
         <translation>Abrir proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3120"/>
+        <location filename="../Project/Project.py" line="3121"/>
         <source>Project Files (*.e4p)</source>
         <translation>Archivos de proyecto (*.e4p)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save project as</source>
         <translation>Guardar proyecto como</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>Save File</source>
         <translation>Guardar archivo</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>Close Project</source>
         <translation>Cerrar Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>The current project has unsaved changes.</source>
         <translation>El proyecto actual tiene cambios sin guardar.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>Syntax errors detected</source>
         <translation>Se detectaron errores de sintaxis</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>The project contains %n file(s) with syntax errors.</source>
         <translation>
             <numerusform>El archivo contiene %n archivo(s) con errores de sintaxis.</numerusform>
@@ -51055,567 +51108,567 @@
         </translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>&amp;New...</source>
         <translation>&amp;Nuevo...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3850"/>
-        <source>Generate a new project</source>
-        <translation>Generar un nuevo proyecto</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3851"/>
+        <source>Generate a new project</source>
+        <translation>Generar un nuevo proyecto</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3852"/>
         <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nuevo...&lt;/b&gt;&lt;p&gt;Abre un diálogo para introducir la información para un nuevo proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>&amp;Open...</source>
         <translation>&amp;Abrir...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3864"/>
-        <source>Open an existing project</source>
-        <translation>Abrir un proyecto existente</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3865"/>
+        <source>Open an existing project</source>
+        <translation>Abrir un proyecto existente</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3866"/>
         <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abrir...&lt;/b&gt;&lt;p&gt;Abre un proyecto existente..&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>Close project</source>
         <translation>Cerrar proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>&amp;Close</source>
         <translation>&amp;Cerrar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3876"/>
-        <source>Close the current project</source>
-        <translation>Cierra el proyecto actual</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3877"/>
+        <source>Close the current project</source>
+        <translation>Cierra el proyecto actual</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3878"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cerrar&lt;/b&gt;&lt;p&gt;Cierra el proyecto actualt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3884"/>
+        <location filename="../Project/Project.py" line="3885"/>
         <source>Save project</source>
         <translation>Guardar proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>&amp;Save</source>
         <translation>&amp;Guardar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3888"/>
-        <source>Save the current project</source>
-        <translation>Guarda el proyecto actual</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3889"/>
+        <source>Save the current project</source>
+        <translation>Guarda el proyecto actual</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3890"/>
         <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar&lt;/b&gt;&lt;p&gt;Guarda el proyecto actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save &amp;as...</source>
         <translation>Guardar co&amp;mo...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3900"/>
+        <location filename="../Project/Project.py" line="3901"/>
         <source>Save the current project to a new file</source>
         <translation>Guardar el proyecto actual en un nuevo archivo</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3902"/>
+        <location filename="../Project/Project.py" line="3903"/>
         <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar como&lt;/b&gt;&lt;p&gt;Guarda el proyecto en otro archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add files to project</source>
         <translation>Agregar archivos al proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add &amp;files...</source>
         <translation>&amp;Agregar archivos...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3916"/>
+        <location filename="../Project/Project.py" line="3917"/>
         <source>Add files to the current project</source>
         <translation>Añadir archivos al proyecto actual</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3918"/>
+        <location filename="../Project/Project.py" line="3919"/>
         <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Añadir archivos...&lt;/b&gt;&lt;p&gt;Abre un diálogo para añadir archivos al proyecto actual. El lugar donde se van a añadir es determinado por la extensión del nombre de archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory to project</source>
         <translation>Agregar directorio al proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory...</source>
         <translation>Agregar directorio...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3932"/>
+        <location filename="../Project/Project.py" line="3933"/>
         <source>Add a directory to the current project</source>
         <translation>Agregar directorio al proyecto actual</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3934"/>
+        <location filename="../Project/Project.py" line="3935"/>
         <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Añadir directorio...&lt;/b&gt;&lt;p&gt;Abre un diálogo para añadir un directorio al proyecto actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add translation to project</source>
         <translation>Añadir traducción al proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add &amp;translation...</source>
         <translation>Añadir &amp;Traducción...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3947"/>
+        <location filename="../Project/Project.py" line="3948"/>
         <source>Add a translation to the current project</source>
         <translation>Añadir una traducción al proyecto actual</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3949"/>
+        <location filename="../Project/Project.py" line="3950"/>
         <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Añadir traducción...&lt;/b&gt;&lt;p&gt;Abre un diálogo para añadir una traducción al proyecto actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Search new files</source>
         <translation>Buscar archivos nuevos</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Searc&amp;h new files...</source>
         <translation>Bus&amp;car archivos nuevos...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3961"/>
+        <location filename="../Project/Project.py" line="3962"/>
         <source>Search new files in the project directory.</source>
         <translation>Bucar nuevos archivos en el directorio de proyecto.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>Project properties</source>
         <translation>Propiedades del proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>&amp;Properties...</source>
         <translation>&amp;Propiedades...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3992"/>
-        <source>Show the project properties</source>
-        <translation>Ver las propiedades del proyecto</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3993"/>
+        <source>Show the project properties</source>
+        <translation>Ver las propiedades del proyecto</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3994"/>
         <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Propiedades...&lt;/b&gt;&lt;p&gt;Muestra un diálogo para editar las propiedades del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>User project properties</source>
         <translation>Propiedades del usuario del proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>&amp;User Properties...</source>
         <translation>Propiedades del &amp;Usuario...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4005"/>
+        <location filename="../Project/Project.py" line="4006"/>
         <source>Show the user specific project properties</source>
         <translation>Muestra propiedades del proyecto específicas del usuario</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4007"/>
+        <location filename="../Project/Project.py" line="4008"/>
         <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Propiedades del Usuario...&lt;/b&gt;&lt;p&gt;Abre un diálogo par editar las propiedades del proyecto específicas del usuario.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations</source>
         <translation>Asociación de tipos de archivo</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations...</source>
         <translation>Asociación de tipos de archivo...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4019"/>
+        <location filename="../Project/Project.py" line="4020"/>
         <source>Show the project filetype associations</source>
         <translation>Ver las asociaciones del proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger Properties</source>
         <translation>Propiedades del depurador</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger &amp;Properties...</source>
         <translation>&amp;Propiedades del depurador...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4055"/>
-        <source>Show the debugger properties</source>
-        <translation>Muestra las propiedades del depurador</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4056"/>
+        <source>Show the debugger properties</source>
+        <translation>Muestra las propiedades del depurador</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4057"/>
         <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Propiedades del Depurador...&lt;/b&gt;&lt;p&gt;Abre un diálogo par editar las propiedades del depurador específicas del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>Load</source>
         <translation>Cargar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>&amp;Load</source>
         <translation>&amp;Cargar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4068"/>
-        <source>Load the debugger properties</source>
-        <translation>Cargar las propiedades del depurador</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4069"/>
+        <source>Load the debugger properties</source>
+        <translation>Cargar las propiedades del depurador</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4070"/>
         <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cargar Propiedades del Depurador&lt;/b&gt;&lt;p&gt;Carga las opciones de configuración del depurador específicas del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>Save</source>
         <translation>Guardar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4080"/>
-        <source>Save the debugger properties</source>
-        <translation>Guardar propiedades del depurador</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4081"/>
+        <source>Save the debugger properties</source>
+        <translation>Guardar propiedades del depurador</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4082"/>
         <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar Propiedades del Depurador&lt;/b&gt;&lt;p&gt;Guarda las opciones de configuración del depurador específicas del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>Delete</source>
         <translation>Borrar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>&amp;Delete</source>
         <translation>&amp;Borrar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4092"/>
-        <source>Delete the debugger properties</source>
-        <translation>Borrar las propiedades del depurador</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4093"/>
+        <source>Delete the debugger properties</source>
+        <translation>Borrar las propiedades del depurador</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4094"/>
         <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Borrar Propiedades del Depurador&lt;/b&gt;&lt;p&gt;Borra el archivo que contiene las opciones de configuración del depurador específicas del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>Reset</source>
         <translation>Reiniciar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>&amp;Reset</source>
         <translation>&amp;Reiniciar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4105"/>
-        <source>Reset the debugger properties</source>
-        <translation>Restablecer las propiedades del depurador</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4106"/>
+        <source>Reset the debugger properties</source>
+        <translation>Restablecer las propiedades del depurador</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4107"/>
         <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Restablecer Propiedades del Depurador&lt;/b&gt;&lt;p&gt;Restablece las opciones de configuración del depurador específicas del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4115"/>
+        <location filename="../Project/Project.py" line="4116"/>
         <source>Load session</source>
         <translation>Cargar sesión</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4119"/>
-        <source>Load the projects session file.</source>
-        <translation>Cargar archivo de sesión de proyectos.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4120"/>
+        <source>Load the projects session file.</source>
+        <translation>Cargar archivo de sesión de proyectos.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4121"/>
         <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cargar sesión&lt;/b&gt;&lt;p&gt;Carga el archivo de sesión de proyecto. La sesión consiste en los datos siguientes.&lt;br&gt;- todos los archivos de fuentes abiertos&lt;br&gt;- todos los puntos de interrupción&lt;br&gt;- todos los argumentos de línea de comandos&lt;br&gt;- el directorio de trabajo&lt;br&gt;- el flag de reporte de excepciones&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4133"/>
+        <location filename="../Project/Project.py" line="4134"/>
         <source>Save session</source>
         <translation>Guardar sesión</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4137"/>
-        <source>Save the projects session file.</source>
-        <translation>Guardar archivos de sessión de proyecto.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4138"/>
+        <source>Save the projects session file.</source>
+        <translation>Guardar archivos de sessión de proyecto.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4139"/>
         <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar sesión&lt;/b&gt;&lt;p&gt;Guarda el archivo de sesión de proyecto. La sesión consiste en los datos siguientes.&lt;br&gt;- todos los archivos de fuentes abiertos&lt;br&gt;- todos los puntos de interrupción&lt;br&gt;- todos los argumentos de línea de comandos&lt;br&gt;- el directorio de trabajo&lt;br&gt;- el flag de reporte de excepciones&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4151"/>
+        <location filename="../Project/Project.py" line="4152"/>
         <source>Delete session</source>
         <translation>Borrar sesión</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4155"/>
-        <source>Delete the projects session file.</source>
-        <translation>Borrar el archivo de sesión de proyecto.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4156"/>
+        <source>Delete the projects session file.</source>
+        <translation>Borrar el archivo de sesión de proyecto.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4157"/>
         <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
         <translation>&lt;b&gt;Borrar sesión&lt;/b&gt;&lt;p&gt;Borra el archivo de sesión del proyecto&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>Code Metrics</source>
         <translation>Métricas de código</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>&amp;Code Metrics...</source>
         <translation>Métricas de &amp;código...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4169"/>
+        <location filename="../Project/Project.py" line="4170"/>
         <source>Show some code metrics for the project.</source>
         <translation>Muestra algunas métricas del código para este proyecto.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4171"/>
+        <location filename="../Project/Project.py" line="4172"/>
         <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Métricas de Código...&lt;/b&gt;&lt;p&gt;Muestra algunas métricas de código para todos los archivos Python en el proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Python Code Coverage</source>
         <translation>Cobertura de Código Python</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Code Co&amp;verage...</source>
         <translation>Co&amp;bertura de código...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4183"/>
+        <location filename="../Project/Project.py" line="4184"/>
         <source>Show code coverage information for the project.</source>
         <translation>Muestra información de cobertura de código para el proyecto.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4185"/>
+        <location filename="../Project/Project.py" line="4186"/>
         <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cobertura de Código...&lt;/b&gt;&lt;p&gt;Muestra la información de cobertura de código para todos los archivos Python en el proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Profile Data</source>
         <translation>Datos de perfil</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4193"/>
+        <location filename="../Project/Project.py" line="4194"/>
         <source>&amp;Profile Data...</source>
         <translation>Datos de &amp;pefil...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4197"/>
+        <location filename="../Project/Project.py" line="4198"/>
         <source>Show profiling data for the project.</source>
         <translation>Mostrar datos de profiling para el proyecto.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4199"/>
+        <location filename="../Project/Project.py" line="4200"/>
         <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datos de Profiling...&lt;/b&gt;&lt;p&gt;Muestra datos de profiling para el proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Application Diagram</source>
         <translation>Diagrama de Aplicación</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4208"/>
+        <location filename="../Project/Project.py" line="4209"/>
         <source>&amp;Application Diagram...</source>
         <translation>Diagrama de &amp;Aplicación...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4212"/>
+        <location filename="../Project/Project.py" line="4213"/>
         <source>Show a diagram of the project.</source>
         <translation>Mostrar diagrama del proyecto.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4214"/>
+        <location filename="../Project/Project.py" line="4215"/>
         <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Diagrama de Aplicación...&lt;/b&gt;&lt;p&gt;Muestra un diagrama del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>Create Package List</source>
         <translation>Crear Lista del Paquete</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4237"/>
+        <location filename="../Project/Project.py" line="4238"/>
         <source>Create &amp;Package List</source>
         <translation>Crear &amp;Package List</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>Create Plugin Archive</source>
         <translation>Crear Archivo de Plugin</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4339"/>
-        <source>&amp;Project</source>
-        <translation>&amp;Proyecto</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4340"/>
+        <source>&amp;Project</source>
+        <translation>&amp;Proyecto</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4341"/>
         <source>Open &amp;Recent Projects</source>
         <translation>Abrir Proyectos &amp;Recientes</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4345"/>
+        <location filename="../Project/Project.py" line="4346"/>
         <source>&amp;Version Control</source>
         <translation>Control de &amp;Versiones</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4349"/>
+        <location filename="../Project/Project.py" line="4350"/>
         <source>Chec&amp;k</source>
         <translation>Veri&amp;ficar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4351"/>
-        <source>Sho&amp;w</source>
-        <translation>V&amp;er</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4352"/>
-        <source>&amp;Diagrams</source>
-        <translation>&amp;Diagramas</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4341"/>
-        <source>Session</source>
-        <translation>Sesión</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4354"/>
-        <source>Source &amp;Documentation</source>
-        <translation>Origen de &amp;Documentación</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4342"/>
-        <source>Debugger</source>
-        <translation>Depurador</translation>
+        <source>Sho&amp;w</source>
+        <translation>V&amp;er</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="4353"/>
+        <source>&amp;Diagrams</source>
+        <translation>&amp;Diagramas</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4342"/>
+        <source>Session</source>
+        <translation>Sesión</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4355"/>
+        <source>Source &amp;Documentation</source>
+        <translation>Origen de &amp;Documentación</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4343"/>
+        <source>Debugger</source>
+        <translation>Depurador</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4354"/>
         <source>Pac&amp;kagers</source>
         <translation>Empa&amp;quetadores</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4479"/>
+        <location filename="../Project/Project.py" line="4480"/>
         <source>Project</source>
         <translation>Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4545"/>
+        <location filename="../Project/Project.py" line="4546"/>
         <source>&amp;Clear</source>
         <translation>&amp;Borrar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>Search New Files</source>
         <translation>Buscar nuevos archivos</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>There were no new files found to be added.</source>
         <translation>No se han encontrado nuevos archivos para ser añadidos.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>Version Control System</source>
         <translation>Sistema de control de versiones</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4996"/>
+        <location filename="../Project/Project.py" line="4997"/>
         <source>Coverage Data</source>
         <translation>Datos de Cobertura</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5046"/>
+        <location filename="../Project/Project.py" line="5047"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>No hay script principal definido para el proyecto actual. Abortando</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Code Coverage</source>
         <translation>Cobertura de codigo</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Please select a coverage file</source>
         <translation>Por favor seleccione un archivo de cobertura</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Please select a profile file</source>
         <translation>Por favor seleccione un archivo de profiling</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Include module names?</source>
         <translation>¿Incluir nombres de módulos?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5267"/>
+        <location filename="../Project/Project.py" line="5268"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;PKGLIST&lt;/b&gt; ya existe.&lt;/p&gt;&lt;p&gt;¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5337"/>
+        <location filename="../Project/Project.py" line="5338"/>
         <source>The project does not have a main script defined. Aborting...</source>
         <translation>No hay script principal definido para el proyecto actual. Abortando...</translation>
     </message>
@@ -51625,42 +51678,42 @@
         <translation>Registrando Tipo de Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4253"/>
+        <location filename="../Project/Project.py" line="4254"/>
         <source>Create Plugin &amp;Archives</source>
         <translation>Crear &amp;Archivos de Plugin</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>You have to specify a translation pattern first.</source>
         <translation>Debe especificar primero un patrón de traducción.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Translation Pattern</source>
         <translation>Patrón de Traducción</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Enter the path pattern for translation files (use &apos;%language%&apos; in place of the language code):</source>
         <translation>Introduzca el patrón de ruta para los archivos de traducción (use &apos;%language%&apos; in lugar del código de idioma):</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations</source>
         <translation>Asociaciones de Analizador Léxico</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations...</source>
         <translation>Asociaciones de Analizador Léxico...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4037"/>
+        <location filename="../Project/Project.py" line="4038"/>
         <source>Show the project lexer associations (overriding defaults)</source>
         <translation>Ver las asociaciones de analizador léxico del proyecto (sobreescribiendo valores por defecto)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4039"/>
+        <location filename="../Project/Project.py" line="4040"/>
         <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Asociaciones de Analizador Léxico ...&lt;/b&gt;&lt;p&gt;Muestra un diálogo para editar las asociaciones de analizador léxico del proyecto. Estas asociaciones sobreescriben las asociaciones de analizador léxico globales. Los analizadores léxicos se utilizan para resaltar el texto en el editor.&lt;/p&gt;</translation>
     </message>
@@ -51670,142 +51723,142 @@
         <translation>Archivos Python3 (*.py *.py3);;Archivos de GUI Python3 (*.pyw *.pyw3);;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de proyecto &lt;b&gt;{0}&lt;/b&gt; no ha podido ser leído.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de proyecto &lt;b&gt;{0}&lt;/b&gt; no ha podido ser guardado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de propiedades de proyecto específicas del usuario &lt;b&gt;{0}&lt;/b&gt; no ha podido ser leído.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de propiedades de proyecto específicas del usuario &lt;b&gt;{0}&lt;/b&gt; no ha podido ser guardado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de sesión de proyecto &lt;b&gt;{0}&lt;/b&gt; no ha podido leerse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de sesión de proyecto &lt;b&gt;{0}&lt;/b&gt; no ha podido guardarse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de sesión de proyecto &lt;b&gt;{0}&lt;/b&gt; no ha podido borrarse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de tareas &lt;b&gt;{0}&lt;/b&gt; no puede leerse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de tareas &lt;b&gt;{0}&lt;/b&gt; no pudo ser guardado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de propiedades del depurador del proyecto  &lt;b&gt;{0}&lt;/b&gt; no ha podido leerse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de propiedades del depurador del proyecto  &lt;b&gt;{0}&lt;/b&gt; no pudo ser guardado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de propiedades del depurador del proyecto  &lt;b&gt;{0}&lt;/b&gt; no pudo ser borrado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1741"/>
+        <location filename="../Project/Project.py" line="1742"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe.&lt;/p&gt;&lt;p&gt;¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe.&lt;/p&gt;&lt;p&gt;¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no puede ser renombrado.&lt;br /&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El directorio de proyecto &lt;b&gt;{0}&lt;/b&gt; no pudo ser creado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El VCS seleccionado &lt;b&gt;{0}&lt;/b&gt; no ha sido encontrado.&lt;br&gt;Deshabilitando control de versiones.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;PKGLIST&lt;/b&gt; no puede ser creado.&lt;/p&gt;&lt;p&gt;Causa: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5477"/>
+        <location filename="../Project/Project.py" line="5478"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El fichero&lt;b&gt;{0}&lt;/b&gt; no ha podido ser almacenado en el archivo. Va a ser ignorado.&lt;/p&gt;&lt;p&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5548"/>
+        <location filename="../Project/Project.py" line="5549"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de plugin&lt;b&gt;{0}&lt;/b&gt; no puede ser leido.&lt;/p&gt;&lt;p&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1664"/>
+        <location filename="../Project/Project.py" line="1665"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo seleccionado &lt;b&gt;{0}&lt;/b&gt; no ha podido se añadido a &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Razón: {2}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1723"/>
+        <location filename="../Project/Project.py" line="1724"/>
         <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El directorio de destino &lt;b&gt;{0}&lt;/b&gt; no ha podido ser creado.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>Create main script</source>
         <translation>Crear script principal</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>&lt;p&gt;The mainscript &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El script principal &lt;b&gt;{0}&lt;/b&gt; no se ha podido crear.&lt;br/&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>Load Diagram</source>
         <translation>Cargar Diagrama</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>&amp;Load Diagram...</source>
         <translation>&amp;Cargar Diagrama...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4226"/>
+        <location filename="../Project/Project.py" line="4227"/>
         <source>Load a diagram from file.</source>
         <translation>CArgar diagrama desde archivo.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4228"/>
+        <location filename="../Project/Project.py" line="4229"/>
         <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cargar Diagrama...&lt;/b&gt;&lt;p&gt;Carga un diagrama desde un archivo.&lt;/p&gt;</translation>
     </message>
@@ -51830,12 +51883,12 @@
         <translation>Consola PyQt5</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4854"/>
+        <location filename="../Project/Project.py" line="4855"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El VCS seleccionado &lt;b&gt;{0}&lt;/b&gt; no ha sido encontrado.&lt;br&gt;Revirtiendo sobreescritura.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de plugin&lt;b&gt;{0}&lt;/b&gt; no puede ser leido.&lt;/p&gt;&lt;p&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
@@ -51870,53 +51923,53 @@
         <translation>Eric6 Plugin</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>Create project management directory</source>
         <translation>Crear directorio de gestión del proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El directorio del proyecto &lt;b&gt;{0}&lt;/b&gt; no se puede escribir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Alt+Ctrl+P</source>
         <comment>Project|Search Project File</comment>
         <translation>Alt+Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3978"/>
+        <location filename="../Project/Project.py" line="3979"/>
         <source>Search for a file in the project list of files.</source>
         <translation>Bucar un archivo en el listado de archivos del proyecto.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3980"/>
+        <location filename="../Project/Project.py" line="3981"/>
         <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar Archivo en el Proyecto&lt;/b&gt;&lt;p&gt;Busca un archivo en el listado de archivos del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File</source>
         <translation>Buscar Archivo en Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File...</source>
         <translation>Buscar Archivo en Proyecto...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5373"/>
+        <location filename="../Project/Project.py" line="5374"/>
         <source>Create Plugin Archives</source>
         <translation>Crear Archivos de Plugin</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (Snapshot)</source>
         <translation>Crear Archivos de Plugin (Snapshot)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (&amp;Snapshot)</source>
         <translation>Crear Archivos de Plugin (&amp;Snapshot)</translation>
     </message>
@@ -51931,27 +51984,27 @@
         <translation type="obsolete">&lt;b&gt;Crear Archivos de Plugin (Snapshot)&lt;/b&gt;&lt;p&gt;Crea ficheros para archivo de plugin de eric6 usando el listado de ficheros dado en un archivo PKGLIST*. El nombre del archivo se construye a partir del nombre del script principal si no se designa uno en el archivo de package list. La entrada de versión del script principal se modifica para reflejar una snapshot release.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5351"/>
+        <location filename="../Project/Project.py" line="5352"/>
         <source>Select package lists:</source>
         <translation>Seleccionar package lists:</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Creating plugin archives...</source>
         <translation>Creando archivos de plugin...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Abort</source>
         <translation>Abortar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>%v/%m Archives</source>
         <translation>%v/%m Archivos</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5385"/>
+        <location filename="../Project/Project.py" line="5386"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo&lt;b&gt;{0}&lt;/b&gt; no puede ser leído.&lt;/p&gt;&lt;p&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
@@ -51966,117 +52019,117 @@
         <translation type="obsolete">&lt;p&gt;Los ficheros para archivo de plugin de eric6 se han creado correctamente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5362"/>
+        <location filename="../Project/Project.py" line="5363"/>
         <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;No hay archivo de package list (PKGLIST*) disponible o seleccionado. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5413"/>
+        <location filename="../Project/Project.py" line="5414"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the&apos;; initial_list&apos; line of the header.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; todavía no está listo.&lt;/p&gt;&lt;p&gt;Por favor, revíselo y borre la línea &apos;; initial_list&apos; del encabezado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3963"/>
+        <location filename="../Project/Project.py" line="3964"/>
         <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar nuevos archivos...&lt;/b&gt;&lt;p&gt;Busca nuevos archivos (fuentes, *.ui, *.idl, *.proto) en el directorio del proyecto y en los subdirectorios registrados.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4021"/>
+        <location filename="../Project/Project.py" line="4022"/>
         <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Asociaciones de tipos de archivo...&lt;/b&gt;&lt;p&gt;Muestra un diálogo para editar asociaciones de tipos de archivo del proyecto. Estas asociaciones determinan el tipo (fuentes, formulario, interfaces, protocolos u otros) con un patrón de nombre de archivo. Se usan al añadir archivos al proyecto y al realizar una búsqueda de nuevos archivos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de traducción seleccionado &lt;b&gt;{0}&lt;/b&gt; no se ha podido borrar.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo seleccionado &lt;b&gt;{0}&lt;/b&gt; no se ha podido borrar.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El directorio seleccionado &lt;b&gt;{0}&lt;/b&gt; no se ha podido borrar.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>Create Makefile</source>
         <translation>Crear Makefile</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El makefile &lt;b&gt;{0}&lt;/b&gt; no se ha podido crear.&lt;br/&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>Execute Make</source>
         <translation>Ejecutar Make</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4291"/>
+        <location filename="../Project/Project.py" line="4292"/>
         <source>&amp;Execute Make</source>
         <translation>&amp;Ejecutar Make</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4295"/>
+        <location filename="../Project/Project.py" line="4296"/>
         <source>Perform a &apos;make&apos; run.</source>
         <translation>Ejecutar un &apos;make&apos;.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4297"/>
+        <location filename="../Project/Project.py" line="4298"/>
         <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a &apos;make&apos; run to rebuild the configured target.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ejecutar Make&lt;/b&gt;&lt;p&gt;Ejecuta un &apos;make&apos; para reconstruir el target configurado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5755"/>
+        <location filename="../Project/Project.py" line="5756"/>
         <source>Test for Changes</source>
         <translation>Comprobar Cambios</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4305"/>
+        <location filename="../Project/Project.py" line="4306"/>
         <source>&amp;Test for Changes</source>
         <translation>&amp;Comprobar Cambios</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4309"/>
+        <location filename="../Project/Project.py" line="4310"/>
         <source>Question &apos;make&apos;, if a rebuild is needed.</source>
         <translation>Preguntar a &apos;make&apos; si es necesario reconstruir.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4311"/>
+        <location filename="../Project/Project.py" line="4312"/>
         <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions &apos;make&apos;, if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Comprobar Cambios&lt;/b&gt;&lt;p&gt;Pregunta a &apos;make si es necesario reconstruir el target configurado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4356"/>
+        <location filename="../Project/Project.py" line="4357"/>
         <source>Make</source>
         <translation>Make</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5703"/>
+        <location filename="../Project/Project.py" line="5704"/>
         <source>The make process did not start.</source>
         <translation>El proceso make no ha comenzado.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5748"/>
+        <location filename="../Project/Project.py" line="5749"/>
         <source>The make process crashed.</source>
         <translation>El proceso make ha fallado.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5758"/>
+        <location filename="../Project/Project.py" line="5759"/>
         <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Hay cambios que requieren que el target make configurado &lt;b&gt;{0}&lt;/b&gt; se reconstruya.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5763"/>
+        <location filename="../Project/Project.py" line="5764"/>
         <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Hay cambios que requieren que el target make por defecto se reconstruya.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>The makefile contains errors.</source>
         <translation>El makefile contiene errores.</translation>
     </message>
@@ -52091,7 +52144,7 @@
         <translation>Consola PySide2</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4344"/>
+        <location filename="../Project/Project.py" line="4345"/>
         <source>Project-T&amp;ools</source>
         <translation>Herramientas de Pr&amp;ojecto</translation>
     </message>
@@ -52121,47 +52174,47 @@
         <translation type="unfinished">Consola PySide2 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4242"/>
+        <location filename="../Project/Project.py" line="4243"/>
         <source>Create an initial PKGLIST file for an eric plugin.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4244"/>
+        <location filename="../Project/Project.py" line="4245"/>
         <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4258"/>
+        <location filename="../Project/Project.py" line="4259"/>
         <source>Create eric plugin archive files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4260"/>
+        <location filename="../Project/Project.py" line="4261"/>
         <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4275"/>
+        <location filename="../Project/Project.py" line="4276"/>
         <source>Create eric plugin archive files (snapshot releases).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4277"/>
+        <location filename="../Project/Project.py" line="4278"/>
         <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5441"/>
+        <location filename="../Project/Project.py" line="5442"/>
         <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5496"/>
+        <location filename="../Project/Project.py" line="5497"/>
         <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5504"/>
+        <location filename="../Project/Project.py" line="5505"/>
         <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53942,24 +53995,24 @@
         <translation>&amp;Tipo de Proyecto:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <location filename="../Project/PropertiesDialog.ui" line="298"/>
         <source>&amp;Author:</source>
         <translation>&amp;Autor:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="294"/>
+        <location filename="../Project/PropertiesDialog.ui" line="308"/>
         <source>Enter authors name</source>
         <translation>Introduzca el nombre de los autores</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="297"/>
+        <location filename="../Project/PropertiesDialog.ui" line="311"/>
         <source>&lt;b&gt;Author&lt;/b&gt;
 &lt;p&gt;Enter the name of the author.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Autor&lt;/b&gt;
 &lt;p&gt;Introduzca el nombre del autor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="326"/>
+        <location filename="../Project/PropertiesDialog.ui" line="340"/>
         <source>&amp;Description:</source>
         <translation>&amp;Descripción:</translation>
     </message>
@@ -53981,12 +54034,12 @@
 &lt;p&gt;Introduzca el número de versión.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="339"/>
+        <location filename="../Project/PropertiesDialog.ui" line="353"/>
         <source>Enter description</source>
         <translation>Introduzca la descripción</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="342"/>
+        <location filename="../Project/PropertiesDialog.ui" line="356"/>
         <source>&lt;b&gt;Description&lt;/b&gt;
 &lt;p&gt;Enter a short description for the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Descripcion&lt;/b&gt;&lt;p&gt;Introduzca una descripción corta para el proyecto.&lt;/p&gt;</translation>
@@ -54006,17 +54059,17 @@
  presione el botón de la derecha&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="305"/>
+        <location filename="../Project/PropertiesDialog.ui" line="319"/>
         <source>&amp;Email:</source>
         <translation>&amp;Correo electrónico:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="315"/>
+        <location filename="../Project/PropertiesDialog.ui" line="329"/>
         <source>Enter authors email</source>
         <translation>Introduzca el correo electrónico de los autores</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="318"/>
+        <location filename="../Project/PropertiesDialog.ui" line="332"/>
         <source>&lt;b&gt;Email&lt;/b&gt;
 &lt;p&gt;Enter the email address of the author&lt;/p&gt;</source>
         <translation>&lt;b&gt;Email&lt;/b&gt;
@@ -54089,22 +54142,22 @@
         <translation>Alt+X</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="383"/>
+        <location filename="../Project/PropertiesDialog.ui" line="397"/>
         <source>Press to show information about the repository</source>
         <translation>Pulse para mostrar información acerca del repositorio</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="386"/>
+        <location filename="../Project/PropertiesDialog.ui" line="400"/>
         <source>Show &amp;Repository Info</source>
         <translation>Mostrar Información del &amp;Repositorio</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="389"/>
+        <location filename="../Project/PropertiesDialog.ui" line="403"/>
         <source>Alt+R</source>
         <translation>Alt+R</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="119"/>
+        <location filename="../Project/PropertiesDialog.py" line="127"/>
         <source>The project is not version controlled.</source>
         <translation>El proyecto no tiene control de versiones.</translation>
     </message>
@@ -54145,12 +54198,12 @@
         <translation>Propiedades de la Corrección Ortográfica...</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="113"/>
+        <location filename="../Project/PropertiesDialog.py" line="121"/>
         <source>The project is version controlled by &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation>El proyecto está bajo control de versiones de &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="58"/>
+        <location filename="../Project/PropertiesDialog.py" line="66"/>
         <source>Source Files ({0});;All Files (*)</source>
         <translation>Archivos fuente ({0});;Todos los archivos (*)</translation>
     </message>
@@ -54185,12 +54238,12 @@
         <translation>Windows/DOS</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="358"/>
+        <location filename="../Project/PropertiesDialog.ui" line="372"/>
         <source>Select to create a version controlled project</source>
         <translation>Seleccionar para crear un proyecto con control de versiones</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="361"/>
+        <location filename="../Project/PropertiesDialog.ui" line="375"/>
         <source>Version Controlled Project</source>
         <translation>Proyecto con Control de Versiones</translation>
     </message>
@@ -54209,6 +54262,21 @@
         <source>Press to open a dialog to enter the &apos;make&apos; parameters</source>
         <translation>Pulsar para abrir un diálogo para introducir los parámetros para &apos;make&apos;</translation>
     </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="291"/>
+        <source>Select the docstring style for the project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.py" line="50"/>
+        <source>None</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ProtobufPage</name>
--- a/eric6/i18n/eric6_fr.ts	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/i18n/eric6_fr.ts	Fri Jan 22 16:48:43 2021 +0100
@@ -8822,7 +8822,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="86"/>
         <source>docstring summary does not end with a period</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8857,7 +8857,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
         <source>docstring summary is not followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8867,92 +8867,92 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
         <source>private function/method is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="76"/>
         <source>private class is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="77"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="80"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
         <source>trailing quotes of docstring not on separate line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="87"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="90"/>
         <source>docstring does not contain a @return line but function/method returns something</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="91"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="94"/>
         <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="103"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="106"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="109"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <source>docstring contains too many @param/@keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="112"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="115"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="118"/>
         <source>class docstring is preceded by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="117"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="120"/>
         <source>class docstring is followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="119"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="122"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
         <source>function/method docstring is followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="131"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="134"/>
         <source>docstring does not contain a @exception line but function/method raises an exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="135"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="138"/>
         <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="158"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="161"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
@@ -8962,42 +8962,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="88"/>
         <source>docstring summary does not start with &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="139"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="142"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="145"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="148"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <source>docstring does not contain a @signal line but class defines signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="151"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="154"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="157"/>
         <source>documented signal &apos;{0}&apos; is not defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="75"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="78"/>
         <source>class docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9012,15 +9012,43 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="95"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="98"/>
         <source>docstring does not contain a @yield line but function/method yields something</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="99"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="102"/>
         <source>docstring contains a @yield line but function/method doesn&apos;t yield anything</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <source>function docstring still contains some placeholders</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>DocstringGenerator</name>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="42"/>
+        <source>Eric</source>
+        <translation type="unfinished">Eric</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="44"/>
+        <source>NumPy</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="46"/>
+        <source>Google</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="48"/>
+        <source>Sphinx</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DotDesktopListSelectionDialog</name>
@@ -11286,812 +11314,812 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="783"/>
+        <location filename="../QScintilla/Editor.py" line="785"/>
         <source>Undo</source>
         <translation>Défaire</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="786"/>
+        <location filename="../QScintilla/Editor.py" line="788"/>
         <source>Redo</source>
         <translation>Refaire</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="789"/>
+        <location filename="../QScintilla/Editor.py" line="791"/>
         <source>Revert to last saved state</source>
         <translation>Ecraser avec le dernier état enregistré</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="793"/>
+        <location filename="../QScintilla/Editor.py" line="795"/>
         <source>Cut</source>
         <translation>Couper</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="796"/>
+        <location filename="../QScintilla/Editor.py" line="798"/>
         <source>Copy</source>
         <translation>Copier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="799"/>
+        <location filename="../QScintilla/Editor.py" line="801"/>
         <source>Paste</source>
         <translation>Coller</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="807"/>
+        <location filename="../QScintilla/Editor.py" line="809"/>
         <source>Indent</source>
         <translation>Indenter</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="810"/>
+        <location filename="../QScintilla/Editor.py" line="812"/>
         <source>Unindent</source>
         <translation>Désindenter</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="813"/>
+        <location filename="../QScintilla/Editor.py" line="815"/>
         <source>Comment</source>
         <translation>Commenter</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="816"/>
+        <location filename="../QScintilla/Editor.py" line="818"/>
         <source>Uncomment</source>
         <translation>Décommenter</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Stream Comment</source>
         <translation>Commentaire type &quot;Stream&quot;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Box Comment</source>
         <translation>Commentaire type &quot;Bloc&quot;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="826"/>
-        <source>Select to brace</source>
-        <translation>Sélection parenthèses</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="828"/>
+        <source>Select to brace</source>
+        <translation>Sélection parenthèses</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Select all</source>
         <translation>Tout sélectionner</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="829"/>
+        <location filename="../QScintilla/Editor.py" line="831"/>
         <source>Deselect all</source>
         <translation>Tout déselectionner</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="847"/>
+        <location filename="../QScintilla/Editor.py" line="853"/>
         <source>Shorten empty lines</source>
         <translation>Raccourcir les lignes vides</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1044"/>
+        <location filename="../QScintilla/Editor.py" line="1050"/>
         <source>Languages</source>
         <translation>Langages</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="854"/>
+        <location filename="../QScintilla/Editor.py" line="860"/>
         <source>Use Monospaced Font</source>
         <translation>Utiliser une police monospacée</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="974"/>
+        <location filename="../QScintilla/Editor.py" line="980"/>
         <source>Check</source>
         <translation>Vérification</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="994"/>
+        <location filename="../QScintilla/Editor.py" line="1000"/>
         <source>Show</source>
         <translation>Afficher</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="902"/>
-        <source>Close</source>
-        <translation>Fermer</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="908"/>
+        <source>Close</source>
+        <translation>Fermer</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="914"/>
         <source>Save</source>
         <translation>Enregistrer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="911"/>
+        <location filename="../QScintilla/Editor.py" line="917"/>
         <source>Save As...</source>
         <translation>Enregistrer sous...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="933"/>
         <source>Print</source>
         <translation>Imprimer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="996"/>
-        <source>Code metrics...</source>
-        <translation>Statistiques du code...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="997"/>
-        <source>Code coverage...</source>
-        <translation>Code coverage...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1005"/>
-        <source>Profile data...</source>
-        <translation>Profiler les données...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1224"/>
-        <source>Toggle bookmark</source>
-        <translation>Placer/supprimer un signet</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1226"/>
-        <source>Next bookmark</source>
-        <translation>Signet suivant</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1228"/>
-        <source>Previous bookmark</source>
-        <translation>Signet précédent</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1230"/>
-        <source>Clear all bookmarks</source>
-        <translation>Effacer tous les signets</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1239"/>
-        <source>Toggle breakpoint</source>
-        <translation>Placer/supprimer un point d&apos;arrêt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1244"/>
-        <source>Edit breakpoint...</source>
-        <translation>Éditer le point d&apos;arrêt...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="5613"/>
-        <source>Enable breakpoint</source>
-        <translation>Activer le point d&apos;arrêt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1249"/>
-        <source>Next breakpoint</source>
-        <translation>Point d&apos;arrêt suivant</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1251"/>
-        <source>Previous breakpoint</source>
-        <translation>Point d&apos;arrêt précédent</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1256"/>
-        <source>Clear all breakpoints</source>
-        <translation>Effacer tous les points d&apos;arrêts</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
-        <source>Modification of Read Only file</source>
-        <translation>Modification de la lecture seule</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
-        <source>You are attempting to change a read only file. Please save to a different file first.</source>
-        <translation>Le fichier est en lecture seule. Sauvez d&apos;abord votre fichier sous un autre nom.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="2675"/>
-        <source>Printing...</source>
-        <translation>Impression....</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="2692"/>
-        <source>Printing completed</source>
-        <translation>Impression terminée</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="2694"/>
-        <source>Error while printing</source>
-        <translation>Erreur durant l&apos;impression</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="2697"/>
-        <source>Printing aborted</source>
-        <translation>Impression abandonnée</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3110"/>
-        <source>Open File</source>
-        <translation>Ouvrir Fichier</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
-        <source>Save File</source>
-        <translation>Enregistrer Fichier</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
-        <source>File Modified</source>
-        <translation>Fichier Modifié</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
-        <source>Autocompletion</source>
-        <translation>Autocompletion</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
-        <source>Autocompletion is not available because there is no autocompletion source set.</source>
-        <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="5616"/>
-        <source>Disable breakpoint</source>
-        <translation>Désactiver le point d&apos;arrêt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
-        <source>Code Coverage</source>
-        <translation>Code Coverage</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
-        <source>Please select a coverage file</source>
-        <translation>Sélectionner un fichier coverage</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
-        <source>Profile Data</source>
-        <translation>Profiler de données</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
-        <source>Please select a profile file</source>
-        <translation>Sélectionner un fichier profile</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
-        <source>Macro Name</source>
-        <translation>Nom de la macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
-        <source>Select a macro name:</source>
-        <translation>Sélectionner un nom de macro:</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6792"/>
-        <source>Macro files (*.macro)</source>
-        <translation>Fichier Macro (*.macro)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6750"/>
-        <source>Load macro file</source>
-        <translation>Charger un fichier macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6772"/>
-        <source>Error loading macro</source>
-        <translation>Erreur lors du chargement de la macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6792"/>
-        <source>Save macro file</source>
-        <translation>Enregistrer le fichier macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
-        <source>Save macro</source>
-        <translation>Enregistrer la macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6824"/>
-        <source>Error saving macro</source>
-        <translation>Erreur lors de l&apos;enregistrement de la macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6837"/>
-        <source>Start Macro Recording</source>
-        <translation>Démarrer l&apos;enregistrement de la macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
-        <source>Macro Recording</source>
-        <translation>Enregistrement de macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
-        <source>Enter name of the macro:</source>
-        <translation>Entrer le nom de la macro:</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7033"/>
-        <source>File changed</source>
-        <translation>Fichier modifié</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="859"/>
-        <source>Autosave enabled</source>
-        <translation>Sauvegarde automatique activée</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1304"/>
-        <source>Goto syntax error</source>
-        <translation>Aller à l&apos;erreur de syntaxe suivante</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1313"/>
-        <source>Clear syntax error</source>
-        <translation>Supprimer les flags d&apos;erreurs de syntaxe</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
-        <source>Drop Error</source>
-        <translation>Erreur de suppression</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
-        <source>Show syntax error message</source>
-        <translation>Afficher le message d&apos;erreur de syntaxe</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
-        <source>Syntax Error</source>
-        <translation>Erreur de syntaxe</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
-        <source>No syntax error message available.</source>
-        <translation>Aucun message d&apos;erreur de syntaxe..</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1241"/>
-        <source>Toggle temporary breakpoint</source>
-        <translation>Placer/Supprimer un point d&apos;arret temporaire</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="999"/>
-        <source>Show code coverage annotations</source>
-        <translation>Afficher les annotations de code coverage</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1002"/>
-        <source>Hide code coverage annotations</source>
-        <translation>Masquer les annotations de code coverage</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1335"/>
-        <source>Next uncovered line</source>
-        <translation>Ligne non executée suivante</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1339"/>
-        <source>Previous uncovered line</source>
-        <translation>Ligne non executée précédente</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
-        <source>Show Code Coverage Annotations</source>
-        <translation>Afficher les annotations de Code Coverage</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6047"/>
-        <source>All lines have been covered.</source>
-        <translation>Toutes les lignes ont été executées.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
-        <source>There is no coverage file available.</source>
-        <translation>Impossible de trouver le fichier de coverage.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
-        <source>Diagrams</source>
-        <translation>Diagrammes</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1020"/>
-        <source>Class Diagram...</source>
-        <translation>Diagramme des classes...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1022"/>
-        <source>Package Diagram...</source>
-        <translation>Diagramme des packages...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1024"/>
-        <source>Imports Diagram...</source>
-        <translation>Diagramme des modules...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1026"/>
-        <source>Application Diagram...</source>
-        <translation>Diagramme de l&apos;application...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1177"/>
-        <source>No Language</source>
-        <translation>Pas de langage</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7375"/>
-        <source>Resources</source>
-        <translation>Ressources</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
-        <source>Add file...</source>
-        <translation>Ajouter un fichier...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7379"/>
-        <source>Add files...</source>
-        <translation>Ajouter des fichiers...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
-        <source>Add aliased file...</source>
-        <translation>Ajouter un fichier alias...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7384"/>
-        <source>Add localized resource...</source>
-        <translation>Ajouter une ressource localisée...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7407"/>
-        <source>Add file resource</source>
-        <translation>Ajoute un fichier ressource</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7423"/>
-        <source>Add file resources</source>
-        <translation>Ajoute des fichiers ressources</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
-        <source>Add aliased file resource</source>
-        <translation>Ajoute un alias de fichier ressource</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
-        <source>Package Diagram</source>
-        <translation>Diagramme de package</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
-        <source>Include class attributes?</source>
-        <translation>Inclure les attributs de classes ?</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
-        <source>Application Diagram</source>
-        <translation>Diagramme de l&apos;application</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
-        <source>Include module names?</source>
-        <translation>Inclure les noms de modules ?</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7388"/>
-        <source>Add resource frame</source>
-        <translation>Ajouter un cadre ressource</translation>
+        <source>Code metrics...</source>
+        <translation>Statistiques du code...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1003"/>
+        <source>Code coverage...</source>
+        <translation>Code coverage...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1011"/>
+        <source>Profile data...</source>
+        <translation>Profiler les données...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1230"/>
+        <source>Toggle bookmark</source>
+        <translation>Placer/supprimer un signet</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1232"/>
+        <source>Next bookmark</source>
+        <translation>Signet suivant</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1234"/>
+        <source>Previous bookmark</source>
+        <translation>Signet précédent</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1236"/>
+        <source>Clear all bookmarks</source>
+        <translation>Effacer tous les signets</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1245"/>
+        <source>Toggle breakpoint</source>
+        <translation>Placer/supprimer un point d&apos;arrêt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1250"/>
+        <source>Edit breakpoint...</source>
+        <translation>Éditer le point d&apos;arrêt...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="5626"/>
+        <source>Enable breakpoint</source>
+        <translation>Activer le point d&apos;arrêt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1255"/>
+        <source>Next breakpoint</source>
+        <translation>Point d&apos;arrêt suivant</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1257"/>
+        <source>Previous breakpoint</source>
+        <translation>Point d&apos;arrêt précédent</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
+        <source>Clear all breakpoints</source>
+        <translation>Effacer tous les points d&apos;arrêts</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
+        <source>Modification of Read Only file</source>
+        <translation>Modification de la lecture seule</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
+        <source>You are attempting to change a read only file. Please save to a different file first.</source>
+        <translation>Le fichier est en lecture seule. Sauvez d&apos;abord votre fichier sous un autre nom.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="2681"/>
+        <source>Printing...</source>
+        <translation>Impression....</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="2698"/>
+        <source>Printing completed</source>
+        <translation>Impression terminée</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="2700"/>
+        <source>Error while printing</source>
+        <translation>Erreur durant l&apos;impression</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="2703"/>
+        <source>Printing aborted</source>
+        <translation>Impression abandonnée</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
+        <source>Open File</source>
+        <translation>Ouvrir Fichier</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
+        <source>Save File</source>
+        <translation>Enregistrer Fichier</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
+        <source>File Modified</source>
+        <translation>Fichier Modifié</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
+        <source>Autocompletion</source>
+        <translation>Autocompletion</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
+        <source>Autocompletion is not available because there is no autocompletion source set.</source>
+        <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="5629"/>
+        <source>Disable breakpoint</source>
+        <translation>Désactiver le point d&apos;arrêt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
+        <source>Code Coverage</source>
+        <translation>Code Coverage</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
+        <source>Please select a coverage file</source>
+        <translation>Sélectionner un fichier coverage</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
+        <source>Profile Data</source>
+        <translation>Profiler de données</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
+        <source>Please select a profile file</source>
+        <translation>Sélectionner un fichier profile</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
+        <source>Macro Name</source>
+        <translation>Nom de la macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
+        <source>Select a macro name:</source>
+        <translation>Sélectionner un nom de macro:</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
+        <source>Macro files (*.macro)</source>
+        <translation>Fichier Macro (*.macro)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6763"/>
+        <source>Load macro file</source>
+        <translation>Charger un fichier macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <source>Error loading macro</source>
+        <translation>Erreur lors du chargement de la macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
+        <source>Save macro file</source>
+        <translation>Enregistrer le fichier macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
+        <source>Save macro</source>
+        <translation>Enregistrer la macro</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="6837"/>
-        <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>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="956"/>
-        <source>Complete from Document</source>
-        <translation>à partir du document</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="958"/>
-        <source>Complete from APIs</source>
-        <translation>à partir des fichiers API</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="960"/>
-        <source>Complete from Document and APIs</source>
-        <translation>à partir du document et des fichiers API</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1344"/>
-        <source>Next task</source>
-        <translation>Tâche suivante</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1348"/>
-        <source>Previous task</source>
-        <translation>Tâche précédente</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1202"/>
-        <source>Export as</source>
-        <translation>Exporter en tant que</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
-        <source>Export source</source>
-        <translation>Exportation de source</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
-        <source>No export format given. Aborting...</source>
-        <translation>Aucun format d&apos;exportation indiqué. Abandon...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
-        <source>Imports Diagram</source>
-        <translation>Diagramme des modules</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
-        <source>Include imports from external modules?</source>
-        <translation>Inclure l&apos;importation de modules externes?</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="878"/>
-        <source>Calltip</source>
-        <translation>Calltip</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
-        <source>Print Preview</source>
-        <translation>Aperçu avant impression</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="468"/>
-        <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Fenêtre d&apos;édition&lt;/b&gt;&lt;p&gt;Cette fenêtre est utilisée pour afficher et éditer les codes sources. Vous pouvez en ouvrir autant que vous le souhaitez. Le nom du fichier ouvert est inscrit dans la barre principale.&lt;/p&gt;&lt;p&gt;Vous pouvez définir des points d&apos;arrêt en cliquant sur la marge de gauche, entre les numéros de lignes et les marques de pliage de code. Les points d&apos;arrêt peuvent être édités via le menu contextuel (en cliquant droit sur le point).&lt;/p&gt;&lt;p&gt;De manière similaire, vous pouvez définir des signets avec Shift+Click dans la marge.&lt;/p&gt;&lt;p&gt;Pour ces deux types de points, le menu contextuel (click droit) permet de défaire l&apos;action.&lt;/p&gt;&lt;p&gt;Le Ctrl+Click sur une marque d&apos;erreur de sytaxe permet de visualiser les informations sur l&apos;erreur.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
-        <source>Typing aids enabled</source>
-        <translation>Aide à la frappe activée</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1134"/>
-        <source>End-of-Line Type</source>
-        <translation>Type de fin de ligne</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1138"/>
-        <source>Unix</source>
-        <translation>Unix</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1145"/>
-        <source>Windows</source>
-        <translation>Windows</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1152"/>
-        <source>Macintosh</source>
-        <translation>Macintosh</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1093"/>
-        <source>Encodings</source>
-        <translation>Encodings</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1073"/>
-        <source>Guessed</source>
-        <translation>Suggestion</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1413"/>
-        <source>Alternatives</source>
-        <translation>Alternatives</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
-        <source>Pygments Lexer</source>
-        <translation>Analyseur Pygments</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
-        <source>Select the Pygments lexer to apply.</source>
-        <translation>Sélectionne l&apos;analyseur Pygments à appliquer.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7881"/>
-        <source>Check spelling...</source>
-        <translation>Correction orthographique...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="837"/>
-        <source>Check spelling of selection...</source>
-        <translation>Correction orthographique de la sélection...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7884"/>
-        <source>Add to dictionary</source>
-        <translation>Ajouter au dictionnaire</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7886"/>
-        <source>Ignore All</source>
-        <translation>Tout ignorer</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="841"/>
-        <source>Remove from dictionary</source>
-        <translation>Supprimer du dictionnaire</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="379"/>
-        <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1390"/>
-        <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1409"/>
-        <source>Alternatives ({0})</source>
-        <translation type="unfinished">Alternatives ({0})</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
-        <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="../QScintilla/Editor.py" line="3110"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être ouvert.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3234"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être enregistré.&lt;br/&gt;Raison : {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6763"/>
-        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6772"/>
-        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt; est corrompu.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6824"/>
-        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt; ne peut être écrit.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7213"/>
-        <source>{0} (ro)</source>
-        <translation type="unfinished">{0} (ro)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
-        <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&apos;est pas un fichier.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
-        <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1318"/>
-        <source>Next warning</source>
-        <translation>Alerte suivante</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1322"/>
-        <source>Previous warning</source>
-        <translation>Alerte précédente</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1326"/>
-        <source>Show warning message</source>
-        <translation>Afficher les messages d&apos;alerte</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1330"/>
-        <source>Clear warnings</source>
-        <translation>Effacer les alertes</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
-        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6610"/>
-        <source>Warning: {0}</source>
-        <translation>Alerte : {0}</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6617"/>
-        <source>Error: {0}</source>
-        <translation>Erreur : {0}</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7029"/>
-        <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
-        <translation>&lt;br&gt;&lt;b&gt;Alerte :&lt;/b&gt; Vous allez perdre vos modifications à la réouverture.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="920"/>
-        <source>Open &apos;rejection&apos; file</source>
-        <translation type="unfinished"></translation>
+        <source>Error saving macro</source>
+        <translation>Erreur lors de l&apos;enregistrement de la macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6850"/>
+        <source>Start Macro Recording</source>
+        <translation>Démarrer l&apos;enregistrement de la macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
+        <source>Macro Recording</source>
+        <translation>Enregistrement de macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
+        <source>Enter name of the macro:</source>
+        <translation>Entrer le nom de la macro:</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7046"/>
+        <source>File changed</source>
+        <translation>Fichier modifié</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="865"/>
+        <source>Autosave enabled</source>
+        <translation>Sauvegarde automatique activée</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
+        <source>Goto syntax error</source>
+        <translation>Aller à l&apos;erreur de syntaxe suivante</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1319"/>
+        <source>Clear syntax error</source>
+        <translation>Supprimer les flags d&apos;erreurs de syntaxe</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
+        <source>Drop Error</source>
+        <translation>Erreur de suppression</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1314"/>
+        <source>Show syntax error message</source>
+        <translation>Afficher le message d&apos;erreur de syntaxe</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
+        <source>Syntax Error</source>
+        <translation>Erreur de syntaxe</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
+        <source>No syntax error message available.</source>
+        <translation>Aucun message d&apos;erreur de syntaxe..</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1247"/>
+        <source>Toggle temporary breakpoint</source>
+        <translation>Placer/Supprimer un point d&apos;arret temporaire</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1005"/>
+        <source>Show code coverage annotations</source>
+        <translation>Afficher les annotations de code coverage</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1008"/>
+        <source>Hide code coverage annotations</source>
+        <translation>Masquer les annotations de code coverage</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1341"/>
+        <source>Next uncovered line</source>
+        <translation>Ligne non executée suivante</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1345"/>
+        <source>Previous uncovered line</source>
+        <translation>Ligne non executée précédente</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
+        <source>Show Code Coverage Annotations</source>
+        <translation>Afficher les annotations de Code Coverage</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6060"/>
+        <source>All lines have been covered.</source>
+        <translation>Toutes les lignes ont été executées.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
+        <source>There is no coverage file available.</source>
+        <translation>Impossible de trouver le fichier de coverage.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1024"/>
+        <source>Diagrams</source>
+        <translation>Diagrammes</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1026"/>
+        <source>Class Diagram...</source>
+        <translation>Diagramme des classes...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1028"/>
+        <source>Package Diagram...</source>
+        <translation>Diagramme des packages...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1030"/>
+        <source>Imports Diagram...</source>
+        <translation>Diagramme des modules...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1032"/>
+        <source>Application Diagram...</source>
+        <translation>Diagramme de l&apos;application...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1183"/>
+        <source>No Language</source>
+        <translation>Pas de langage</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7399"/>
+        <source>Resources</source>
+        <translation>Ressources</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7401"/>
+        <source>Add file...</source>
+        <translation>Ajouter un fichier...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
+        <source>Add files...</source>
+        <translation>Ajouter des fichiers...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7405"/>
+        <source>Add aliased file...</source>
+        <translation>Ajouter un fichier alias...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <source>Add localized resource...</source>
+        <translation>Ajouter une ressource localisée...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7431"/>
+        <source>Add file resource</source>
+        <translation>Ajoute un fichier ressource</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7447"/>
+        <source>Add file resources</source>
+        <translation>Ajoute des fichiers ressources</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
+        <source>Add aliased file resource</source>
+        <translation>Ajoute un alias de fichier ressource</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
+        <source>Package Diagram</source>
+        <translation>Diagramme de package</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
+        <source>Include class attributes?</source>
+        <translation>Inclure les attributs de classes ?</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
+        <source>Application Diagram</source>
+        <translation>Diagramme de l&apos;application</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
+        <source>Include module names?</source>
+        <translation>Inclure les noms de modules ?</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7412"/>
+        <source>Add resource frame</source>
+        <translation>Ajouter un cadre ressource</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6850"/>
+        <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>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="962"/>
+        <source>Complete from Document</source>
+        <translation>à partir du document</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="964"/>
+        <source>Complete from APIs</source>
+        <translation>à partir des fichiers API</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="966"/>
+        <source>Complete from Document and APIs</source>
+        <translation>à partir du document et des fichiers API</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1350"/>
+        <source>Next task</source>
+        <translation>Tâche suivante</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1354"/>
+        <source>Previous task</source>
+        <translation>Tâche précédente</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1208"/>
+        <source>Export as</source>
+        <translation>Exporter en tant que</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
+        <source>Export source</source>
+        <translation>Exportation de source</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
+        <source>No export format given. Aborting...</source>
+        <translation>Aucun format d&apos;exportation indiqué. Abandon...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
+        <source>Imports Diagram</source>
+        <translation>Diagramme des modules</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
+        <source>Include imports from external modules?</source>
+        <translation>Inclure l&apos;importation de modules externes?</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="884"/>
+        <source>Calltip</source>
+        <translation>Calltip</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="930"/>
+        <source>Print Preview</source>
+        <translation>Aperçu avant impression</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="470"/>
+        <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Fenêtre d&apos;édition&lt;/b&gt;&lt;p&gt;Cette fenêtre est utilisée pour afficher et éditer les codes sources. Vous pouvez en ouvrir autant que vous le souhaitez. Le nom du fichier ouvert est inscrit dans la barre principale.&lt;/p&gt;&lt;p&gt;Vous pouvez définir des points d&apos;arrêt en cliquant sur la marge de gauche, entre les numéros de lignes et les marques de pliage de code. Les points d&apos;arrêt peuvent être édités via le menu contextuel (en cliquant droit sur le point).&lt;/p&gt;&lt;p&gt;De manière similaire, vous pouvez définir des signets avec Shift+Click dans la marge.&lt;/p&gt;&lt;p&gt;Pour ces deux types de points, le menu contextuel (click droit) permet de défaire l&apos;action.&lt;/p&gt;&lt;p&gt;Le Ctrl+Click sur une marque d&apos;erreur de sytaxe permet de visualiser les informations sur l&apos;erreur.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="869"/>
+        <source>Typing aids enabled</source>
+        <translation>Aide à la frappe activée</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1140"/>
+        <source>End-of-Line Type</source>
+        <translation>Type de fin de ligne</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1144"/>
+        <source>Unix</source>
+        <translation>Unix</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1151"/>
+        <source>Windows</source>
+        <translation>Windows</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1158"/>
+        <source>Macintosh</source>
+        <translation>Macintosh</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1099"/>
+        <source>Encodings</source>
+        <translation>Encodings</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1079"/>
+        <source>Guessed</source>
+        <translation>Suggestion</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1419"/>
+        <source>Alternatives</source>
+        <translation>Alternatives</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
+        <source>Pygments Lexer</source>
+        <translation>Analyseur Pygments</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
+        <source>Select the Pygments lexer to apply.</source>
+        <translation>Sélectionne l&apos;analyseur Pygments à appliquer.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7905"/>
+        <source>Check spelling...</source>
+        <translation>Correction orthographique...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="839"/>
+        <source>Check spelling of selection...</source>
+        <translation>Correction orthographique de la sélection...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7908"/>
+        <source>Add to dictionary</source>
+        <translation>Ajouter au dictionnaire</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7910"/>
+        <source>Ignore All</source>
+        <translation>Tout ignorer</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="843"/>
+        <source>Remove from dictionary</source>
+        <translation>Supprimer du dictionnaire</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="381"/>
+        <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1396"/>
+        <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1415"/>
+        <source>Alternatives ({0})</source>
+        <translation type="unfinished">Alternatives ({0})</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
+        <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="../QScintilla/Editor.py" line="3116"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être ouvert.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3240"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être enregistré.&lt;br/&gt;Raison : {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6776"/>
+        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt; est corrompu.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6837"/>
+        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt; ne peut être écrit.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7237"/>
+        <source>{0} (ro)</source>
+        <translation type="unfinished">{0} (ro)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
+        <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&apos;est pas un fichier.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
+        <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1324"/>
+        <source>Next warning</source>
+        <translation>Alerte suivante</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1328"/>
+        <source>Previous warning</source>
+        <translation>Alerte précédente</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1332"/>
+        <source>Show warning message</source>
+        <translation>Afficher les messages d&apos;alerte</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
+        <source>Clear warnings</source>
+        <translation>Effacer les alertes</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
+        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Le fichier macro &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6623"/>
+        <source>Warning: {0}</source>
+        <translation>Alerte : {0}</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6630"/>
+        <source>Error: {0}</source>
+        <translation>Erreur : {0}</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7042"/>
+        <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
+        <translation>&lt;br&gt;&lt;b&gt;Alerte :&lt;/b&gt; Vous allez perdre vos modifications à la réouverture.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="926"/>
+        <source>Open &apos;rejection&apos; file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1036"/>
         <source>Load Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1353"/>
+        <location filename="../QScintilla/Editor.py" line="1359"/>
         <source>Next change</source>
         <translation>Modification suivante</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1357"/>
+        <location filename="../QScintilla/Editor.py" line="1363"/>
         <source>Previous change</source>
         <translation>Modification précédente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation>La sélection contient des données illégales pour un tri numérique.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
         <source>Warning</source>
         <translation>Warning</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
         <source>No warning messages available.</source>
         <translation>Pas de message d&apos;alerte disponible.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6607"/>
+        <location filename="../QScintilla/Editor.py" line="6620"/>
         <source>Style: {0}</source>
         <translation>Style : {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
+        <location filename="../QScintilla/Editor.py" line="900"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="897"/>
+        <location filename="../QScintilla/Editor.py" line="903"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="984"/>
+        <location filename="../QScintilla/Editor.py" line="990"/>
         <source>Tools</source>
         <translation>Outils</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1115"/>
+        <location filename="../QScintilla/Editor.py" line="1121"/>
         <source>Re-Open With Encoding</source>
         <translation>Réouvrir avec encodage</translation>
     </message>
@@ -12101,120 +12129,130 @@
         <translation type="obsolete">&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; a été modifié depuis l&apos;ouverture dans eric6. Le relire ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="876"/>
         <source>Automatic Completion enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="950"/>
+        <location filename="../QScintilla/Editor.py" line="956"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
         <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="5184"/>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5184"/>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
         <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="8391"/>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8391"/>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="914"/>
+        <location filename="../QScintilla/Editor.py" line="920"/>
         <source>Save Copy...</source>
         <translation>Enregistrer une copie...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="953"/>
+        <location filename="../QScintilla/Editor.py" line="959"/>
         <source>Clear Completions Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="880"/>
+        <location filename="../QScintilla/Editor.py" line="886"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1361"/>
+        <location filename="../QScintilla/Editor.py" line="1367"/>
         <source>Clear changes</source>
         <translation>Effacer les modifications</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="803"/>
+        <location filename="../QScintilla/Editor.py" line="805"/>
         <source>Execute Selection In Console</source>
         <translation>Exécuter la sélection en console</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>EditorConfig Properties</source>
         <translation>Propriétés d&apos;EditorConfig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Les propriétés d&apos;EditorConfig du fichier &lt;b&gt;{0}&lt;/b&gt; n&apos;ont pas pu être chargées.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
+        <location filename="../QScintilla/Editor.py" line="1271"/>
         <source>Toggle all folds</source>
         <translation>Contracte/Déploie tout le code</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1270"/>
+        <location filename="../QScintilla/Editor.py" line="1276"/>
         <source>Toggle all folds (including children)</source>
         <translation>Contracte/Déploie tout le code (sous-niveaux inclus)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1275"/>
-        <source>Toggle current fold</source>
-        <translation>Contracte/Déploie le paragraphe courant</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1281"/>
+        <source>Toggle current fold</source>
+        <translation>Contracte/Déploie le paragraphe courant</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1287"/>
         <source>Expand (including children)</source>
         <translation>Déploie (sous-niveaux inclus)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
-        <source>Collapse (including children)</source>
-        <translation>Contracte (sous-niveaux inclus)</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1292"/>
+        <source>Collapse (including children)</source>
+        <translation>Contracte (sous-niveaux inclus)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1298"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1173"/>
+        <location filename="../QScintilla/Editor.py" line="1179"/>
         <source>Spell Check Languages</source>
         <translation>Correction orthographique</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7023"/>
+        <location filename="../QScintilla/Editor.py" line="7036"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="849"/>
+        <source>Insert Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorAPIsPage</name>
@@ -13480,72 +13518,72 @@
 <context>
     <name>EditorGeneralPage</name>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="125"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="169"/>
         <source>Displays the selected indentation width.</source>
         <translation>Affiche la largeur des indentations.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="103"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="147"/>
         <source>Move to set the indentation width.</source>
         <translation>Déplacer pour définir une largeur d&apos;indentation.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="93"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="137"/>
         <source>Indentation width:</source>
         <translation>Largeur des Indentations:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="55"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="99"/>
         <source>Move to set the tab width.</source>
         <translation>Déplacer pour définir la largeur des indentations.</translation>
     </message>
     <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="89"/>
+        <source>Tab width:</source>
+        <translation>Largeur des tabulations:</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="121"/>
+        <source>Displays the selected tab width.</source>
+        <translation>Affiche la largeur des tabulation.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="75"/>
+        <source>Select whether tabs shall be converted upon opening the file</source>
+        <translation>Indique si les tabulations doivent être converties à l&apos;ouverture du fichier</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="78"/>
+        <source>Convert tabs upon open</source>
+        <translation>Convertir les tabulations à l&apos;ouverture du fichier</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="65"/>
+        <source>Select whether pressing the tab key indents.</source>
+        <translation>Indique si la touche &quot;Tab&quot; effectue une indentation.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="68"/>
+        <source>Tab key indents</source>
+        <translation>Indentation avec la touche &quot;Tab&quot;</translation>
+    </message>
+    <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="45"/>
-        <source>Tab width:</source>
-        <translation>Largeur des tabulations:</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="77"/>
-        <source>Displays the selected tab width.</source>
-        <translation>Affiche la largeur des tabulation.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="266"/>
-        <source>Select whether tabs shall be converted upon opening the file</source>
-        <translation>Indique si les tabulations doivent être converties à l&apos;ouverture du fichier</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="269"/>
-        <source>Convert tabs upon open</source>
-        <translation>Convertir les tabulations à l&apos;ouverture du fichier</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="256"/>
-        <source>Select whether pressing the tab key indents.</source>
-        <translation>Indique si la touche &quot;Tab&quot; effectue une indentation.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="259"/>
-        <source>Tab key indents</source>
-        <translation>Indentation avec la touche &quot;Tab&quot;</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="236"/>
         <source>Select whether autoindentation shall be enabled</source>
         <translation>Cocher pour activer l&apos;autoindentation</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="239"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="48"/>
         <source>Auto indentation</source>
         <translation>Autoindentation</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="246"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="55"/>
         <source>Select whether tab characters are used for indentations.</source>
         <translation>Indique si les Tabs doivent être utilisés pour l&apos;indentations.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="249"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="58"/>
         <source>Use tabs for indentations</source>
         <translation>Utilise des tabulations pour l&apos;indentation</translation>
     </message>
@@ -13560,135 +13598,150 @@
         <translation>Tabulations &amp;&amp; Indentation</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="371"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="373"/>
         <source>Comments</source>
         <translation>Commentaires</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="377"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="379"/>
         <source>Select to insert the comment sign at column 0</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="383"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="385"/>
         <source>Insert comment at column 0</source>
         <translation>Insérer un commentaire à la colonne 0</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="380"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="382"/>
         <source>&lt;b&gt;Insert comment at column 0&lt;/b&gt;&lt;p&gt;Select to insert the comment sign at column 0. Otherwise, the comment sign is inserted at the first non-whitespace position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="393"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="424"/>
         <source>Virtual Space</source>
         <translation>Espace virtuel</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="399"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="430"/>
         <source>Virtual space is the space after the last character of a line. It is not allocated unless some text is entered or copied into it. Usage of virtual space can be configured with these selections.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="409"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="440"/>
         <source>Select to enable a rectangular selection to extend into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="412"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="443"/>
         <source>Selection may access virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="419"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="450"/>
         <source>Select to allow the cursor to be moved into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="422"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="453"/>
         <source>Cursor can move into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="158"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="206"/>
         <source>Language</source>
         <translation>Langage</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="163"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="211"/>
         <source>Tab Width</source>
         <translation>Largeur de tabulation</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="168"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="216"/>
         <source>Indent Width</source>
         <translation>Largeur d&apos;indentation</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="196"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="244"/>
         <source>Press to add a language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="203"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="251"/>
         <source>Press to delete the selected language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="210"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="258"/>
         <source>Press to edit the selected language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Tab and Indent Override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Shall the selected entries really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="281"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="283"/>
         <source>Select to enable the source code outline view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="284"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="286"/>
         <source>Source Code Outline</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="293"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="295"/>
         <source>Default Width:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="320"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="302"/>
         <source>Enter the default width of the source code outline view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="313"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="321"/>
         <source>Width Step Size:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="339"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="328"/>
         <source>Enter the amount of pixels the width of the outline should be increased or decreased</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="358"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="360"/>
         <source>Select to show the source code encoding</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="361"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="363"/>
         <source>Show source file encoding</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="395"/>
+        <source>Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="401"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="414"/>
+        <source>Select the docstring style to be used</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorHighlightersPage</name>
@@ -52778,17 +52831,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1627"/>
+        <location filename="../Preferences/__init__.py" line="1629"/>
         <source>Export Preferences</source>
         <translation>Export des préférences</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Import Preferences</source>
         <translation>Import des préférences</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation>Fichier propriétés (*.ini);;Tous les fichiers (*)</translation>
     </message>
@@ -53319,492 +53372,492 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>Read project file</source>
         <translation>Lire un fichier projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>Save project file</source>
         <translation>Enregistrer le fichier projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>Read project session</source>
         <translation>Lire la session du projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1244"/>
+        <location filename="../Project/Project.py" line="1245"/>
         <source>Please save the project first.</source>
         <translation>Prière d&apos;enregistrer votre projet d&apos;abord.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>Save project session</source>
         <translation>Enregistrer la session</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>Add Language</source>
         <translation>Ajouter une langue</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>Delete translation</source>
         <translation>Supprimer la traduction</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1677"/>
+        <location filename="../Project/Project.py" line="1678"/>
         <source>Add file</source>
         <translation>Ajouter un fichier</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1809"/>
+        <location filename="../Project/Project.py" line="1810"/>
         <source>The target directory must not be empty.</source>
         <translation>Le répertoire cible ne doit pas être vide.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>Add directory</source>
         <translation>Ajouter un répertoire</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>The source directory must not be empty.</source>
         <translation>Le répertoire source ne doit pas être vide.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>Delete file</source>
         <translation>Suppression de fichier</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>Create project directory</source>
         <translation>Création d&apos;un répertoire projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>New project</source>
         <translation>Nouveau projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>Open project</source>
         <translation>Ouvir un projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save project as</source>
         <translation>Enregistrer le projet sous</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>Save File</source>
         <translation>Enregistrer Fichier</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>Close Project</source>
         <translation>Fermer le projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>The current project has unsaved changes.</source>
         <translation>Le projet courant a des modifications non enregistrées.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>&amp;Save</source>
         <translation>&amp;Enregistrer</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>&amp;New...</source>
         <translation>&amp;Nouveau...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3850"/>
-        <source>Generate a new project</source>
-        <translation>Génerer un nouveau projet</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3851"/>
+        <source>Generate a new project</source>
+        <translation>Génerer un nouveau projet</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3852"/>
         <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nouveau...&lt;/b&gt;&lt;p&gt;Ouvre une boite de dialogue pour entrer les paramètres d&apos;un nouveau projet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>&amp;Open...</source>
         <translation>&amp;Ouvrir...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3864"/>
-        <source>Open an existing project</source>
-        <translation>Ouvrir un projet existant</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3865"/>
+        <source>Open an existing project</source>
+        <translation>Ouvrir un projet existant</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3866"/>
         <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ouvrir...&lt;/b&gt;&lt;p&gt;Ouvre un projet existant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>Close project</source>
         <translation>Fermer le projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>&amp;Close</source>
         <translation>&amp;Fermer</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3876"/>
-        <source>Close the current project</source>
-        <translation>Fermer le projet en cours</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3877"/>
+        <source>Close the current project</source>
+        <translation>Fermer le projet en cours</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3878"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fermer&lt;/b&gt;&lt;p&gt;Ferme le projet en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3884"/>
+        <location filename="../Project/Project.py" line="3885"/>
         <source>Save project</source>
         <translation>Enregistrer le projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3888"/>
-        <source>Save the current project</source>
-        <translation>Enregistre le projet courant</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3889"/>
+        <source>Save the current project</source>
+        <translation>Enregistre le projet courant</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3890"/>
         <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Enregistrer&lt;/b&gt;&lt;p&gt;Enregistre le projet en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save &amp;as...</source>
         <translation>&amp;Enregistrer sous...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3900"/>
+        <location filename="../Project/Project.py" line="3901"/>
         <source>Save the current project to a new file</source>
         <translation>Enregistre le projet en cours dans un nouveau fichier</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3902"/>
+        <location filename="../Project/Project.py" line="3903"/>
         <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Enregistrer sous&lt;/b&gt;&lt;p&gt;Enregistre le projet en cours dans un nouveau fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add translation to project</source>
         <translation>Ajouter une traduction au projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add &amp;translation...</source>
         <translation>Ajouter une &amp;traduction...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3947"/>
+        <location filename="../Project/Project.py" line="3948"/>
         <source>Add a translation to the current project</source>
         <translation>Ajoute une traduction au projet en cours</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3949"/>
+        <location filename="../Project/Project.py" line="3950"/>
         <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ajouter une traduction...&lt;/b&gt;&lt;p&gt;Ouvre une boite de dialogue pour ajouter une traduction au projet courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Search new files</source>
         <translation>Rechercher des nouveaux fichiers</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Searc&amp;h new files...</source>
         <translation>Re&amp;chercher des nouveaux fichiers...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3961"/>
+        <location filename="../Project/Project.py" line="3962"/>
         <source>Search new files in the project directory.</source>
         <translation>Recherche des nouveaux fichiers dans le répertoire du projet.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>Project properties</source>
         <translation>Propriétés du projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>&amp;Properties...</source>
         <translation>&amp;Propriétés...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3992"/>
-        <source>Show the project properties</source>
-        <translation>Affiche les propriétés du projet</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3993"/>
+        <source>Show the project properties</source>
+        <translation>Affiche les propriétés du projet</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3994"/>
         <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Propriétés...&lt;/b&gt;&lt;p&gt;Affiche une boite de dialogue pour éditer les propriétés du projet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4115"/>
+        <location filename="../Project/Project.py" line="4116"/>
         <source>Load session</source>
         <translation>Charger la session</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4119"/>
-        <source>Load the projects session file.</source>
-        <translation>Charge le fichier de session du projet.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4120"/>
+        <source>Load the projects session file.</source>
+        <translation>Charge le fichier de session du projet.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4121"/>
         <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation>&lt;b&gt;Charger la session&lt;/b&gt;&lt;p&gt;Charge le fichier session du projet. Une session est constituée par les données suivantes.&lt;br&gt;- tous les fichiers open source&lt;br&gt;- tous les points d&apos;arrêts&lt;br&gt;- les arguments de ligne de commande&lt;br&gt;- le répertoire de travail&lt;br&gt;- le flag de rapport d&apos;exception&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4133"/>
+        <location filename="../Project/Project.py" line="4134"/>
         <source>Save session</source>
         <translation>Enregistrer la session</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4137"/>
-        <source>Save the projects session file.</source>
-        <translation>Enregistre le fichier de session du projet.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4138"/>
+        <source>Save the projects session file.</source>
+        <translation>Enregistre le fichier de session du projet.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4139"/>
         <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation>&lt;b&gt;Enregistrer la session&lt;/b&gt;&lt;p&gt;Enregistrer le fichier session du projet. Une session est constituée par les données suivantes.&lt;br&gt;- tous les fichiers open source&lt;br&gt;- tous les points d&apos;arrêts&lt;br&gt;- les arguments de ligne de commande&lt;br&gt;- le répertoire de travail&lt;br&gt;- le flag de rapport d&apos;exception&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>Code Metrics</source>
         <translation>Statistiques du code</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>&amp;Code Metrics...</source>
         <translation>Statistiques du &amp;Code...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4169"/>
+        <location filename="../Project/Project.py" line="4170"/>
         <source>Show some code metrics for the project.</source>
         <translation>Affiche des statistiques sur le code du projet.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4171"/>
+        <location filename="../Project/Project.py" line="4172"/>
         <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Statistiques du Code...&lt;/b&gt;&lt;p&gt;Affiche des statistiques sur le code de tous les fichiers Python du projet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Python Code Coverage</source>
         <translation> Code Coverage Python</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Code Co&amp;verage...</source>
         <translation>Code Co&amp;verage...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4183"/>
+        <location filename="../Project/Project.py" line="4184"/>
         <source>Show code coverage information for the project.</source>
         <translation>Affiche les informations de code coverage pour le projet.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4185"/>
+        <location filename="../Project/Project.py" line="4186"/>
         <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;Affiche les informations de code coverage pour le projet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Profile Data</source>
         <translation>Profiling des données</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4193"/>
+        <location filename="../Project/Project.py" line="4194"/>
         <source>&amp;Profile Data...</source>
         <translation>&amp;Profiling des données...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4197"/>
+        <location filename="../Project/Project.py" line="4198"/>
         <source>Show profiling data for the project.</source>
         <translation>Affiche le profiling des données du projet.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4199"/>
+        <location filename="../Project/Project.py" line="4200"/>
         <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profilling des données...&lt;/b&gt;&lt;p&gt;Affiche le profiling des données du projet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Application Diagram</source>
         <translation>Diagramme de l&apos;application</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4208"/>
+        <location filename="../Project/Project.py" line="4209"/>
         <source>&amp;Application Diagram...</source>
         <translation>&amp;Diagramme de l&apos;application...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4212"/>
+        <location filename="../Project/Project.py" line="4213"/>
         <source>Show a diagram of the project.</source>
         <translation>Affiche le diagramme de l&apos;application.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4214"/>
+        <location filename="../Project/Project.py" line="4215"/>
         <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Diagramme de l&apos;application...&lt;/b&gt;&lt;p&gt;Affiche le diagramme du projet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4340"/>
+        <location filename="../Project/Project.py" line="4341"/>
         <source>Open &amp;Recent Projects</source>
         <translation>Ouvrir un projet &amp;récent</translation>
     </message>
     <message>
+        <location filename="../Project/Project.py" line="4353"/>
+        <source>&amp;Diagrams</source>
+        <translation>&amp;Diagrammes</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4350"/>
+        <source>Chec&amp;k</source>
+        <translation>&amp;Vérification</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4346"/>
+        <source>&amp;Version Control</source>
+        <translation>&amp;Contrôle de version</translation>
+    </message>
+    <message>
         <location filename="../Project/Project.py" line="4352"/>
-        <source>&amp;Diagrams</source>
-        <translation>&amp;Diagrammes</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4349"/>
-        <source>Chec&amp;k</source>
-        <translation>&amp;Vérification</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4345"/>
-        <source>&amp;Version Control</source>
-        <translation>&amp;Contrôle de version</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4351"/>
         <source>Sho&amp;w</source>
         <translation>&amp;Affichage</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4354"/>
+        <location filename="../Project/Project.py" line="4355"/>
         <source>Source &amp;Documentation</source>
         <translation>&amp;Documentation automatique</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>Search New Files</source>
         <translation>Rechercher des nouveaux fichiers</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>There were no new files found to be added.</source>
         <translation>Aucun fichier à ajouter n&apos;a été trouvé.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>Version Control System</source>
         <translation>Système de conrôle des versions (VCS)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4996"/>
+        <location filename="../Project/Project.py" line="4997"/>
         <source>Coverage Data</source>
         <translation>Coverage de données</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5046"/>
+        <location filename="../Project/Project.py" line="5047"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>Il n&apos;y a pas de script principal défini dans le projet en cours. Abandon</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1957"/>
+        <location filename="../Project/Project.py" line="1958"/>
         <source>Rename file</source>
         <translation>Renommer le fichier</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>Rename File</source>
         <translation>Renommer le fichier</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>New Project</source>
         <translation>Nouveau projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2476"/>
+        <location filename="../Project/Project.py" line="2477"/>
         <source>Add existing files to the project?</source>
         <translation>Ajouter des fichiers existant au projet ?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2603"/>
+        <location filename="../Project/Project.py" line="2604"/>
         <source>Would you like to edit the VCS command options?</source>
         <translation>Voulez-vous éditer les options de commande VCS ?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2546"/>
+        <location filename="../Project/Project.py" line="2547"/>
         <source>Shall the project file be added to the repository?</source>
         <translation>Le fichier projet doit-il être ajouté au référentiel?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2575"/>
+        <location filename="../Project/Project.py" line="2576"/>
         <source>Select version control system for the project</source>
         <translation>Sélectionner un système de contrôle de version (VCS) pour le projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory to project</source>
         <translation>Ajouter un répertoire au projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory...</source>
         <translation>Ajouter un répertoire...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3932"/>
+        <location filename="../Project/Project.py" line="3933"/>
         <source>Add a directory to the current project</source>
         <translation>Ajouter un répertoire au projet courant</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3934"/>
+        <location filename="../Project/Project.py" line="3935"/>
         <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ajouter un répertoire...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre pour ajouter un répertoire au projet courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Code Coverage</source>
         <translation>Code Coverage</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Please select a coverage file</source>
         <translation>Sélectionner un fichier coverage</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Please select a profile file</source>
         <translation>Sélectionner un fichier profile</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>Delete project session</source>
         <translation>Supprime la session de projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4151"/>
+        <location filename="../Project/Project.py" line="4152"/>
         <source>Delete session</source>
         <translation>Supprimer la session</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4155"/>
-        <source>Delete the projects session file.</source>
-        <translation>Suppression du fichier session de projet.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4156"/>
+        <source>Delete the projects session file.</source>
+        <translation>Suppression du fichier session de projet.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4157"/>
         <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suppression de session&lt;/b&gt;&lt;p&gt;Ceci supprime le fichier session de projet.&lt;/p&gt;</translation>
     </message>
@@ -53819,242 +53872,242 @@
         <translation>Autre</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Include module names?</source>
         <translation>Inclure les noms de modules ?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>Delete directory</source>
         <translation>Suppression répertoire</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>Read tasks</source>
         <translation>Tâches lues</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>Save tasks</source>
         <translation>Tâches enregistrées</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>Read debugger properties</source>
         <translation>Lecture des propriétés du débogueur</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>Save debugger properties</source>
         <translation>Enregistrement des propriétés du débogueur</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>Delete debugger properties</source>
         <translation>Suppression des propriétés du débogueur</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger Properties</source>
         <translation>Propriétés du Débogueur</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger &amp;Properties...</source>
         <translation>Débogueur &amp; Propriétés...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4055"/>
-        <source>Show the debugger properties</source>
-        <translation>Affichage des propriétés du débogueur</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4056"/>
+        <source>Show the debugger properties</source>
+        <translation>Affichage des propriétés du débogueur</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4057"/>
         <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Propriétés du Débogueur...&lt;/b&gt;&lt;p&gt;Affiche une boite de dialogue permettant d&apos;éditer les proprités du débogueur, spécifiques au projet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>Load</source>
         <translation>Charger</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>&amp;Load</source>
         <translation>&amp;Charger</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4068"/>
+        <location filename="../Project/Project.py" line="4069"/>
         <source>Load the debugger properties</source>
         <translation>Charger les propriétés du débogueur</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>Save</source>
         <translation>Enregistrer</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4080"/>
+        <location filename="../Project/Project.py" line="4081"/>
         <source>Save the debugger properties</source>
         <translation>Enregistrer les propriétés du débogueur</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>Delete</source>
         <translation>Supprimer</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>&amp;Delete</source>
         <translation>&amp;Supprimer</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4092"/>
+        <location filename="../Project/Project.py" line="4093"/>
         <source>Delete the debugger properties</source>
         <translation>Supprimer les propriétés du débogueur</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>Reset</source>
         <translation>Réinitialiser</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>&amp;Reset</source>
         <translation>&amp;Réinitialiser</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4105"/>
+        <location filename="../Project/Project.py" line="4106"/>
         <source>Reset the debugger properties</source>
         <translation>Réinitialise des propriétés du débogueur</translation>
     </message>
     <message>
+        <location filename="../Project/Project.py" line="4343"/>
+        <source>Debugger</source>
+        <translation>Débogueur</translation>
+    </message>
+    <message>
         <location filename="../Project/Project.py" line="4342"/>
-        <source>Debugger</source>
-        <translation>Débogueur</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4341"/>
         <source>Session</source>
         <translation>Session</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4069"/>
+        <location filename="../Project/Project.py" line="4070"/>
         <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Chargement des Propriétés du Débogueur&lt;/b&gt;&lt;p&gt;Charge la configuration du débogueur spécifique au projet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4081"/>
+        <location filename="../Project/Project.py" line="4082"/>
         <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Enregistrement des Propriétés du Débogueur&lt;/b&gt;&lt;p&gt;Enregistre la configuration du débogueur spécifique au projet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4093"/>
+        <location filename="../Project/Project.py" line="4094"/>
         <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suppression des Propriétés du Débogueur...&lt;/b&gt;&lt;p&gt;Supprime la configuration du débogueur spécifique au projet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4106"/>
+        <location filename="../Project/Project.py" line="4107"/>
         <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Réinitialiser les propriétés du débogueur&lt;/b&gt;&lt;p&gt;Réinitialise la configuration du débogueur spécifique au projet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations</source>
         <translation>Association des types de fichiers</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations...</source>
         <translation>Association des types de fichiers...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4019"/>
+        <location filename="../Project/Project.py" line="4020"/>
         <source>Show the project filetype associations</source>
         <translation>Affiche les asociation Fichier/Type de fichier pour le projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4353"/>
+        <location filename="../Project/Project.py" line="4354"/>
         <source>Pac&amp;kagers</source>
         <translation>Création de pac&amp;kage</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add files to project</source>
         <translation>Ajouter des fichiers au projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add &amp;files...</source>
         <translation>Ajouter des &amp;fichiers...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3916"/>
+        <location filename="../Project/Project.py" line="3917"/>
         <source>Add files to the current project</source>
         <translation>Ajouter des fichiers au projet courant</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3918"/>
+        <location filename="../Project/Project.py" line="3919"/>
         <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ajouter des fichiers...&lt;/b&gt;&lt;p&gt;Ouvre une boite de dialogue pour ajouter des fichiers au projet courant. La position pour l&apos;insertion est déterminée par l&apos;extension du fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3120"/>
+        <location filename="../Project/Project.py" line="3121"/>
         <source>Project Files (*.e4p)</source>
         <translation>Fichiers projets (*.e4p)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4339"/>
+        <location filename="../Project/Project.py" line="4340"/>
         <source>&amp;Project</source>
         <translation>&amp;Projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4479"/>
+        <location filename="../Project/Project.py" line="4480"/>
         <source>Project</source>
         <translation>Projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4545"/>
+        <location filename="../Project/Project.py" line="4546"/>
         <source>&amp;Clear</source>
         <translation>&amp;Effacer</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>Read user project properties</source>
         <translation>Lire les propriétés utilisateur du projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>Save user project properties</source>
         <translation>Enregistrer les propriétés utilisateur du projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>User project properties</source>
         <translation>Propriétés utilisateur du projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>&amp;User Properties...</source>
         <translation>Propriétés &amp;Utilisateur...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4005"/>
+        <location filename="../Project/Project.py" line="4006"/>
         <source>Show the user specific project properties</source>
         <translation>Afficher le propriétés utilisateurs spécifiques au projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4007"/>
+        <location filename="../Project/Project.py" line="4008"/>
         <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Propriétés utilisateur...&lt;/b&gt;&lt;p&gt;Affiche une fenêtre permettant d&apos;éditer les propriétés du projet spécifiques à l&apos;utilisateur.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>Syntax errors detected</source>
         <translation>Erreurs de syntaxe détectées</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>The project contains %n file(s) with syntax errors.</source>
         <translation>
             <numerusform>Le projet contient %n fichier avec des erreurs de syntaxe.</numerusform>
@@ -54062,42 +54115,42 @@
         </translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>Create Package List</source>
         <translation>Création de la liste de package</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4237"/>
+        <location filename="../Project/Project.py" line="4238"/>
         <source>Create &amp;Package List</source>
         <translation>Création de la liste de &amp;package</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>Create Plugin Archive</source>
         <translation>Création de l&apos;archive du plugin</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5267"/>
+        <location filename="../Project/Project.py" line="5268"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;PKGLIST&lt;/b&gt; existe déjà.&lt;/p&gt;&lt;p&gt;Ecraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5337"/>
+        <location filename="../Project/Project.py" line="5338"/>
         <source>The project does not have a main script defined. Aborting...</source>
         <translation>Le projet n&apos;a pas de script principal défini. Abandon...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1708"/>
+        <location filename="../Project/Project.py" line="1709"/>
         <source>&lt;p&gt;The source directory doesn&apos;t contain any files belonging to the selected category.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le répertoire source ne contient aucun fichier correspondant à la catégorie sélectionnée.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>Select Version Control System</source>
         <translation>Sélectionner un système de contrôle de version</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2582"/>
+        <location filename="../Project/Project.py" line="2583"/>
         <source>None</source>
         <translation>Auncun</translation>
     </message>
@@ -54107,42 +54160,42 @@
         <translation>Enregistrement du type de projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4253"/>
+        <location filename="../Project/Project.py" line="4254"/>
         <source>Create Plugin &amp;Archives</source>
         <translation>Créer les &amp;archives plugin</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>You have to specify a translation pattern first.</source>
         <translation>Vous devez d&apos;abord spécifier un pattern de traduction.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Translation Pattern</source>
         <translation>Pattern de traduction</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Enter the path pattern for translation files (use &apos;%language%&apos; in place of the language code):</source>
         <translation>Entrer le pattern pour les fichiers de traduction (utiliser la balise &apos;%language%&apos; à la place de la langue à utiliser):</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations</source>
         <translation>Association des types de fichiers</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations...</source>
         <translation>Association des types de fichiers...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4037"/>
+        <location filename="../Project/Project.py" line="4038"/>
         <source>Show the project lexer associations (overriding defaults)</source>
         <translation>Affiche les asociations Fichier/Type de fichier pour le projet (sans tenir compte des valeurs par défaut)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4039"/>
+        <location filename="../Project/Project.py" line="4040"/>
         <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Associations des types de fichiers...&lt;/b&gt;&lt;p&gt;Permet d&apos;associer les types de fichiers aux analyseurs syntaxiques pour le projet en cours. Ces associations sont prioritaires sur les associations de fichiers configurées par défaut.&lt;/p&gt;</translation>
     </message>
@@ -54152,142 +54205,142 @@
         <translation>Fichiers Python3 (*.py *.py3);;Fichiers Python3 GUI (*.pyw *.pyw3);;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier projet &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier projet&lt;b&gt;{0}&lt;/b&gt; ne peut être écrit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier de tâches &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier de tâches &lt;b&gt;{0}&lt;/b&gt; ne peut être écrit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1741"/>
+        <location filename="../Project/Project.py" line="1742"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; existe déjà.&lt;/p&gt;&lt;p&gt;L&apos;écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut pas être renommé.&lt;br /&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le répertoire projet &lt;b&gt;{0}&lt;/b&gt; n&apos;a pas pu être créé.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5477"/>
+        <location filename="../Project/Project.py" line="5478"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5548"/>
+        <location filename="../Project/Project.py" line="5549"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier plugin &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1664"/>
+        <location filename="../Project/Project.py" line="1665"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être ajouté à &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Raison : {2}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1723"/>
+        <location filename="../Project/Project.py" line="1724"/>
         <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le répertoire cible &lt;b&gt;{0}&lt;/b&gt; ne peut être créé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>Create main script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>&lt;p&gt;The mainscript &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>Load Diagram</source>
         <translation>Charger le diagramme</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>&amp;Load Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4226"/>
+        <location filename="../Project/Project.py" line="4227"/>
         <source>Load a diagram from file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4228"/>
+        <location filename="../Project/Project.py" line="4229"/>
         <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54312,12 +54365,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4854"/>
+        <location filename="../Project/Project.py" line="4855"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54337,193 +54390,193 @@
         <translation>Plugin Eric6</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>Create project management directory</source>
         <translation>Créer un répertoire de gestion de projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le répertoire projet &lt;b&gt;{0}&lt;/b&gt; n&apos;est pas accessible en écriture.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Alt+Ctrl+P</source>
         <comment>Project|Search Project File</comment>
         <translation>Alt+Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3978"/>
+        <location filename="../Project/Project.py" line="3979"/>
         <source>Search for a file in the project list of files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3980"/>
+        <location filename="../Project/Project.py" line="3981"/>
         <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File</source>
         <translation>Chercher un fichier projet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File...</source>
         <translation>Chercher un fichier projet...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5373"/>
+        <location filename="../Project/Project.py" line="5374"/>
         <source>Create Plugin Archives</source>
         <translation>Créer une archive plugin</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (Snapshot)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (&amp;Snapshot)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5351"/>
+        <location filename="../Project/Project.py" line="5352"/>
         <source>Select package lists:</source>
         <translation>Sélectionner les listes de packages :</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Creating plugin archives...</source>
         <translation>Création en cours des archives de plugin...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Abort</source>
         <translation>Abandonner</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>%v/%m Archives</source>
         <translation>Archives %v/%m</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5385"/>
+        <location filename="../Project/Project.py" line="5386"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5362"/>
+        <location filename="../Project/Project.py" line="5363"/>
         <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5413"/>
+        <location filename="../Project/Project.py" line="5414"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the&apos;; initial_list&apos; line of the header.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3963"/>
+        <location filename="../Project/Project.py" line="3964"/>
         <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4021"/>
+        <location filename="../Project/Project.py" line="4022"/>
         <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier de traduction sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être supprimé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être supprimé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le répertoire sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être supprimé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>Create Makefile</source>
         <translation>Créer un Makefile</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le makefile &lt;b&gt;{0}&lt;/b&gt; n&apos;a pas pu être créé.&lt;br/&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>Execute Make</source>
         <translation>Exécuter Make</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4291"/>
+        <location filename="../Project/Project.py" line="4292"/>
         <source>&amp;Execute Make</source>
         <translation>Éxécut&amp;er Make</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4295"/>
+        <location filename="../Project/Project.py" line="4296"/>
         <source>Perform a &apos;make&apos; run.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4297"/>
+        <location filename="../Project/Project.py" line="4298"/>
         <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a &apos;make&apos; run to rebuild the configured target.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5755"/>
+        <location filename="../Project/Project.py" line="5756"/>
         <source>Test for Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4305"/>
+        <location filename="../Project/Project.py" line="4306"/>
         <source>&amp;Test for Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4309"/>
+        <location filename="../Project/Project.py" line="4310"/>
         <source>Question &apos;make&apos;, if a rebuild is needed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4311"/>
+        <location filename="../Project/Project.py" line="4312"/>
         <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions &apos;make&apos;, if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4356"/>
+        <location filename="../Project/Project.py" line="4357"/>
         <source>Make</source>
         <translation>Make</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5703"/>
+        <location filename="../Project/Project.py" line="5704"/>
         <source>The make process did not start.</source>
         <translation>Le processus make n&apos;a pas démarré.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5748"/>
+        <location filename="../Project/Project.py" line="5749"/>
         <source>The make process crashed.</source>
         <translation>Crash du processus make.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5758"/>
+        <location filename="../Project/Project.py" line="5759"/>
         <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5763"/>
+        <location filename="../Project/Project.py" line="5764"/>
         <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>The makefile contains errors.</source>
         <translation>Le makefile contient des erreurs.</translation>
     </message>
@@ -54538,7 +54591,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4344"/>
+        <location filename="../Project/Project.py" line="4345"/>
         <source>Project-T&amp;ools</source>
         <translation>Outils pr&amp;ojet</translation>
     </message>
@@ -54568,47 +54621,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4242"/>
+        <location filename="../Project/Project.py" line="4243"/>
         <source>Create an initial PKGLIST file for an eric plugin.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4244"/>
+        <location filename="../Project/Project.py" line="4245"/>
         <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4258"/>
+        <location filename="../Project/Project.py" line="4259"/>
         <source>Create eric plugin archive files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4260"/>
+        <location filename="../Project/Project.py" line="4261"/>
         <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4275"/>
+        <location filename="../Project/Project.py" line="4276"/>
         <source>Create eric plugin archive files (snapshot releases).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4277"/>
+        <location filename="../Project/Project.py" line="4278"/>
         <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5441"/>
+        <location filename="../Project/Project.py" line="5442"/>
         <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5496"/>
+        <location filename="../Project/Project.py" line="5497"/>
         <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5504"/>
+        <location filename="../Project/Project.py" line="5505"/>
         <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -56385,7 +56438,7 @@
 <context>
     <name>PropertiesDialog</name>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="119"/>
+        <location filename="../Project/PropertiesDialog.py" line="127"/>
         <source>The project is not version controlled.</source>
         <translation>Le projet n&apos;est pas géré par un système de contrôle de version (VCS).</translation>
     </message>
@@ -56404,12 +56457,12 @@
 &lt;p&gt;Si le projet est controlé par un système de gestion de versions, le bouton &quot;Afficher les Infos du référentiel&quot; permet d&apos;afficher les informations du référentiel.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="315"/>
+        <location filename="../Project/PropertiesDialog.ui" line="329"/>
         <source>Enter authors email</source>
         <translation>Entrer les mails des auteurs</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="318"/>
+        <location filename="../Project/PropertiesDialog.ui" line="332"/>
         <source>&lt;b&gt;Email&lt;/b&gt;
 &lt;p&gt;Enter the email address of the author&lt;/p&gt;</source>
         <translation>&lt;b&gt;Email&lt;/b&gt;
@@ -56430,19 +56483,19 @@
 en cliquant sur le bouton à droite.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="339"/>
+        <location filename="../Project/PropertiesDialog.ui" line="353"/>
         <source>Enter description</source>
         <translation>Entrer une description du projet</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="342"/>
+        <location filename="../Project/PropertiesDialog.ui" line="356"/>
         <source>&lt;b&gt;Description&lt;/b&gt;
 &lt;p&gt;Enter a short description for the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Description&lt;/b&gt;
 &lt;p&gt;Entrer une courte description du projet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <location filename="../Project/PropertiesDialog.ui" line="298"/>
         <source>&amp;Author:</source>
         <translation>&amp;Auteur:</translation>
     </message>
@@ -56496,24 +56549,24 @@
         <translation>Script &amp;principal:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="326"/>
+        <location filename="../Project/PropertiesDialog.ui" line="340"/>
         <source>&amp;Description:</source>
         <translation>&amp;Description:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="294"/>
+        <location filename="../Project/PropertiesDialog.ui" line="308"/>
         <source>Enter authors name</source>
         <translation>Entrer le nom des auteurs</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="297"/>
+        <location filename="../Project/PropertiesDialog.ui" line="311"/>
         <source>&lt;b&gt;Author&lt;/b&gt;
 &lt;p&gt;Enter the name of the author.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Auteurs&lt;/b&gt;
 &lt;p&gt;Entrer le nom des auteurs.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="305"/>
+        <location filename="../Project/PropertiesDialog.ui" line="319"/>
         <source>&amp;Email:</source>
         <translation>&amp;Email:</translation>
     </message>
@@ -56542,17 +56595,17 @@
 &lt;p&gt;Entrer le numéro de version.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="383"/>
+        <location filename="../Project/PropertiesDialog.ui" line="397"/>
         <source>Press to show information about the repository</source>
         <translation>Cliquer pour afficher les infos du référentiel</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="386"/>
+        <location filename="../Project/PropertiesDialog.ui" line="400"/>
         <source>Show &amp;Repository Info</source>
         <translation>Afficher les Infos du &amp;référentiel</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="389"/>
+        <location filename="../Project/PropertiesDialog.ui" line="403"/>
         <source>Alt+R</source>
         <translation>Alt+R</translation>
     </message>
@@ -56608,12 +56661,12 @@
         <translation>Configuration de la vérification orthographiques...</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="113"/>
+        <location filename="../Project/PropertiesDialog.py" line="121"/>
         <source>The project is version controlled by &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="58"/>
+        <location filename="../Project/PropertiesDialog.py" line="66"/>
         <source>Source Files ({0});;All Files (*)</source>
         <translation>Fichiers sources ({0});;Tous les fichiers (*)</translation>
     </message>
@@ -56648,12 +56701,12 @@
         <translation>Windows/DOS</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="358"/>
+        <location filename="../Project/PropertiesDialog.ui" line="372"/>
         <source>Select to create a version controlled project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="361"/>
+        <location filename="../Project/PropertiesDialog.ui" line="375"/>
         <source>Version Controlled Project</source>
         <translation type="unfinished"></translation>
     </message>
@@ -56672,6 +56725,21 @@
         <source>Press to open a dialog to enter the &apos;make&apos; parameters</source>
         <translation>Cliquer pour ouvrir une fenêtre de configuration de &apos;make&apos;</translation>
     </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="291"/>
+        <source>Select the docstring style for the project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.py" line="50"/>
+        <source>None</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ProtobufPage</name>
--- a/eric6/i18n/eric6_it.ts	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/i18n/eric6_it.ts	Fri Jan 22 16:48:43 2021 +0100
@@ -8919,7 +8919,7 @@
         <translation>docstring ha un&apos;indentazione errata</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="86"/>
         <source>docstring summary does not end with a period</source>
         <translation>docstring sommario non si conclude con un punto</translation>
     </message>
@@ -8954,7 +8954,7 @@
         <translation>docstring della classe non è seguita da una riga vuota</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
         <source>docstring summary is not followed by a blank line</source>
         <translation>docstring sommario non è seguito da una riga vuota</translation>
     </message>
@@ -8964,92 +8964,92 @@
         <translation>L&apos;ultimo paragrafo della docstring non è seguito da una riga vuota</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
         <source>private function/method is missing a docstring</source>
         <translation>Funzione/metodo privato mancante di docstring</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="76"/>
         <source>private class is missing a docstring</source>
         <translation>Classe privata mancante di docstring</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="77"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation>Virgolette iniziali della docstring non sono su riga separata</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="80"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation>Virgolette iniziali della docstring non sono su riga separata</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
         <source>trailing quotes of docstring not on separate line</source>
         <translation>Virgolette finali della docstring non sono su riga separata</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="87"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="90"/>
         <source>docstring does not contain a @return line but function/method returns something</source>
         <translation>docstring non contiene una riga @return ma la funzione/metodo ritorna dei valori</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="91"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="94"/>
         <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
         <translation>docstring contiene una riga @return ma la funzione/metodo non ritorna dei valori</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="103"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation>docstring non contiene sufficienti righe @param/@keyparam</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="106"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
-        <translation>docstring contiene troppe righe @param/@keyparam</translation>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
+        <translation>docstring non contiene sufficienti righe @param/@keyparam</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="109"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
-        <translation>Argomenti con una sola parola-chiave devono essere documentati con righe @keyparam</translation>
+        <source>docstring contains too many @param/@keyparam lines</source>
+        <translation>docstring contiene troppe righe @param/@keyparam</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="112"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
-        <translation>La sequenza di righe @param/@keyparam non si raccorda con le definizioni funzione/metodo</translation>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <translation>Argomenti con una sola parola-chiave devono essere documentati con righe @keyparam</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="115"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation>La sequenza di righe @param/@keyparam non si raccorda con le definizioni funzione/metodo</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="118"/>
         <source>class docstring is preceded by a blank line</source>
         <translation>docstring della classe è preceduta da una riga vuota</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="117"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="120"/>
         <source>class docstring is followed by a blank line</source>
         <translation>docstring della classe è seguita da una riga vuota</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="119"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation>docstring funzione/metodo è preceduto da una riga vuota</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="122"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation>docstring funzione/metodo è preceduto da una riga vuota</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
         <source>function/method docstring is followed by a blank line</source>
         <translation>docstring funzione/metodo è seguito da una riga vuota</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation>L&apos;ultimo paragrafo della docstring è seguito da una riga vuota</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="131"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation>L&apos;ultimo paragrafo della docstring è seguito da una riga vuota</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="134"/>
         <source>docstring does not contain a @exception line but function/method raises an exception</source>
         <translation>docstring non contiene una riga @exception ma la funzione/metodo causa un&apos;eccezione</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="135"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="138"/>
         <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
         <translation>docstring contiene una riga @return ma la funzione/metodo non causa un&apos;eccezione</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="158"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="161"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
@@ -9059,42 +9059,42 @@
         <translation>docstring non contiene un sommario</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="88"/>
         <source>docstring summary does not start with &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="139"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="142"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="145"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="148"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <source>docstring does not contain a @signal line but class defines signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="151"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="154"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="157"/>
         <source>documented signal &apos;{0}&apos; is not defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="75"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="78"/>
         <source>class docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9109,15 +9109,43 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="95"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="98"/>
         <source>docstring does not contain a @yield line but function/method yields something</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="99"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="102"/>
         <source>docstring contains a @yield line but function/method doesn&apos;t yield anything</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <source>function docstring still contains some placeholders</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>DocstringGenerator</name>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="42"/>
+        <source>Eric</source>
+        <translation type="unfinished">Eric</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="44"/>
+        <source>NumPy</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="46"/>
+        <source>Google</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="48"/>
+        <source>Sphinx</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DotDesktopListSelectionDialog</name>
@@ -11523,812 +11551,812 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="783"/>
+        <location filename="../QScintilla/Editor.py" line="785"/>
         <source>Undo</source>
         <translation>Annulla</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="786"/>
+        <location filename="../QScintilla/Editor.py" line="788"/>
         <source>Redo</source>
         <translation>Rifai</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="789"/>
+        <location filename="../QScintilla/Editor.py" line="791"/>
         <source>Revert to last saved state</source>
         <translation>Ritorna all&apos;ultimo stato salvato</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="793"/>
+        <location filename="../QScintilla/Editor.py" line="795"/>
         <source>Cut</source>
         <translation>Taglia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="796"/>
+        <location filename="../QScintilla/Editor.py" line="798"/>
         <source>Copy</source>
         <translation>Copia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="799"/>
+        <location filename="../QScintilla/Editor.py" line="801"/>
         <source>Paste</source>
         <translation>Incolla</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="807"/>
+        <location filename="../QScintilla/Editor.py" line="809"/>
         <source>Indent</source>
         <translation>Identa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="810"/>
+        <location filename="../QScintilla/Editor.py" line="812"/>
         <source>Unindent</source>
         <translation>Annulla identazione</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="813"/>
+        <location filename="../QScintilla/Editor.py" line="815"/>
         <source>Comment</source>
         <translation>Commenta</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="816"/>
+        <location filename="../QScintilla/Editor.py" line="818"/>
         <source>Uncomment</source>
         <translation>Annulla commenta</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Stream Comment</source>
         <translation>Flusso commento</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Box Comment</source>
         <translation>Commenti nel riquadro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="826"/>
-        <source>Select to brace</source>
-        <translation>Seleziona per parentesizzare</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="828"/>
+        <source>Select to brace</source>
+        <translation>Seleziona per parentesizzare</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Select all</source>
         <translation>Seleziona tutti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="829"/>
+        <location filename="../QScintilla/Editor.py" line="831"/>
         <source>Deselect all</source>
         <translation>Deseleziona tutti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="847"/>
+        <location filename="../QScintilla/Editor.py" line="853"/>
         <source>Shorten empty lines</source>
         <translation>Abbrevia righe vuote</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1044"/>
+        <location filename="../QScintilla/Editor.py" line="1050"/>
         <source>Languages</source>
         <translation>Linguaggi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="854"/>
+        <location filename="../QScintilla/Editor.py" line="860"/>
         <source>Use Monospaced Font</source>
         <translation>Usa un font Monospaced</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="974"/>
+        <location filename="../QScintilla/Editor.py" line="980"/>
         <source>Check</source>
         <translation>Controlla</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="994"/>
+        <location filename="../QScintilla/Editor.py" line="1000"/>
         <source>Show</source>
         <translation>Mostra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="902"/>
-        <source>Close</source>
-        <translation>Chiudi</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="908"/>
+        <source>Close</source>
+        <translation>Chiudi</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="914"/>
         <source>Save</source>
         <translation>Salva</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="911"/>
+        <location filename="../QScintilla/Editor.py" line="917"/>
         <source>Save As...</source>
         <translation>Salva come...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="933"/>
         <source>Print</source>
         <translation>Stampa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="996"/>
-        <source>Code metrics...</source>
-        <translation>Statistiche codice...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="997"/>
-        <source>Code coverage...</source>
-        <translation>Analisi codice...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1005"/>
-        <source>Profile data...</source>
-        <translation>Profilazione dati...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1224"/>
-        <source>Toggle bookmark</source>
-        <translation>Inverti bookmark</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1226"/>
-        <source>Next bookmark</source>
-        <translation>Prossimo segnalibro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1228"/>
-        <source>Previous bookmark</source>
-        <translation>Segnalibro precedente</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1230"/>
-        <source>Clear all bookmarks</source>
-        <translation>Pulisci di tutti di segnalibri</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1239"/>
-        <source>Toggle breakpoint</source>
-        <translation>Abilita/Disabilita breakpoint</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1244"/>
-        <source>Edit breakpoint...</source>
-        <translation>Modifica Breakpoint...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="5613"/>
-        <source>Enable breakpoint</source>
-        <translation>Abilita breakpoint</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1249"/>
-        <source>Next breakpoint</source>
-        <translation>Prossimo breakpoint</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1251"/>
-        <source>Previous breakpoint</source>
-        <translation>Breakpoint precedente</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1256"/>
-        <source>Clear all breakpoints</source>
-        <translation>Elimina tutti i breakpoint</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
-        <source>Modification of Read Only file</source>
-        <translation>Modifica di un file di sola lettura</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
-        <source>You are attempting to change a read only file. Please save to a different file first.</source>
-        <translation>Stai tentando di modificare un file in sola lettura. Per favore prima salva come un file diverso.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="2675"/>
-        <source>Printing...</source>
-        <translation>In stampa...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="2692"/>
-        <source>Printing completed</source>
-        <translation>Stampa completata</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="2694"/>
-        <source>Error while printing</source>
-        <translation>Errore durante la stampa</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="2697"/>
-        <source>Printing aborted</source>
-        <translation>Stampa annullata</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3110"/>
-        <source>Open File</source>
-        <translation>Apri File</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
-        <source>Save File</source>
-        <translation>Salva file</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
-        <source>File Modified</source>
-        <translation>File modificato</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
-        <source>Autocompletion</source>
-        <translation>Autocompletamento</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
-        <source>Autocompletion is not available because there is no autocompletion source set.</source>
-        <translation>L&apos;autocomplentamento non è disponibile perchè non ci sono fonti impostate.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="5616"/>
-        <source>Disable breakpoint</source>
-        <translation>Disabilita breakpoint</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
-        <source>Code Coverage</source>
-        <translation>Analisi codice</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
-        <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="6171"/>
-        <source>Profile Data</source>
-        <translation>Profilazione dati</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
-        <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="6722"/>
-        <source>Macro Name</source>
-        <translation>Nome Macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
-        <source>Select a macro name:</source>
-        <translation>Seleziona un nome per la macro:</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6792"/>
-        <source>Macro files (*.macro)</source>
-        <translation>File Macro (*.macro)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6750"/>
-        <source>Load macro file</source>
-        <translation>Carica un file di macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6772"/>
-        <source>Error loading macro</source>
-        <translation>Errore nel caricamento della macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6792"/>
-        <source>Save macro file</source>
-        <translation>Salva un file di macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
-        <source>Save macro</source>
-        <translation>Salva macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6824"/>
-        <source>Error saving macro</source>
-        <translation>Errore nel salvataggio della macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6837"/>
-        <source>Start Macro Recording</source>
-        <translation>Avvia registrazione della macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
-        <source>Macro Recording</source>
-        <translation>Registrazione Macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
-        <source>Enter name of the macro:</source>
-        <translation>Inserisci un nome per la macro:</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7033"/>
-        <source>File changed</source>
-        <translation>File modificato</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="859"/>
-        <source>Autosave enabled</source>
-        <translation>Salvataggio automatico abilitato</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1304"/>
-        <source>Goto syntax error</source>
-        <translation>Vai all&apos;errore di sintassi</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1313"/>
-        <source>Clear syntax error</source>
-        <translation>Elimina errori di sintassi</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
-        <source>Drop Error</source>
-        <translation>Errore Drop</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
-        <source>Show syntax error message</source>
-        <translation>Mostra i messaggi degli errori di sintassi</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
-        <source>Syntax Error</source>
-        <translation>Errore di sintassi</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
-        <source>No syntax error message available.</source>
-        <translation>Nessun messaggio degli errori di sintassi disponibile.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1241"/>
-        <source>Toggle temporary breakpoint</source>
-        <translation>Abilita/Disabilita breakpoint temporaneo</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="999"/>
-        <source>Show code coverage annotations</source>
-        <translation>Mostra le annotazioni dell&apos;analisi del codice</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1002"/>
-        <source>Hide code coverage annotations</source>
-        <translation>Nascondi le annotazioni dell&apos;analisi del codice</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1335"/>
-        <source>Next uncovered line</source>
-        <translation>Prossimo file non analizzato</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1339"/>
-        <source>Previous uncovered line</source>
-        <translation>File non analizzato precedente</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
-        <source>Show Code Coverage Annotations</source>
-        <translation>Mostra le annotazioni dell&apos;analisi del codice</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6047"/>
-        <source>All lines have been covered.</source>
-        <translation>Tutte le linee sono state analizzate.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
-        <source>There is no coverage file available.</source>
-        <translation>Non ci sono file di analisi disponibili.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
-        <source>Diagrams</source>
-        <translation>Diagrammi</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1020"/>
-        <source>Class Diagram...</source>
-        <translation>Diagrammi di classe...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1022"/>
-        <source>Package Diagram...</source>
-        <translation>Diagrammi del package...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1024"/>
-        <source>Imports Diagram...</source>
-        <translation>Importa diagrammi...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1026"/>
-        <source>Application Diagram...</source>
-        <translation>Diagrammi dell&apos;applicazione...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1177"/>
-        <source>No Language</source>
-        <translation>Nessun linguaggio</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7375"/>
-        <source>Resources</source>
-        <translation>Risorse</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
-        <source>Add file...</source>
-        <translation>Aggiungi file...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7379"/>
-        <source>Add files...</source>
-        <translation>Aggiungi files...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
-        <source>Add aliased file...</source>
-        <translation>Aggiungi file sinonimo...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7384"/>
-        <source>Add localized resource...</source>
-        <translation>Aggiungi una risorsa localizzata...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7407"/>
-        <source>Add file resource</source>
-        <translation>Aggiungi un file risorse</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7423"/>
-        <source>Add file resources</source>
-        <translation>Aggiundi dei file risorse</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
-        <source>Add aliased file resource</source>
-        <translation>Aggiungi file sinonimo delle risorse</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
-        <source>Package Diagram</source>
-        <translation>Diagrammi del package</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
-        <source>Include class attributes?</source>
-        <translation>Includi gli attributi della classe ?</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
-        <source>Application Diagram</source>
-        <translation>Diagrammi dell&apos;applicazione</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
-        <source>Include module names?</source>
-        <translation>Includi i nomi dei moduli ?</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7388"/>
-        <source>Add resource frame</source>
-        <translation>Aggiungi riquadro delle risorse</translation>
+        <source>Code metrics...</source>
+        <translation>Statistiche codice...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1003"/>
+        <source>Code coverage...</source>
+        <translation>Analisi codice...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1011"/>
+        <source>Profile data...</source>
+        <translation>Profilazione dati...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1230"/>
+        <source>Toggle bookmark</source>
+        <translation>Inverti bookmark</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1232"/>
+        <source>Next bookmark</source>
+        <translation>Prossimo segnalibro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1234"/>
+        <source>Previous bookmark</source>
+        <translation>Segnalibro precedente</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1236"/>
+        <source>Clear all bookmarks</source>
+        <translation>Pulisci di tutti di segnalibri</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1245"/>
+        <source>Toggle breakpoint</source>
+        <translation>Abilita/Disabilita breakpoint</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1250"/>
+        <source>Edit breakpoint...</source>
+        <translation>Modifica Breakpoint...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="5626"/>
+        <source>Enable breakpoint</source>
+        <translation>Abilita breakpoint</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1255"/>
+        <source>Next breakpoint</source>
+        <translation>Prossimo breakpoint</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1257"/>
+        <source>Previous breakpoint</source>
+        <translation>Breakpoint precedente</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
+        <source>Clear all breakpoints</source>
+        <translation>Elimina tutti i breakpoint</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
+        <source>Modification of Read Only file</source>
+        <translation>Modifica di un file di sola lettura</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
+        <source>You are attempting to change a read only file. Please save to a different file first.</source>
+        <translation>Stai tentando di modificare un file in sola lettura. Per favore prima salva come un file diverso.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="2681"/>
+        <source>Printing...</source>
+        <translation>In stampa...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="2698"/>
+        <source>Printing completed</source>
+        <translation>Stampa completata</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="2700"/>
+        <source>Error while printing</source>
+        <translation>Errore durante la stampa</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="2703"/>
+        <source>Printing aborted</source>
+        <translation>Stampa annullata</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
+        <source>Open File</source>
+        <translation>Apri File</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
+        <source>Save File</source>
+        <translation>Salva file</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
+        <source>File Modified</source>
+        <translation>File modificato</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
+        <source>Autocompletion</source>
+        <translation>Autocompletamento</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
+        <source>Autocompletion is not available because there is no autocompletion source set.</source>
+        <translation>L&apos;autocomplentamento non è disponibile perchè non ci sono fonti impostate.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="5629"/>
+        <source>Disable breakpoint</source>
+        <translation>Disabilita breakpoint</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
+        <source>Code Coverage</source>
+        <translation>Analisi codice</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
+        <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="6184"/>
+        <source>Profile Data</source>
+        <translation>Profilazione dati</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
+        <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="6735"/>
+        <source>Macro Name</source>
+        <translation>Nome Macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
+        <source>Select a macro name:</source>
+        <translation>Seleziona un nome per la macro:</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
+        <source>Macro files (*.macro)</source>
+        <translation>File Macro (*.macro)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6763"/>
+        <source>Load macro file</source>
+        <translation>Carica un file di macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <source>Error loading macro</source>
+        <translation>Errore nel caricamento della macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
+        <source>Save macro file</source>
+        <translation>Salva un file di macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
+        <source>Save macro</source>
+        <translation>Salva macro</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="6837"/>
-        <source>Macro recording is already active. Start new?</source>
-        <translation>Registrazione macro già attiva. Avvia nuovamente ?</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="956"/>
-        <source>Complete from Document</source>
-        <translation type="unfinished">dal Documento</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="958"/>
-        <source>Complete from APIs</source>
-        <translation type="unfinished">dalle APIs</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="960"/>
-        <source>Complete from Document and APIs</source>
-        <translation type="unfinished">dal Documento e dalle APIs</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1344"/>
-        <source>Next task</source>
-        <translation>Prossimo task</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1348"/>
-        <source>Previous task</source>
-        <translation>Task precedente</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1202"/>
-        <source>Export as</source>
-        <translation>Esporta come</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
-        <source>Export source</source>
-        <translation>Esporta sorgenti</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
-        <source>No export format given. Aborting...</source>
-        <translation>Nessun formato di export impostato. Annullamento...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
-        <source>Imports Diagram</source>
-        <translation>Importa diagrammi</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
-        <source>Include imports from external modules?</source>
-        <translation>Includi gli import dai moduli esterni ?</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="878"/>
-        <source>Calltip</source>
-        <translation>Calltip</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
-        <source>Print Preview</source>
-        <translation>Anteprima Stampa</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="468"/>
-        <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Una finesta di edit&lt;/b&gt;&lt;p&gt;Questa finestra è usata per visualizzare e modificare un file sorgente. Si possono aprire quante finestre si vogliono. Il nome del file è mostrato nella barra dei titolo della finestra.&lt;/p&gt;&lt;p&gt;Per impostare dei breakpoint basta cliccare nello spazio tra i numeri di riga e i marcatori di compressione. Con il menù contestuale del margine possono essere modificati.&lt;/p&gt;&lt;p&gt;Per impostare un segnalibro basta cliccare con lo Shift premuto nello spazio tra il numero di linea e i marcatori di compressione.&lt;/p&gt;&lt;p&gt;Queste azioni possono essere invertite con il menù contestuale.&lt;/p&gt;&lt;p&gt; Cliccare con il tasto Ctrl premuto un  marcatore di errore della sintassi mostra delle informazioni sull&apos;errore.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
-        <source>Typing aids enabled</source>
-        <translation>Aiuti alla digitazione abilitati</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1134"/>
-        <source>End-of-Line Type</source>
-        <translation>Tipo di fine-linea</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1138"/>
-        <source>Unix</source>
-        <translation>Unix</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1145"/>
-        <source>Windows</source>
-        <translation>Windows</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1152"/>
-        <source>Macintosh</source>
-        <translation>Macintosh</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1093"/>
-        <source>Encodings</source>
-        <translation>Codifica</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1073"/>
-        <source>Guessed</source>
-        <translation>Indovinato</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1413"/>
-        <source>Alternatives</source>
-        <translation>Alternative</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
-        <source>Pygments Lexer</source>
-        <translation>Analizzatore lessicale Pygments</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
-        <source>Select the Pygments lexer to apply.</source>
-        <translation>Selezione l&apos;analizzatore lessicale di Pygments da applicare.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7881"/>
-        <source>Check spelling...</source>
-        <translation>Controllo sillabazione...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="837"/>
-        <source>Check spelling of selection...</source>
-        <translation>Controllo sillabazione della selezione...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7884"/>
-        <source>Add to dictionary</source>
-        <translation>Aggiungi al dizionario</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7886"/>
-        <source>Ignore All</source>
-        <translation>Ignora tutto</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="841"/>
-        <source>Remove from dictionary</source>
-        <translation>Rimuovi dal dizionario</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="379"/>
-        <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
-        <translation>&lt;p&gt;La dimensione del file &lt;b&gt;{0}&lt;/b&gt; è &lt;b&gt;{1} KB&lt;/b&gt;. Sei sicuro di volerlo caricare ?&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1390"/>
-        <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Nessun esportatore disponibile per il formato di export&lt;b&gt;{0}&lt;/b&gt;. Termino...&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1409"/>
-        <source>Alternatives ({0})</source>
-        <translation>Alternative ({0})</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
-        <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="../QScintilla/Editor.py" line="3110"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere aperto.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3234"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere salvato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6763"/>
-        <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="6772"/>
-        <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="6824"/>
-        <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="7213"/>
-        <source>{0} (ro)</source>
-        <translation>{0} (ro)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
-        <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="7450"/>
-        <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
-        <translation>Alias per il file &lt;b&gt;{0}&lt;/b&gt;:</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1318"/>
-        <source>Next warning</source>
-        <translation>Warning successivo</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1322"/>
-        <source>Previous warning</source>
-        <translation>Warning precedente</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1326"/>
-        <source>Show warning message</source>
-        <translation>Mostra Warning</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1330"/>
-        <source>Clear warnings</source>
-        <translation>Pulisci warning</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
-        <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="6610"/>
-        <source>Warning: {0}</source>
-        <translation>Attenzione: {0}</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6617"/>
-        <source>Error: {0}</source>
-        <translation>Errore: {0}</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7029"/>
-        <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
-        <translation>&lt;br&gt;&lt;b&gt;Attenzione:&lt;/b&gt; con la riapertura le modifiche andranno perse.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="920"/>
-        <source>Open &apos;rejection&apos; file</source>
-        <translation>Apri file &apos;rifiuto&apos;</translation>
+        <source>Error saving macro</source>
+        <translation>Errore nel salvataggio della macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6850"/>
+        <source>Start Macro Recording</source>
+        <translation>Avvia registrazione della macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
+        <source>Macro Recording</source>
+        <translation>Registrazione Macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
+        <source>Enter name of the macro:</source>
+        <translation>Inserisci un nome per la macro:</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7046"/>
+        <source>File changed</source>
+        <translation>File modificato</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="865"/>
+        <source>Autosave enabled</source>
+        <translation>Salvataggio automatico abilitato</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
+        <source>Goto syntax error</source>
+        <translation>Vai all&apos;errore di sintassi</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1319"/>
+        <source>Clear syntax error</source>
+        <translation>Elimina errori di sintassi</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
+        <source>Drop Error</source>
+        <translation>Errore Drop</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1314"/>
+        <source>Show syntax error message</source>
+        <translation>Mostra i messaggi degli errori di sintassi</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
+        <source>Syntax Error</source>
+        <translation>Errore di sintassi</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
+        <source>No syntax error message available.</source>
+        <translation>Nessun messaggio degli errori di sintassi disponibile.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1247"/>
+        <source>Toggle temporary breakpoint</source>
+        <translation>Abilita/Disabilita breakpoint temporaneo</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1005"/>
+        <source>Show code coverage annotations</source>
+        <translation>Mostra le annotazioni dell&apos;analisi del codice</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1008"/>
+        <source>Hide code coverage annotations</source>
+        <translation>Nascondi le annotazioni dell&apos;analisi del codice</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1341"/>
+        <source>Next uncovered line</source>
+        <translation>Prossimo file non analizzato</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1345"/>
+        <source>Previous uncovered line</source>
+        <translation>File non analizzato precedente</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
+        <source>Show Code Coverage Annotations</source>
+        <translation>Mostra le annotazioni dell&apos;analisi del codice</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6060"/>
+        <source>All lines have been covered.</source>
+        <translation>Tutte le linee sono state analizzate.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
+        <source>There is no coverage file available.</source>
+        <translation>Non ci sono file di analisi disponibili.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1024"/>
+        <source>Diagrams</source>
+        <translation>Diagrammi</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1026"/>
+        <source>Class Diagram...</source>
+        <translation>Diagrammi di classe...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1028"/>
+        <source>Package Diagram...</source>
+        <translation>Diagrammi del package...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1030"/>
+        <source>Imports Diagram...</source>
+        <translation>Importa diagrammi...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1032"/>
+        <source>Application Diagram...</source>
+        <translation>Diagrammi dell&apos;applicazione...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1183"/>
+        <source>No Language</source>
+        <translation>Nessun linguaggio</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7399"/>
+        <source>Resources</source>
+        <translation>Risorse</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7401"/>
+        <source>Add file...</source>
+        <translation>Aggiungi file...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
+        <source>Add files...</source>
+        <translation>Aggiungi files...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7405"/>
+        <source>Add aliased file...</source>
+        <translation>Aggiungi file sinonimo...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <source>Add localized resource...</source>
+        <translation>Aggiungi una risorsa localizzata...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7431"/>
+        <source>Add file resource</source>
+        <translation>Aggiungi un file risorse</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7447"/>
+        <source>Add file resources</source>
+        <translation>Aggiundi dei file risorse</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
+        <source>Add aliased file resource</source>
+        <translation>Aggiungi file sinonimo delle risorse</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
+        <source>Package Diagram</source>
+        <translation>Diagrammi del package</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
+        <source>Include class attributes?</source>
+        <translation>Includi gli attributi della classe ?</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
+        <source>Application Diagram</source>
+        <translation>Diagrammi dell&apos;applicazione</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
+        <source>Include module names?</source>
+        <translation>Includi i nomi dei moduli ?</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7412"/>
+        <source>Add resource frame</source>
+        <translation>Aggiungi riquadro delle risorse</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6850"/>
+        <source>Macro recording is already active. Start new?</source>
+        <translation>Registrazione macro già attiva. Avvia nuovamente ?</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="962"/>
+        <source>Complete from Document</source>
+        <translation type="unfinished">dal Documento</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="964"/>
+        <source>Complete from APIs</source>
+        <translation type="unfinished">dalle APIs</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="966"/>
+        <source>Complete from Document and APIs</source>
+        <translation type="unfinished">dal Documento e dalle APIs</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1350"/>
+        <source>Next task</source>
+        <translation>Prossimo task</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1354"/>
+        <source>Previous task</source>
+        <translation>Task precedente</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1208"/>
+        <source>Export as</source>
+        <translation>Esporta come</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
+        <source>Export source</source>
+        <translation>Esporta sorgenti</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
+        <source>No export format given. Aborting...</source>
+        <translation>Nessun formato di export impostato. Annullamento...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
+        <source>Imports Diagram</source>
+        <translation>Importa diagrammi</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
+        <source>Include imports from external modules?</source>
+        <translation>Includi gli import dai moduli esterni ?</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="884"/>
+        <source>Calltip</source>
+        <translation>Calltip</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="930"/>
+        <source>Print Preview</source>
+        <translation>Anteprima Stampa</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="470"/>
+        <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Una finesta di edit&lt;/b&gt;&lt;p&gt;Questa finestra è usata per visualizzare e modificare un file sorgente. Si possono aprire quante finestre si vogliono. Il nome del file è mostrato nella barra dei titolo della finestra.&lt;/p&gt;&lt;p&gt;Per impostare dei breakpoint basta cliccare nello spazio tra i numeri di riga e i marcatori di compressione. Con il menù contestuale del margine possono essere modificati.&lt;/p&gt;&lt;p&gt;Per impostare un segnalibro basta cliccare con lo Shift premuto nello spazio tra il numero di linea e i marcatori di compressione.&lt;/p&gt;&lt;p&gt;Queste azioni possono essere invertite con il menù contestuale.&lt;/p&gt;&lt;p&gt; Cliccare con il tasto Ctrl premuto un  marcatore di errore della sintassi mostra delle informazioni sull&apos;errore.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="869"/>
+        <source>Typing aids enabled</source>
+        <translation>Aiuti alla digitazione abilitati</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1140"/>
+        <source>End-of-Line Type</source>
+        <translation>Tipo di fine-linea</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1144"/>
+        <source>Unix</source>
+        <translation>Unix</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1151"/>
+        <source>Windows</source>
+        <translation>Windows</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1158"/>
+        <source>Macintosh</source>
+        <translation>Macintosh</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1099"/>
+        <source>Encodings</source>
+        <translation>Codifica</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1079"/>
+        <source>Guessed</source>
+        <translation>Indovinato</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1419"/>
+        <source>Alternatives</source>
+        <translation>Alternative</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
+        <source>Pygments Lexer</source>
+        <translation>Analizzatore lessicale Pygments</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
+        <source>Select the Pygments lexer to apply.</source>
+        <translation>Selezione l&apos;analizzatore lessicale di Pygments da applicare.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7905"/>
+        <source>Check spelling...</source>
+        <translation>Controllo sillabazione...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="839"/>
+        <source>Check spelling of selection...</source>
+        <translation>Controllo sillabazione della selezione...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7908"/>
+        <source>Add to dictionary</source>
+        <translation>Aggiungi al dizionario</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7910"/>
+        <source>Ignore All</source>
+        <translation>Ignora tutto</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="843"/>
+        <source>Remove from dictionary</source>
+        <translation>Rimuovi dal dizionario</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="381"/>
+        <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
+        <translation>&lt;p&gt;La dimensione del file &lt;b&gt;{0}&lt;/b&gt; è &lt;b&gt;{1} KB&lt;/b&gt;. Sei sicuro di volerlo caricare ?&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1396"/>
+        <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Nessun esportatore disponibile per il formato di export&lt;b&gt;{0}&lt;/b&gt;. Termino...&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1415"/>
+        <source>Alternatives ({0})</source>
+        <translation>Alternative ({0})</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
+        <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="../QScintilla/Editor.py" line="3116"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere aperto.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3240"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere salvato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6776"/>
+        <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="6785"/>
+        <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="6837"/>
+        <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="7237"/>
+        <source>{0} (ro)</source>
+        <translation>{0} (ro)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
+        <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="7474"/>
+        <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
+        <translation>Alias per il file &lt;b&gt;{0}&lt;/b&gt;:</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1324"/>
+        <source>Next warning</source>
+        <translation>Warning successivo</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1328"/>
+        <source>Previous warning</source>
+        <translation>Warning precedente</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1332"/>
+        <source>Show warning message</source>
+        <translation>Mostra Warning</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
+        <source>Clear warnings</source>
+        <translation>Pulisci warning</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
+        <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="6623"/>
+        <source>Warning: {0}</source>
+        <translation>Attenzione: {0}</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6630"/>
+        <source>Error: {0}</source>
+        <translation>Errore: {0}</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7042"/>
+        <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
+        <translation>&lt;br&gt;&lt;b&gt;Attenzione:&lt;/b&gt; con la riapertura le modifiche andranno perse.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="926"/>
+        <source>Open &apos;rejection&apos; file</source>
+        <translation>Apri file &apos;rifiuto&apos;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1036"/>
         <source>Load Diagram...</source>
         <translation>Carica Diagramma...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1353"/>
+        <location filename="../QScintilla/Editor.py" line="1359"/>
         <source>Next change</source>
         <translation>Modifica successiva</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1357"/>
+        <location filename="../QScintilla/Editor.py" line="1363"/>
         <source>Previous change</source>
         <translation>Modifica precedente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
         <source>Sort Lines</source>
         <translation>Righe ordinate</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
         <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="6545"/>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
         <source>Warning</source>
         <translation>Attenzione</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
         <source>No warning messages available.</source>
         <translation>Nessun messaggio di attenzione disponibile.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6607"/>
+        <location filename="../QScintilla/Editor.py" line="6620"/>
         <source>Style: {0}</source>
         <translation>Stile: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
+        <location filename="../QScintilla/Editor.py" line="900"/>
         <source>New Document View</source>
         <translation>Nuova vista Documento</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="897"/>
+        <location filename="../QScintilla/Editor.py" line="903"/>
         <source>New Document View (with new split)</source>
         <translation>Nuova vista Documento (con nuova divisione)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="984"/>
+        <location filename="../QScintilla/Editor.py" line="990"/>
         <source>Tools</source>
         <translation>Strumenti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1115"/>
+        <location filename="../QScintilla/Editor.py" line="1121"/>
         <source>Re-Open With Encoding</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12338,120 +12366,130 @@
         <translation type="obsolete">&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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="876"/>
         <source>Automatic Completion enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="950"/>
+        <location filename="../QScintilla/Editor.py" line="956"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
         <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="5184"/>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5184"/>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
         <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="8391"/>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8391"/>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="914"/>
+        <location filename="../QScintilla/Editor.py" line="920"/>
         <source>Save Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="953"/>
+        <location filename="../QScintilla/Editor.py" line="959"/>
         <source>Clear Completions Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="880"/>
+        <location filename="../QScintilla/Editor.py" line="886"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1361"/>
+        <location filename="../QScintilla/Editor.py" line="1367"/>
         <source>Clear changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="803"/>
+        <location filename="../QScintilla/Editor.py" line="805"/>
         <source>Execute Selection In Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
+        <location filename="../QScintilla/Editor.py" line="1271"/>
         <source>Toggle all folds</source>
         <translation type="unfinished">Abilita/Disabilita tutti i raggruppamenti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1270"/>
+        <location filename="../QScintilla/Editor.py" line="1276"/>
         <source>Toggle all folds (including children)</source>
         <translation type="unfinished">Abilita/Disabilita tutti i raggruppamenti (inclusi i figli)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1275"/>
-        <source>Toggle current fold</source>
-        <translation type="unfinished">Abilita/Disabilita il raggruppamento corrente</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1281"/>
+        <source>Toggle current fold</source>
+        <translation type="unfinished">Abilita/Disabilita il raggruppamento corrente</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1287"/>
         <source>Expand (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
-        <source>Collapse (including children)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1292"/>
+        <source>Collapse (including children)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1298"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1173"/>
+        <location filename="../QScintilla/Editor.py" line="1179"/>
         <source>Spell Check Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7023"/>
+        <location filename="../QScintilla/Editor.py" line="7036"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="849"/>
+        <source>Insert Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorAPIsPage</name>
@@ -13712,72 +13750,72 @@
 <context>
     <name>EditorGeneralPage</name>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="125"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="169"/>
         <source>Displays the selected indentation width.</source>
         <translation>Mostra la larghezza di indentazione selezionata.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="103"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="147"/>
         <source>Move to set the indentation width.</source>
         <translation>Muovi per impostare la larghezza dell&apos;identazione.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="93"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="137"/>
         <source>Indentation width:</source>
         <translation>Larghezza identazione:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="55"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="99"/>
         <source>Move to set the tab width.</source>
         <translation>Muovi per impostare la dimensione del tab.</translation>
     </message>
     <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="89"/>
+        <source>Tab width:</source>
+        <translation>Dimensione tab:</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="121"/>
+        <source>Displays the selected tab width.</source>
+        <translation>Mostra la dimensione del tab selezionata.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="75"/>
+        <source>Select whether tabs shall be converted upon opening the file</source>
+        <translation>Seleziona nel caso i tab debbano essere convertiti all&apos;apertura del file</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="78"/>
+        <source>Convert tabs upon open</source>
+        <translation>Converti tab all&apos;apertura</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="65"/>
+        <source>Select whether pressing the tab key indents.</source>
+        <translation>Seleziona nel caso la pressione del tasto tab indenti.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="68"/>
+        <source>Tab key indents</source>
+        <translation>Indentazione tasto Tab</translation>
+    </message>
+    <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="45"/>
-        <source>Tab width:</source>
-        <translation>Dimensione tab:</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="77"/>
-        <source>Displays the selected tab width.</source>
-        <translation>Mostra la dimensione del tab selezionata.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="266"/>
-        <source>Select whether tabs shall be converted upon opening the file</source>
-        <translation>Seleziona nel caso i tab debbano essere convertiti all&apos;apertura del file</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="269"/>
-        <source>Convert tabs upon open</source>
-        <translation>Converti tab all&apos;apertura</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="256"/>
-        <source>Select whether pressing the tab key indents.</source>
-        <translation>Seleziona nel caso la pressione del tasto tab indenti.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="259"/>
-        <source>Tab key indents</source>
-        <translation>Indentazione tasto Tab</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="236"/>
         <source>Select whether autoindentation shall be enabled</source>
         <translation type="unfinished">Seleziona nel caso le guide di indentazione debbano essere mostrate.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="239"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="48"/>
         <source>Auto indentation</source>
         <translation type="unfinished">Mostra guide indentazione</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="246"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="55"/>
         <source>Select whether tab characters are used for indentations.</source>
         <translation>Seleziona nel caso il carattere di tab debba essere usato per l&apos;indentazione.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="249"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="58"/>
         <source>Use tabs for indentations</source>
         <translation>Usa tab per l&apos;indentazione</translation>
     </message>
@@ -13792,135 +13830,150 @@
         <translation>Tabs &amp;&amp; Identazione</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="371"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="373"/>
         <source>Comments</source>
         <translation>Commenti</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="377"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="379"/>
         <source>Select to insert the comment sign at column 0</source>
         <translation>Seleziona per inserire il segno di commento alla colonna 0</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="380"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="382"/>
         <source>&lt;b&gt;Insert comment at column 0&lt;/b&gt;&lt;p&gt;Select to insert the comment sign at column 0. Otherwise, the comment sign is inserted at the first non-whitespace position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Inserisci commento alla colonna 0&lt;/b&gt;&lt;p&gt;Selezione per inserire il segno di commento allal colonna 0. In alternativa, il segno di commento viene inserito nella posizione del primo carattare non spazio.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="383"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="385"/>
         <source>Insert comment at column 0</source>
         <translation>Inserisci commento alla colonna 0</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="393"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="424"/>
         <source>Virtual Space</source>
         <translation>Spazio Virtuale</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="399"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="430"/>
         <source>Virtual space is the space after the last character of a line. It is not allocated unless some text is entered or copied into it. Usage of virtual space can be configured with these selections.</source>
         <translation>Lo spazio Virtuale è lo spazio dopo l&apos;ultimo carattere della riga. Non viene allocato fintantochè del testo non viene inserito o copiato in esso. L&apos;uso dello Spazio Virtuale può venir configurato da questa selezione.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="409"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="440"/>
         <source>Select to enable a rectangular selection to extend into virtual space</source>
         <translation>Seleziona per abilitare una selezione rettangolare ad estendersi nello Spazio Virtuale</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="412"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="443"/>
         <source>Selection may access virtual space</source>
         <translation>Seleziona per abilitare lo Spazio Virtuale</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="419"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="450"/>
         <source>Select to allow the cursor to be moved into virtual space</source>
         <translation>Seleziona per permette al cursore di muoversi nello Spazio Virtuale</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="422"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="453"/>
         <source>Cursor can move into virtual space</source>
         <translation>Il cursore può muoversi nello Spazio Virtuale</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="158"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="206"/>
         <source>Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="163"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="211"/>
         <source>Tab Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="168"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="216"/>
         <source>Indent Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="196"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="244"/>
         <source>Press to add a language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="203"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="251"/>
         <source>Press to delete the selected language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="210"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="258"/>
         <source>Press to edit the selected language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Tab and Indent Override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Shall the selected entries really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="281"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="283"/>
         <source>Select to enable the source code outline view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="284"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="286"/>
         <source>Source Code Outline</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="293"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="295"/>
         <source>Default Width:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="320"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="302"/>
         <source>Enter the default width of the source code outline view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="313"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="321"/>
         <source>Width Step Size:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="339"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="328"/>
         <source>Enter the amount of pixels the width of the outline should be increased or decreased</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="358"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="360"/>
         <source>Select to show the source code encoding</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="361"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="363"/>
         <source>Show source file encoding</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="395"/>
+        <source>Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="401"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="414"/>
+        <source>Select the docstring style to be used</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorHighlightersPage</name>
@@ -55113,17 +55166,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1627"/>
+        <location filename="../Preferences/__init__.py" line="1629"/>
         <source>Export Preferences</source>
         <translation>Esporta Preferenze</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Import Preferences</source>
         <translation>Importa Preferenze</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation>File proprietà (*.ini);;Tutti i file(*)</translation>
     </message>
@@ -55664,492 +55717,492 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>Read project file</source>
         <translation>Leggi file progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>Save project file</source>
         <translation>Salva file progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>Read project session</source>
         <translation>Leggi sessione del progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1244"/>
+        <location filename="../Project/Project.py" line="1245"/>
         <source>Please save the project first.</source>
         <translation>Prima salvare il progetto.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>Save project session</source>
         <translation>Salva sessione di progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>Add Language</source>
         <translation>Aggiungi Lingua</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>Delete translation</source>
         <translation>Cancella traduzione</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1677"/>
+        <location filename="../Project/Project.py" line="1678"/>
         <source>Add file</source>
         <translation>Aggiungi file</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1809"/>
+        <location filename="../Project/Project.py" line="1810"/>
         <source>The target directory must not be empty.</source>
         <translation>La directory di destinazione non deve essere vuota.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>Add directory</source>
         <translation>Aggiungi directory</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>The source directory must not be empty.</source>
         <translation>La directory sorgente non deve essere vuota.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>Delete file</source>
         <translation>Cancella file</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>Create project directory</source>
         <translation>Crea la directory del progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>New project</source>
         <translation>Nuovo progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>Open project</source>
         <translation>Apri progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save project as</source>
         <translation>Salva progetto come</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>Save File</source>
         <translation>Salva file</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>Close Project</source>
         <translation>Chiudi progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>The current project has unsaved changes.</source>
         <translation>Il progetto attuale ha delle modifiche non salvate.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>&amp;Save</source>
         <translation>&amp;Salva</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>&amp;New...</source>
         <translation>&amp;Nuovo...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3850"/>
-        <source>Generate a new project</source>
-        <translation>Genera un nuovo progetto</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3851"/>
+        <source>Generate a new project</source>
+        <translation>Genera un nuovo progetto</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3852"/>
         <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nuovo...&lt;/b&gt;&lt;p&gt;Apre un dialogo per l&apos;inserimento delle informazioni per un nuovo progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>&amp;Open...</source>
         <translation>&amp;Apri...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3864"/>
-        <source>Open an existing project</source>
-        <translation>Apri un progetto esistente</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3865"/>
+        <source>Open an existing project</source>
+        <translation>Apri un progetto esistente</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3866"/>
         <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Apri...&lt;/b&gt;&lt;p&gt;Apre un progetto esistente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>Close project</source>
         <translation>Chiudi progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>&amp;Close</source>
         <translation>&amp;Chiudi</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3876"/>
-        <source>Close the current project</source>
-        <translation>Chiudi il progetto corrente</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3877"/>
+        <source>Close the current project</source>
+        <translation>Chiudi il progetto corrente</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3878"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Chiudi&lt;/b&gt;&lt;p&gt;Chiude l&apos;attuale progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3884"/>
+        <location filename="../Project/Project.py" line="3885"/>
         <source>Save project</source>
         <translation>Salva progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3888"/>
-        <source>Save the current project</source>
-        <translation>Salva il progetto corrente</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3889"/>
+        <source>Save the current project</source>
+        <translation>Salva il progetto corrente</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3890"/>
         <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salva&lt;/b&gt;&lt;p&gt;Salva l&apos;attuale progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save &amp;as...</source>
         <translation>S&amp;alva come...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3900"/>
+        <location filename="../Project/Project.py" line="3901"/>
         <source>Save the current project to a new file</source>
         <translation>Salva il progetto attuale come un nuovo file</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3902"/>
+        <location filename="../Project/Project.py" line="3903"/>
         <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salva as &lt;/b&gt;&lt;p&gt;Salva l&apos;attuale progetto come nuovo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add translation to project</source>
         <translation>Aggiungi le traduzioni al progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add &amp;translation...</source>
         <translation>Aggiungi &amp;traduzione...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3947"/>
+        <location filename="../Project/Project.py" line="3948"/>
         <source>Add a translation to the current project</source>
         <translation>Aggiungi le traduzioni al progetto corrente</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3949"/>
+        <location filename="../Project/Project.py" line="3950"/>
         <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aggiungi traduzione...&lt;/b&gt;&lt;p&gt;Apre un dialogo per aggiungere una traduzione al progetto corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Search new files</source>
         <translation>Cerca nuovi file</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Searc&amp;h new files...</source>
         <translation>Cerca &amp;nuovi file...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3961"/>
+        <location filename="../Project/Project.py" line="3962"/>
         <source>Search new files in the project directory.</source>
         <translation>Cerca nei file nella directory del progetto.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>Project properties</source>
         <translation>Proprietà del progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>&amp;Properties...</source>
         <translation>&amp;Proprietà...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3992"/>
-        <source>Show the project properties</source>
-        <translation>Mostra le proprietà del progetto</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3993"/>
+        <source>Show the project properties</source>
+        <translation>Mostra le proprietà del progetto</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3994"/>
         <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Proprietà...&lt;/b&gt;&lt;p&gt;Mosta un dialogo per modificare le proprietà di un progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4115"/>
+        <location filename="../Project/Project.py" line="4116"/>
         <source>Load session</source>
         <translation>Carica sessione</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4119"/>
-        <source>Load the projects session file.</source>
-        <translation>Carica il file di sessione del progetto.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4120"/>
+        <source>Load the projects session file.</source>
+        <translation>Carica il file di sessione del progetto.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4121"/>
         <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation>&lt;b&gt;Carica sessione&lt;/b&gt;&lt;p&gt;Questo carica la sessione del progetto.La sessione è composta dai seguenti dati.&lt;br&gt;- tutti i file sorgente aperti&lt;br&gt;- tutti i breakpoint&lt;br&gt;- gli argomenti alla riga di comango&lt;br&gt;- la directory di lavoro&lt;br&gt;- il flag di segnalazione delle eccezioni&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4133"/>
+        <location filename="../Project/Project.py" line="4134"/>
         <source>Save session</source>
         <translation>Salva sessione</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4137"/>
-        <source>Save the projects session file.</source>
-        <translation>Salva il file sessione del progetto.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4138"/>
+        <source>Save the projects session file.</source>
+        <translation>Salva il file sessione del progetto.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4139"/>
         <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salva sessione&lt;/b&gt;&lt;p&gt;Questo carica la sessione del progetto.La sessione è composta dai seguenti dati.&lt;br&gt;- tutti i file sorgente aperti&lt;br&gt;- tutti i breakpoint&lt;br&gt;- gli argomenti alla riga di comango&lt;br&gt;- la directory di lavoro&lt;br&gt;- il flag di segnalazione delle eccezioni&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>Code Metrics</source>
         <translation>Statistiche codice</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>&amp;Code Metrics...</source>
         <translation>Statistiche &amp;codice...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4169"/>
+        <location filename="../Project/Project.py" line="4170"/>
         <source>Show some code metrics for the project.</source>
         <translation>Mostra alcune statistiche del codice per il progetto.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4171"/>
+        <location filename="../Project/Project.py" line="4172"/>
         <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Statistiche codice...&lt;/b&gt;&lt;p&gt;Mostra alcune statistiche di tutti i file Python nel progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Python Code Coverage</source>
         <translation>Analisi codice Python</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Code Co&amp;verage...</source>
         <translation>A&amp;nalisi codice...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4183"/>
+        <location filename="../Project/Project.py" line="4184"/>
         <source>Show code coverage information for the project.</source>
         <translation>Mostra le informazioni dell&apos;analisi del codice del progetto.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4185"/>
+        <location filename="../Project/Project.py" line="4186"/>
         <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Analisi codice...&lt;/b&gt;&lt;p&gt;Mostra le analisi  del codice di tutti i file Python nel progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Profile Data</source>
         <translation>Profilazione dati</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4193"/>
+        <location filename="../Project/Project.py" line="4194"/>
         <source>&amp;Profile Data...</source>
         <translation>&amp;Profilazione dati...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4197"/>
+        <location filename="../Project/Project.py" line="4198"/>
         <source>Show profiling data for the project.</source>
         <translation>Mostra la profilazione dei dati per il progetto.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4199"/>
+        <location filename="../Project/Project.py" line="4200"/>
         <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profilazione dati...&lt;/b&gt;&lt;p&gt;Mostra la profilazione dei dati per il progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Application Diagram</source>
         <translation>Diagrammi dell&apos;applicazione</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4208"/>
+        <location filename="../Project/Project.py" line="4209"/>
         <source>&amp;Application Diagram...</source>
         <translation>Diagramma dell&apos; &amp;Applicazione...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4212"/>
+        <location filename="../Project/Project.py" line="4213"/>
         <source>Show a diagram of the project.</source>
         <translation>Mostra un diagramma del progetto.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4214"/>
+        <location filename="../Project/Project.py" line="4215"/>
         <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Diagrammi dell&apos;applicazione...&lt;/b&gt;&lt;p&gt;Mostra un diagramma del progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4340"/>
+        <location filename="../Project/Project.py" line="4341"/>
         <source>Open &amp;Recent Projects</source>
         <translation>Apri un progetto &amp;recente</translation>
     </message>
     <message>
+        <location filename="../Project/Project.py" line="4353"/>
+        <source>&amp;Diagrams</source>
+        <translation>&amp;Diagrammi</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4350"/>
+        <source>Chec&amp;k</source>
+        <translation>&amp;Controlla</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4346"/>
+        <source>&amp;Version Control</source>
+        <translation>Controllo di &amp;Versione</translation>
+    </message>
+    <message>
         <location filename="../Project/Project.py" line="4352"/>
-        <source>&amp;Diagrams</source>
-        <translation>&amp;Diagrammi</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4349"/>
-        <source>Chec&amp;k</source>
-        <translation>&amp;Controlla</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4345"/>
-        <source>&amp;Version Control</source>
-        <translation>Controllo di &amp;Versione</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4351"/>
         <source>Sho&amp;w</source>
         <translation>&amp;Mostra</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4354"/>
+        <location filename="../Project/Project.py" line="4355"/>
         <source>Source &amp;Documentation</source>
         <translation>&amp;Documentazione sorgenti</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>Search New Files</source>
         <translation>Cerca Nuovi File</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>There were no new files found to be added.</source>
         <translation>Non sono stati trovati file da aggiungere.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>Version Control System</source>
         <translation>Version Control System</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4996"/>
+        <location filename="../Project/Project.py" line="4997"/>
         <source>Coverage Data</source>
         <translation>Dati Analisi</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5046"/>
+        <location filename="../Project/Project.py" line="5047"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>Non c&apos;è uno script principale definito per il progetto. Esco</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1957"/>
+        <location filename="../Project/Project.py" line="1958"/>
         <source>Rename file</source>
         <translation>Rinomina file</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>Rename File</source>
         <translation>Rinomina File</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>New Project</source>
         <translation>Nuovo Progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2476"/>
+        <location filename="../Project/Project.py" line="2477"/>
         <source>Add existing files to the project?</source>
         <translation>Aggiungi file esistenti al progetto ?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2603"/>
+        <location filename="../Project/Project.py" line="2604"/>
         <source>Would you like to edit the VCS command options?</source>
         <translation>Vuoi modificare le opzioni del comando VCS ?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2546"/>
+        <location filename="../Project/Project.py" line="2547"/>
         <source>Shall the project file be added to the repository?</source>
         <translation>Il file progetto deve essere aggiunto al repository ?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2575"/>
+        <location filename="../Project/Project.py" line="2576"/>
         <source>Select version control system for the project</source>
         <translation>Seleziona il version control system per il progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory to project</source>
         <translation>Aggiungi directory al progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory...</source>
         <translation>Aggiungi directory...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3932"/>
+        <location filename="../Project/Project.py" line="3933"/>
         <source>Add a directory to the current project</source>
         <translation>Aggiungi una directory al progetto corrente</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3934"/>
+        <location filename="../Project/Project.py" line="3935"/>
         <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aggiungi directory...&lt;/b&gt;&lt;p&gt;Apre un dialogo per aggiungere una directory al progetto corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Code Coverage</source>
         <translation>Analisi codice</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Please select a coverage file</source>
         <translation>Per favore seleziona un file per l&apos;analisi</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Please select a profile file</source>
         <translation>Per favore seleziona un file per la profilazione</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>Delete project session</source>
         <translation>Cancella sessione di progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4151"/>
+        <location filename="../Project/Project.py" line="4152"/>
         <source>Delete session</source>
         <translation>Cancella sessione</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4155"/>
-        <source>Delete the projects session file.</source>
-        <translation>Cancella il file di sessione del progetto.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4156"/>
+        <source>Delete the projects session file.</source>
+        <translation>Cancella il file di sessione del progetto.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4157"/>
         <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cancella sessione&lt;/b&gt;&lt;p&gt;Cancella la sessione del progetto.&lt;/p&gt;</translation>
     </message>
@@ -56164,242 +56217,242 @@
         <translation>Altro</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Include module names?</source>
         <translation>Includi i nomi dei moduli ?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>Delete directory</source>
         <translation>Cancella directory</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>Read tasks</source>
         <translation>Leggi tesk</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>Save tasks</source>
         <translation>Salva task</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>Read debugger properties</source>
         <translation>Leggi le proprietà del debugger</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>Save debugger properties</source>
         <translation>Salva le proprietà del debugger</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>Delete debugger properties</source>
         <translation>Cancella le proprietà del debugger</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger Properties</source>
         <translation>Proprietà Debugger</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger &amp;Properties...</source>
         <translation>&amp;Proprietà Debugger...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4055"/>
-        <source>Show the debugger properties</source>
-        <translation>Mostra le proprietàd el debugger</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4056"/>
+        <source>Show the debugger properties</source>
+        <translation>Mostra le proprietàd el debugger</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4057"/>
         <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Proprietà debugger...&lt;/b&gt;&lt;p&gt;Mostra un dialogo per modificare le impostazioni specifiche per il progetto del debugger.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>Load</source>
         <translation>Carica</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>&amp;Load</source>
         <translation>&amp;Carica</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4068"/>
+        <location filename="../Project/Project.py" line="4069"/>
         <source>Load the debugger properties</source>
         <translation>Carica le proprietàd el debugger</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>Save</source>
         <translation>Salva</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4080"/>
+        <location filename="../Project/Project.py" line="4081"/>
         <source>Save the debugger properties</source>
         <translation>Salva le proprietà del debugger</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>Delete</source>
         <translation>Cancella</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>&amp;Delete</source>
         <translation>&amp;Cancella</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4092"/>
+        <location filename="../Project/Project.py" line="4093"/>
         <source>Delete the debugger properties</source>
         <translation>Cancella le proprietà del debugger</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>Reset</source>
         <translation>Resetta</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>&amp;Reset</source>
         <translation>&amp;Resetta</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4105"/>
+        <location filename="../Project/Project.py" line="4106"/>
         <source>Reset the debugger properties</source>
         <translation>Resetta le proprietà del debugger</translation>
     </message>
     <message>
+        <location filename="../Project/Project.py" line="4343"/>
+        <source>Debugger</source>
+        <translation>Debugger</translation>
+    </message>
+    <message>
         <location filename="../Project/Project.py" line="4342"/>
-        <source>Debugger</source>
-        <translation>Debugger</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4341"/>
         <source>Session</source>
         <translation>Sessione</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4069"/>
+        <location filename="../Project/Project.py" line="4070"/>
         <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Carica le proprietà del debugger&lt;/b&gt;&lt;p&gt;Carica le proprietà del debugger specifiche per il progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4081"/>
+        <location filename="../Project/Project.py" line="4082"/>
         <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salva le proprietà del debugger&lt;/b&gt;&lt;p&gt;Salva le proprietà del debugger specifiche per il progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4093"/>
+        <location filename="../Project/Project.py" line="4094"/>
         <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cancella le proprietà del debugger&lt;/b&gt;&lt;p&gt;Cancella il file che contiene le proprietà del debugger specifiche per il progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4106"/>
+        <location filename="../Project/Project.py" line="4107"/>
         <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Azzera le proprietà del debugger&lt;/b&gt;&lt;p&gt;Azzera le proprietà del debugger specifiche per il progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations</source>
         <translation>Associazione tipi file</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations...</source>
         <translation>Associazione tipi file...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4019"/>
+        <location filename="../Project/Project.py" line="4020"/>
         <source>Show the project filetype associations</source>
         <translation>Mostra le associazioni dei tipi di file del progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4353"/>
+        <location filename="../Project/Project.py" line="4354"/>
         <source>Pac&amp;kagers</source>
         <translation>Pac&amp;kagers</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add files to project</source>
         <translation>Aggiungi file al progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add &amp;files...</source>
         <translation>Aggiungi &amp;files...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3916"/>
+        <location filename="../Project/Project.py" line="3917"/>
         <source>Add files to the current project</source>
         <translation>Aggiungi file al progetto corrente</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3918"/>
+        <location filename="../Project/Project.py" line="3919"/>
         <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aggiungi files...&lt;/b&gt;&lt;p&gt;Apre un dialogo per aggiungere file al progetto corrente. Il posto dove aggiungerli è determinato dall&apos;estensione.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3120"/>
+        <location filename="../Project/Project.py" line="3121"/>
         <source>Project Files (*.e4p)</source>
         <translation>File progetto (*.e4p)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4339"/>
+        <location filename="../Project/Project.py" line="4340"/>
         <source>&amp;Project</source>
         <translation>&amp;Progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4479"/>
+        <location filename="../Project/Project.py" line="4480"/>
         <source>Project</source>
         <translation>Progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4545"/>
+        <location filename="../Project/Project.py" line="4546"/>
         <source>&amp;Clear</source>
         <translation>Pulis&amp;ci</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>Read user project properties</source>
         <translation>Leggi le proprietà utente del progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>Save user project properties</source>
         <translation>Salva le proprietà utente del progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>User project properties</source>
         <translation>Proprietà utente del progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>&amp;User Properties...</source>
         <translation>Proprietà &amp;utente...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4005"/>
+        <location filename="../Project/Project.py" line="4006"/>
         <source>Show the user specific project properties</source>
         <translation>Mostra le proprietà del multiprogetto specifiche dell&apos;utente</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4007"/>
+        <location filename="../Project/Project.py" line="4008"/>
         <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Proprietà utente...&lt;/b&gt;&lt;p&gt;Mosta un dialogo per modificare le proprietà utente di un progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>Syntax errors detected</source>
         <translation>Errore di sintassi rilevato</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>The project contains %n file(s) with syntax errors.</source>
         <translation>
             <numerusform>Il progetto contiene %n file con errori di sintassi.</numerusform>
@@ -56407,42 +56460,42 @@
         </translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>Create Package List</source>
         <translation>Crea lista del package</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4237"/>
+        <location filename="../Project/Project.py" line="4238"/>
         <source>Create &amp;Package List</source>
         <translation type="unfinished">Crea un &amp;archivio per il plugin</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>Create Plugin Archive</source>
         <translation>Crea un archivio per il plugin</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5267"/>
+        <location filename="../Project/Project.py" line="5268"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;PKGLIST&lt;/b&gt; esiste già.&lt;/p&gt;&lt;p&gt;Sovrascriverlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5337"/>
+        <location filename="../Project/Project.py" line="5338"/>
         <source>The project does not have a main script defined. Aborting...</source>
         <translation>Non c&apos;è uno script principale definito per il progetto. Esco...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1708"/>
+        <location filename="../Project/Project.py" line="1709"/>
         <source>&lt;p&gt;The source directory doesn&apos;t contain any files belonging to the selected category.&lt;/p&gt;</source>
         <translation>&lt;p&gt;La directory di partenza non contiene nessun file appartenente alla categoria selezionata.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>Select Version Control System</source>
         <translation>Selezione il Sistema di Controllo della Versione (VCS)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2582"/>
+        <location filename="../Project/Project.py" line="2583"/>
         <source>None</source>
         <translation>Nessuno</translation>
     </message>
@@ -56452,42 +56505,42 @@
         <translation>Registrazione tipo progetto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4253"/>
+        <location filename="../Project/Project.py" line="4254"/>
         <source>Create Plugin &amp;Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>You have to specify a translation pattern first.</source>
         <translation>Devi prima specificare un pattern di traduzione.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Translation Pattern</source>
         <translation>Pattern di traduzione</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Enter the path pattern for translation files (use &apos;%language%&apos; in place of the language code):</source>
         <translation>Inserisci il path per il file di traduzione (usa &apos;%language% al posto del codice lingua):</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations</source>
         <translation>Associazioni analizzatore lessicale</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations...</source>
         <translation>Associazioni analizzatore lessicale...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4037"/>
+        <location filename="../Project/Project.py" line="4038"/>
         <source>Show the project lexer associations (overriding defaults)</source>
         <translation>Mostra le associazioni degli analizzatori lessicali del progetto (sovrascrivendo i default)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4039"/>
+        <location filename="../Project/Project.py" line="4040"/>
         <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Associazioni analizzatore lessicale...&lt;/b&gt;&lt;p&gt;Mostra un dialogo per modificare le associazioni degli analizzatori lessicali dei progetti. Queste associazioni sovrascrivono the impostazioni globali. Gli analizzatori lessicali sono utilizzati per l&apos;evidenziazione del testo nell&apos;editor.&lt;/p&gt;</translation>
     </message>
@@ -56507,112 +56560,112 @@
         <translation>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file progetto &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file progetto &lt;b{0}&lt;/b&gt; non può essere scritto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file delle proprietà specifiche dell&apos;utente del progetto &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file delle proprietà specifiche dell&apos;utente del progetto &lt;b&gt;{0}&lt;/b&gt; non può essere scritto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;La sessione del progetto &lt;b&gt;{0}&lt;/b&gt; non può essere letta.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;La sessione del progetto &lt;b&gt;{0}&lt;/b&gt; non può essere scritta.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation>&lt;p&gt;La sessione del progetto &lt;b&gt;{0}&lt;/b&gt; non può essere cancellato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file task &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file task &lt;b&gt;{0}&lt;/b&gt; non può essere scritto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file delle proprietà del debugger del progetto&lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file delle proprietà del debugger del progetto&lt;b&gt;{0}&lt;/b&gt; non può essere scritto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file delle proprietà del debugger del progetto&lt;b&gt;{0}&lt;/b&gt; non può essere cancellato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1741"/>
+        <location filename="../Project/Project.py" line="1742"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già.&lt;/p&gt;&lt;p&gt;Sovrascriverlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere rinominato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
         <translation>&lt;p&gt;La directory del progetto &lt;b&gt;{0}&lt;/b&gt; non può essere creata.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;VCS selezionato &lt;b&gt;{0}&lt;/b&gt;non trovato.&lt;br&gt;Disabilito il controllo di versione.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;PKGLIST&lt;/b&gt; non può essere creato.&lt;br /&gt;Motivo: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5477"/>
+        <location filename="../Project/Project.py" line="5478"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere aggiunto all&apos;archivio.Lo ignoro.&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5548"/>
+        <location filename="../Project/Project.py" line="5549"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file plugin &lt;b&gt;{0}&lt;/b&gt; non può essere salvato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1664"/>
+        <location filename="../Project/Project.py" line="1665"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file selezionato &lt;b&gt;{0}&lt;/b&gt; non può essere aggiunto a &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Motivo: {2}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1723"/>
+        <location filename="../Project/Project.py" line="1724"/>
         <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;La directory di destinazione&lt;b&gt;{0}&lt;/b&gt; non può essere creata.&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
@@ -56622,32 +56675,32 @@
         <translation type="obsolete">Python Files (*.py2);;Python GUI Files (*.pyw2);;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>Create main script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>&lt;p&gt;The mainscript &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>Load Diagram</source>
         <translation type="unfinished">Carico Diagramma</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>&amp;Load Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4226"/>
+        <location filename="../Project/Project.py" line="4227"/>
         <source>Load a diagram from file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4228"/>
+        <location filename="../Project/Project.py" line="4229"/>
         <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -56672,12 +56725,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4854"/>
+        <location filename="../Project/Project.py" line="4855"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -56702,193 +56755,193 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>Create project management directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Alt+Ctrl+P</source>
         <comment>Project|Search Project File</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3978"/>
+        <location filename="../Project/Project.py" line="3979"/>
         <source>Search for a file in the project list of files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3980"/>
+        <location filename="../Project/Project.py" line="3981"/>
         <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5373"/>
+        <location filename="../Project/Project.py" line="5374"/>
         <source>Create Plugin Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (Snapshot)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (&amp;Snapshot)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5351"/>
+        <location filename="../Project/Project.py" line="5352"/>
         <source>Select package lists:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Creating plugin archives...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Abort</source>
         <translation type="unfinished">Termina</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>%v/%m Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5385"/>
+        <location filename="../Project/Project.py" line="5386"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5362"/>
+        <location filename="../Project/Project.py" line="5363"/>
         <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5413"/>
+        <location filename="../Project/Project.py" line="5414"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the&apos;; initial_list&apos; line of the header.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3963"/>
+        <location filename="../Project/Project.py" line="3964"/>
         <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4021"/>
+        <location filename="../Project/Project.py" line="4022"/>
         <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>Create Makefile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>Execute Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4291"/>
+        <location filename="../Project/Project.py" line="4292"/>
         <source>&amp;Execute Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4295"/>
+        <location filename="../Project/Project.py" line="4296"/>
         <source>Perform a &apos;make&apos; run.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4297"/>
+        <location filename="../Project/Project.py" line="4298"/>
         <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a &apos;make&apos; run to rebuild the configured target.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5755"/>
+        <location filename="../Project/Project.py" line="5756"/>
         <source>Test for Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4305"/>
+        <location filename="../Project/Project.py" line="4306"/>
         <source>&amp;Test for Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4309"/>
+        <location filename="../Project/Project.py" line="4310"/>
         <source>Question &apos;make&apos;, if a rebuild is needed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4311"/>
+        <location filename="../Project/Project.py" line="4312"/>
         <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions &apos;make&apos;, if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4356"/>
+        <location filename="../Project/Project.py" line="4357"/>
         <source>Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5703"/>
+        <location filename="../Project/Project.py" line="5704"/>
         <source>The make process did not start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5748"/>
+        <location filename="../Project/Project.py" line="5749"/>
         <source>The make process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5758"/>
+        <location filename="../Project/Project.py" line="5759"/>
         <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5763"/>
+        <location filename="../Project/Project.py" line="5764"/>
         <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>The makefile contains errors.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -56903,7 +56956,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4344"/>
+        <location filename="../Project/Project.py" line="4345"/>
         <source>Project-T&amp;ools</source>
         <translation type="unfinished"></translation>
     </message>
@@ -56933,47 +56986,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4242"/>
+        <location filename="../Project/Project.py" line="4243"/>
         <source>Create an initial PKGLIST file for an eric plugin.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4244"/>
+        <location filename="../Project/Project.py" line="4245"/>
         <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4258"/>
+        <location filename="../Project/Project.py" line="4259"/>
         <source>Create eric plugin archive files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4260"/>
+        <location filename="../Project/Project.py" line="4261"/>
         <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4275"/>
+        <location filename="../Project/Project.py" line="4276"/>
         <source>Create eric plugin archive files (snapshot releases).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4277"/>
+        <location filename="../Project/Project.py" line="4278"/>
         <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5441"/>
+        <location filename="../Project/Project.py" line="5442"/>
         <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5496"/>
+        <location filename="../Project/Project.py" line="5497"/>
         <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5504"/>
+        <location filename="../Project/Project.py" line="5505"/>
         <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -58745,7 +58798,7 @@
 <context>
     <name>PropertiesDialog</name>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="119"/>
+        <location filename="../Project/PropertiesDialog.py" line="127"/>
         <source>The project is not version controlled.</source>
         <translation>Il progetto non è sotto controllo della versione.</translation>
     </message>
@@ -58764,12 +58817,12 @@
 &lt;p&gt;Se il progetto è controllato da un sistema di controllo delle versioni, il pulsante &quot;Mostra Info Repository&quot; mostra le informazioni sul repository.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="315"/>
+        <location filename="../Project/PropertiesDialog.ui" line="329"/>
         <source>Enter authors email</source>
         <translation>Inserisci email dell&apos;autore</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="318"/>
+        <location filename="../Project/PropertiesDialog.ui" line="332"/>
         <source>&lt;b&gt;Email&lt;/b&gt;
 &lt;p&gt;Enter the email address of the author&lt;/p&gt;</source>
         <translation>&lt;b&gt;Email&lt;/b&gt;
@@ -58790,19 +58843,19 @@
  premendo il pulsante sulla destra&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="339"/>
+        <location filename="../Project/PropertiesDialog.ui" line="353"/>
         <source>Enter description</source>
         <translation>Inserisci descrizione</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="342"/>
+        <location filename="../Project/PropertiesDialog.ui" line="356"/>
         <source>&lt;b&gt;Description&lt;/b&gt;
 &lt;p&gt;Enter a short description for the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Descrizione&lt;/b&gt;
 &lt;p&gt;Inserisci una descrizione del progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <location filename="../Project/PropertiesDialog.ui" line="298"/>
         <source>&amp;Author:</source>
         <translation>&amp;Autore:</translation>
     </message>
@@ -58856,24 +58909,24 @@
         <translation>Script Pri&amp;ncipale:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="326"/>
+        <location filename="../Project/PropertiesDialog.ui" line="340"/>
         <source>&amp;Description:</source>
         <translation>&amp;Descrizione:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="294"/>
+        <location filename="../Project/PropertiesDialog.ui" line="308"/>
         <source>Enter authors name</source>
         <translation>Inserisci il nome degli autori</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="297"/>
+        <location filename="../Project/PropertiesDialog.ui" line="311"/>
         <source>&lt;b&gt;Author&lt;/b&gt;
 &lt;p&gt;Enter the name of the author.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Autori&lt;/b&gt;
 &lt;p&gt;Inserisci il nome degli autori.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="305"/>
+        <location filename="../Project/PropertiesDialog.ui" line="319"/>
         <source>&amp;Email:</source>
         <translation>&amp;Email:</translation>
     </message>
@@ -58902,17 +58955,17 @@
 &lt;p&gt;Inserisci il numero di versione.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="383"/>
+        <location filename="../Project/PropertiesDialog.ui" line="397"/>
         <source>Press to show information about the repository</source>
         <translation>Premi per mostrare delle informazioni sul repository</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="386"/>
+        <location filename="../Project/PropertiesDialog.ui" line="400"/>
         <source>Show &amp;Repository Info</source>
         <translation>Mostra informazioni sul &amp;Repository</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="389"/>
+        <location filename="../Project/PropertiesDialog.ui" line="403"/>
         <source>Alt+R</source>
         <translation>Alt+R</translation>
     </message>
@@ -58968,12 +59021,12 @@
         <translation>Proprietà correttore ortografico...</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="113"/>
+        <location filename="../Project/PropertiesDialog.py" line="121"/>
         <source>The project is version controlled by &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation>Il progetto è sotto controllo della versione di &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="58"/>
+        <location filename="../Project/PropertiesDialog.py" line="66"/>
         <source>Source Files ({0});;All Files (*)</source>
         <translation>Source Files ({0});;All Files (*)</translation>
     </message>
@@ -59008,12 +59061,12 @@
         <translation>Windows/DOS</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="358"/>
+        <location filename="../Project/PropertiesDialog.ui" line="372"/>
         <source>Select to create a version controlled project</source>
         <translation>Selezionare oer creare un progetto di controllo versione</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="361"/>
+        <location filename="../Project/PropertiesDialog.ui" line="375"/>
         <source>Version Controlled Project</source>
         <translation>Progetto di Controllo Versione</translation>
     </message>
@@ -59032,6 +59085,21 @@
         <source>Press to open a dialog to enter the &apos;make&apos; parameters</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="291"/>
+        <source>Select the docstring style for the project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.py" line="50"/>
+        <source>None</source>
+        <translation type="unfinished">Nessuno</translation>
+    </message>
 </context>
 <context>
     <name>ProtobufPage</name>
--- a/eric6/i18n/eric6_pt.ts	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/i18n/eric6_pt.ts	Fri Jan 22 16:48:43 2021 +0100
@@ -8947,7 +8947,7 @@
         <translation>docstring tem indentação errada</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="86"/>
         <source>docstring summary does not end with a period</source>
         <translation>sumário de docstring não termina com um ponto final</translation>
     </message>
@@ -8982,7 +8982,7 @@
         <translation>docstring de classe não está seguida por uma linha em branco</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
         <source>docstring summary is not followed by a blank line</source>
         <translation>sumário de docstring não seguido por uma linha em branco</translation>
     </message>
@@ -8992,92 +8992,92 @@
         <translation>último parágrafo da docstring não está seguido por uma linha em branco</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
         <source>private function/method is missing a docstring</source>
         <translation>falta uma docstring ao método/função privado</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="76"/>
         <source>private class is missing a docstring</source>
         <translation>falta uma docstring à classe privada</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="77"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation>aspas iniciais da docstring não estão em linha separada</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="80"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation>aspas iniciais da docstring não estão em linha separada</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
         <source>trailing quotes of docstring not on separate line</source>
         <translation>aspas de fecho da docstring não estão numa linha separada</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="87"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="90"/>
         <source>docstring does not contain a @return line but function/method returns something</source>
         <translation>docstring sem linha @return mas a função/método devolve algo</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="91"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="94"/>
         <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
         <translation>docstring com linha @return mas a função/método não devolve nada</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="103"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation>docstring sem linhas @param/@keyparam suficientes</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="106"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
-        <translation>docstring com demasiadas linhas @param/@keyparam</translation>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
+        <translation>docstring sem linhas @param/@keyparam suficientes</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="109"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
-        <translation>argumentos de palavra chave devem de estar documentados com linhas @keyparam</translation>
+        <source>docstring contains too many @param/@keyparam lines</source>
+        <translation>docstring com demasiadas linhas @param/@keyparam</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="112"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
-        <translation>ordem das linhas @param/@keyparam não coincidem com a assinatura de função/método</translation>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <translation>argumentos de palavra chave devem de estar documentados com linhas @keyparam</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="115"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation>ordem das linhas @param/@keyparam não coincidem com a assinatura de função/método</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="118"/>
         <source>class docstring is preceded by a blank line</source>
         <translation>docstring de classe está antecedida por uma linha em branco</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="117"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="120"/>
         <source>class docstring is followed by a blank line</source>
         <translation>docstring de classe está seguida por uma linha em branco</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="119"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation>docstring de função/método precedida por uma linha em branco</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="122"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation>docstring de função/método precedida por uma linha em branco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
         <source>function/method docstring is followed by a blank line</source>
         <translation>docstring de função/método seguida de uma linha em branco</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation>último parágrafo da docstring seguido de uma linha em branco</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="131"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation>último parágrafo da docstring seguido de uma linha em branco</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="134"/>
         <source>docstring does not contain a @exception line but function/method raises an exception</source>
         <translation>docstring sem linha @exception mas a função/método cria uma exceção</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="135"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="138"/>
         <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
         <translation>docstring contém uma linha @exception mas o método/função não levanta uma exceção</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="158"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="161"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
@@ -9087,42 +9087,42 @@
         <translation>docstring não contém um sumário</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="88"/>
         <source>docstring summary does not start with &apos;{0}&apos;</source>
         <translation>sumário de docstring não começa com &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="139"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="142"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="145"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="148"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <source>docstring does not contain a @signal line but class defines signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="151"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="154"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="157"/>
         <source>documented signal &apos;{0}&apos; is not defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="75"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="78"/>
         <source>class docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9137,15 +9137,43 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="95"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="98"/>
         <source>docstring does not contain a @yield line but function/method yields something</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="99"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="102"/>
         <source>docstring contains a @yield line but function/method doesn&apos;t yield anything</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <source>function docstring still contains some placeholders</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>DocstringGenerator</name>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="42"/>
+        <source>Eric</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="44"/>
+        <source>NumPy</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="46"/>
+        <source>Google</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="48"/>
+        <source>Sphinx</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DotDesktopListSelectionDialog</name>
@@ -11531,817 +11559,817 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3110"/>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
         <source>Open File</source>
         <translation>Abrir Ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="379"/>
+        <location filename="../QScintilla/Editor.py" line="381"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O tamanho do ficheiro &lt;b&gt;{0}&lt;/b&gt; é &lt;b&gt;{1} KB&lt;/b&gt;. Tem a certeza de que  o quer carregar?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="468"/>
+        <location filename="../QScintilla/Editor.py" line="470"/>
         <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="783"/>
+        <location filename="../QScintilla/Editor.py" line="785"/>
         <source>Undo</source>
         <translation>Desfazer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="786"/>
+        <location filename="../QScintilla/Editor.py" line="788"/>
         <source>Redo</source>
         <translation>Refazer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="789"/>
+        <location filename="../QScintilla/Editor.py" line="791"/>
         <source>Revert to last saved state</source>
         <translation>Voltar ao último estado guardado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="793"/>
+        <location filename="../QScintilla/Editor.py" line="795"/>
         <source>Cut</source>
         <translation>Cortar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="796"/>
+        <location filename="../QScintilla/Editor.py" line="798"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="799"/>
+        <location filename="../QScintilla/Editor.py" line="801"/>
         <source>Paste</source>
         <translation>Colar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="807"/>
+        <location filename="../QScintilla/Editor.py" line="809"/>
         <source>Indent</source>
         <translation>Indentar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="810"/>
+        <location filename="../QScintilla/Editor.py" line="812"/>
         <source>Unindent</source>
         <translation>Tirar Indentação</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="813"/>
+        <location filename="../QScintilla/Editor.py" line="815"/>
         <source>Comment</source>
         <translation>Comentar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="816"/>
+        <location filename="../QScintilla/Editor.py" line="818"/>
         <source>Uncomment</source>
         <translation>Descomentar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Stream Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Box Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="826"/>
-        <source>Select to brace</source>
-        <translation>Selecionar até parentesis</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="828"/>
+        <source>Select to brace</source>
+        <translation>Selecionar até parentesis</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Select all</source>
         <translation>Selecionar tudo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="829"/>
+        <location filename="../QScintilla/Editor.py" line="831"/>
         <source>Deselect all</source>
         <translation>Desselecionar tudo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7881"/>
+        <location filename="../QScintilla/Editor.py" line="7905"/>
         <source>Check spelling...</source>
         <translation>Verificação ortográfica...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="837"/>
+        <location filename="../QScintilla/Editor.py" line="839"/>
         <source>Check spelling of selection...</source>
         <translation>Verificação ortográfica da seleção...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="841"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Remove from dictionary</source>
         <translation>Retirar do dicionário</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="847"/>
+        <location filename="../QScintilla/Editor.py" line="853"/>
         <source>Shorten empty lines</source>
         <translation>Encolher linhas vazias</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="854"/>
+        <location filename="../QScintilla/Editor.py" line="860"/>
         <source>Use Monospaced Font</source>
         <translation>Usar Tipo de Letra de Tamanho Único</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="859"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Autosave enabled</source>
         <translation>Ativado autogravar </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="869"/>
         <source>Typing aids enabled</source>
         <translation>Habilitada a ajuda à escritura</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="902"/>
-        <source>Close</source>
-        <translation>Fechar</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="908"/>
+        <source>Close</source>
+        <translation>Fechar</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="914"/>
         <source>Save</source>
         <translation>Gravar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="911"/>
+        <location filename="../QScintilla/Editor.py" line="917"/>
         <source>Save As...</source>
         <translation>Gravar Como...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
+        <location filename="../QScintilla/Editor.py" line="930"/>
         <source>Print Preview</source>
         <translation>Antevisão da Impressão</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="933"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="956"/>
+        <location filename="../QScintilla/Editor.py" line="962"/>
         <source>Complete from Document</source>
         <translation type="unfinished">desde Documento</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="958"/>
+        <location filename="../QScintilla/Editor.py" line="964"/>
         <source>Complete from APIs</source>
         <translation type="unfinished">desde APIs</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="960"/>
+        <location filename="../QScintilla/Editor.py" line="966"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished">desde Documento e APIs</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="878"/>
+        <location filename="../QScintilla/Editor.py" line="884"/>
         <source>Calltip</source>
         <translation>Dica</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="974"/>
+        <location filename="../QScintilla/Editor.py" line="980"/>
         <source>Check</source>
         <translation>Verificar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="994"/>
+        <location filename="../QScintilla/Editor.py" line="1000"/>
         <source>Show</source>
         <translation>Mostrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="996"/>
-        <source>Code metrics...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="997"/>
-        <source>Code coverage...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="999"/>
-        <source>Show code coverage annotations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1002"/>
-        <source>Hide code coverage annotations</source>
+        <source>Code metrics...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1003"/>
+        <source>Code coverage...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1005"/>
+        <source>Show code coverage annotations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1008"/>
+        <source>Hide code coverage annotations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1011"/>
         <source>Profile data...</source>
         <translation>Dados de Perfil...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
-        <source>Diagrams</source>
-        <translation>Diagramas</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1020"/>
-        <source>Class Diagram...</source>
-        <translation>Diagrama de Classes...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1022"/>
-        <source>Package Diagram...</source>
-        <translation>Diagrama do Pacote...</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1024"/>
-        <source>Imports Diagram...</source>
-        <translation>Diagrama de Imports...</translation>
+        <source>Diagrams</source>
+        <translation>Diagramas</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1026"/>
+        <source>Class Diagram...</source>
+        <translation>Diagrama de Classes...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1028"/>
+        <source>Package Diagram...</source>
+        <translation>Diagrama do Pacote...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1030"/>
+        <source>Imports Diagram...</source>
+        <translation>Diagrama de Imports...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1032"/>
         <source>Application Diagram...</source>
         <translation>Diagrama da Aplicação...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1044"/>
+        <location filename="../QScintilla/Editor.py" line="1050"/>
         <source>Languages</source>
         <translation>Linguagens</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1177"/>
+        <location filename="../QScintilla/Editor.py" line="1183"/>
         <source>No Language</source>
         <translation>Nenhuma Linguagem</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1073"/>
+        <location filename="../QScintilla/Editor.py" line="1079"/>
         <source>Guessed</source>
         <translation>Adivinhado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1413"/>
+        <location filename="../QScintilla/Editor.py" line="1419"/>
         <source>Alternatives</source>
         <translation>Alternativas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1093"/>
+        <location filename="../QScintilla/Editor.py" line="1099"/>
         <source>Encodings</source>
         <translation>Codificações</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1134"/>
+        <location filename="../QScintilla/Editor.py" line="1140"/>
         <source>End-of-Line Type</source>
         <translation>Tipo do Fim-de-Linha</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1138"/>
+        <location filename="../QScintilla/Editor.py" line="1144"/>
         <source>Unix</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1145"/>
+        <location filename="../QScintilla/Editor.py" line="1151"/>
         <source>Windows</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1152"/>
+        <location filename="../QScintilla/Editor.py" line="1158"/>
         <source>Macintosh</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1202"/>
+        <location filename="../QScintilla/Editor.py" line="1208"/>
         <source>Export as</source>
         <translation>Exportar como</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1224"/>
-        <source>Toggle bookmark</source>
-        <translation>Alternar marcadores</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1226"/>
-        <source>Next bookmark</source>
-        <translation>Marcador seguinte</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1228"/>
-        <source>Previous bookmark</source>
-        <translation>Marcador anterior</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1230"/>
+        <source>Toggle bookmark</source>
+        <translation>Alternar marcadores</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1232"/>
+        <source>Next bookmark</source>
+        <translation>Marcador seguinte</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1234"/>
+        <source>Previous bookmark</source>
+        <translation>Marcador anterior</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1236"/>
         <source>Clear all bookmarks</source>
         <translation>Limpar os marcadores todos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1239"/>
+        <location filename="../QScintilla/Editor.py" line="1245"/>
         <source>Toggle breakpoint</source>
         <translation>Alternar pontos de interrupção</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1241"/>
+        <location filename="../QScintilla/Editor.py" line="1247"/>
         <source>Toggle temporary breakpoint</source>
         <translation>Alternar pontos de interrupção temporais</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1244"/>
+        <location filename="../QScintilla/Editor.py" line="1250"/>
         <source>Edit breakpoint...</source>
         <translation>Editar ponto de interrupção...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5613"/>
+        <location filename="../QScintilla/Editor.py" line="5626"/>
         <source>Enable breakpoint</source>
         <translation>Habilitar pontos de interrupção</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1249"/>
+        <location filename="../QScintilla/Editor.py" line="1255"/>
         <source>Next breakpoint</source>
         <translation>Ponto de interrupção seguinte</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1251"/>
+        <location filename="../QScintilla/Editor.py" line="1257"/>
         <source>Previous breakpoint</source>
         <translation>Ponto de interrupção anterior</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1256"/>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
         <source>Clear all breakpoints</source>
         <translation>Apagar todos os pontos de interrupção</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1304"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Goto syntax error</source>
         <translation>Ir ao erro de sintaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1314"/>
         <source>Show syntax error message</source>
         <translation>Mostrar a mensagem de erro de sintaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1313"/>
+        <location filename="../QScintilla/Editor.py" line="1319"/>
         <source>Clear syntax error</source>
         <translation>Limpar o erro de sintaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1318"/>
+        <location filename="../QScintilla/Editor.py" line="1324"/>
         <source>Next warning</source>
         <translation>Aviso seguinte</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1322"/>
+        <location filename="../QScintilla/Editor.py" line="1328"/>
         <source>Previous warning</source>
         <translation>Aviso anterior</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1326"/>
+        <location filename="../QScintilla/Editor.py" line="1332"/>
         <source>Show warning message</source>
         <translation>Mostrar mensagem de aviso</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1330"/>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
         <source>Clear warnings</source>
         <translation>Limpar avisos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1335"/>
+        <location filename="../QScintilla/Editor.py" line="1341"/>
         <source>Next uncovered line</source>
         <translation>Linha seguinte sem cobrir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1339"/>
+        <location filename="../QScintilla/Editor.py" line="1345"/>
         <source>Previous uncovered line</source>
         <translation>Linha anterior sem cobrir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1344"/>
+        <location filename="../QScintilla/Editor.py" line="1350"/>
         <source>Next task</source>
         <translation>Tarefa seguinte</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1348"/>
+        <location filename="../QScintilla/Editor.py" line="1354"/>
         <source>Previous task</source>
         <translation>Tarefa anterior</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
         <source>Export source</source>
         <translation>Exportar fonte</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1390"/>
+        <location filename="../QScintilla/Editor.py" line="1396"/>
         <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não está disponível um exportador para formato &lt;b&gt;{0}&lt;/b&gt;. A cancelar...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
         <source>No export format given. Aborting...</source>
         <translation>Não foi dado o formato para exportar. A cancelar...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1409"/>
+        <location filename="../QScintilla/Editor.py" line="1415"/>
         <source>Alternatives ({0})</source>
         <translation>Alternativas ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
         <source>Pygments Lexer</source>
         <translation>Analizador Léxico Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Selecionar o analizador léxico Pygments a aplicar.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>Modification of Read Only file</source>
         <translation>Modificação do ficheiro de Apenas Leitura</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>You are attempting to change a read only file. Please save to a different file first.</source>
         <translation>Tenta alterar um ficheiro de Apenas Leitura. Por favor guarde-o primeiro num ficheiro diferente. </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2675"/>
+        <location filename="../QScintilla/Editor.py" line="2681"/>
         <source>Printing...</source>
         <translation>A imprimir...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2692"/>
+        <location filename="../QScintilla/Editor.py" line="2698"/>
         <source>Printing completed</source>
         <translation>Impressão completa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2694"/>
+        <location filename="../QScintilla/Editor.py" line="2700"/>
         <source>Error while printing</source>
         <translation>Erro durante a impressão</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2697"/>
+        <location filename="../QScintilla/Editor.py" line="2703"/>
         <source>Printing aborted</source>
         <translation>Impressão cancelada</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <source>File Modified</source>
         <translation>Ficheiro Modificado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <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="../QScintilla/Editor.py" line="3110"/>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não se pôde abrir o ficheiro &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt; Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
         <source>Save File</source>
         <translation>Gravar Ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3234"/>
+        <location filename="../QScintilla/Editor.py" line="3240"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; não se pôde gravar. &lt;br/&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion</source>
         <translation>Autocompletar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation>Autocompletar não está disponivel porque a fonte de autocompletar não está definida.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5616"/>
+        <location filename="../QScintilla/Editor.py" line="5629"/>
         <source>Disable breakpoint</source>
         <translation>Inabilitar ponto de interrupção</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <source>Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <source>Please select a coverage file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>Show Code Coverage Annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6047"/>
+        <location filename="../QScintilla/Editor.py" line="6060"/>
         <source>All lines have been covered.</source>
         <translation>Foram cobertas as linhas todas.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>There is no coverage file available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Profile Data</source>
         <translation>Dados de Perfil</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Please select a profile file</source>
         <translation>Escolha um ficheiro de perfil por favor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <source>Syntax Error</source>
         <translation>Erro de Sintaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <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="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Macro Name</source>
         <translation>Nome de Macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Select a macro name:</source>
         <translation>Selecionar um nome de macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6750"/>
-        <source>Load macro file</source>
-        <translation>Carregar ficheiro macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6792"/>
-        <source>Macro files (*.macro)</source>
-        <translation>Ficheiros Macro (*.macro)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6772"/>
-        <source>Error loading macro</source>
-        <translation>Erro ao carregar macro</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6763"/>
+        <source>Load macro file</source>
+        <translation>Carregar ficheiro macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
+        <source>Macro files (*.macro)</source>
+        <translation>Ficheiros Macro (*.macro)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <source>Error loading macro</source>
+        <translation>Erro ao carregar macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6776"/>
         <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="6772"/>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
         <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="6792"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Save macro file</source>
         <translation>Gravar ficheiro macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
         <source>Save macro</source>
         <translation>Gravar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
         <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="6824"/>
-        <source>Error saving macro</source>
-        <translation>Erro ao gravar macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6824"/>
-        <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="6837"/>
-        <source>Start Macro Recording</source>
-        <translation>Iniciar Registo de Macro</translation>
+        <source>Error saving macro</source>
+        <translation>Erro ao gravar macro</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="6837"/>
+        <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="6850"/>
+        <source>Start Macro Recording</source>
+        <translation>Iniciar Registo de Macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6850"/>
         <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="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Macro Recording</source>
         <translation>Gravação de Macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Enter name of the macro:</source>
         <translation>Introduza o nome de macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7033"/>
+        <location filename="../QScintilla/Editor.py" line="7046"/>
         <source>File changed</source>
         <translation>Ficheiro alterado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7213"/>
+        <location filename="../QScintilla/Editor.py" line="7237"/>
         <source>{0} (ro)</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <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="7375"/>
+        <location filename="../QScintilla/Editor.py" line="7399"/>
         <source>Resources</source>
         <translation>Recursos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7401"/>
         <source>Add file...</source>
         <translation>Adicionar Ficheiro...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7379"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add files...</source>
         <translation>Adicionar Ficheiros...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7405"/>
         <source>Add aliased file...</source>
         <translation>Adicionar ficheiro com pseudónimo...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7384"/>
+        <location filename="../QScintilla/Editor.py" line="7408"/>
         <source>Add localized resource...</source>
         <translation>Adicionar recursos localizado...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7388"/>
+        <location filename="../QScintilla/Editor.py" line="7412"/>
         <source>Add resource frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7407"/>
+        <location filename="../QScintilla/Editor.py" line="7431"/>
         <source>Add file resource</source>
         <translation>Adicionar recurso de ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7423"/>
+        <location filename="../QScintilla/Editor.py" line="7447"/>
         <source>Add file resources</source>
         <translation>Adicionar recursos de ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add aliased file resource</source>
         <translation>Adicionar recurso de ficheiro com pseudónimo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <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="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Package Diagram</source>
         <translation>Diagrama do Pacote</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Include class attributes?</source>
         <translation>Incluir atributos de classes?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
         <source>Imports Diagram</source>
         <translation>Diagrama de Imports</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
         <source>Include imports from external modules?</source>
         <translation>Incluir imports de módulos externos?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Application Diagram</source>
         <translation>Diagrama da Aplicação</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Include module names?</source>
         <translation>Incluir nome dos módulos?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7884"/>
+        <location filename="../QScintilla/Editor.py" line="7908"/>
         <source>Add to dictionary</source>
         <translation>Adicionar dicionário</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7886"/>
+        <location filename="../QScintilla/Editor.py" line="7910"/>
         <source>Ignore All</source>
         <translation>Ignorar Tudo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6610"/>
+        <location filename="../QScintilla/Editor.py" line="6623"/>
         <source>Warning: {0}</source>
         <translation>Aviso: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6617"/>
+        <location filename="../QScintilla/Editor.py" line="6630"/>
         <source>Error: {0}</source>
         <translation>Erro: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7029"/>
+        <location filename="../QScintilla/Editor.py" line="7042"/>
         <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
         <translation>&lt;br&gt;&lt;b&gt;Aviso:&lt;/b&gt; Perderá todas as alterações uma vez que o volte a abrir.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5184"/>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="920"/>
+        <location filename="../QScintilla/Editor.py" line="926"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation>Abrir ficheiro de &apos;rejeição&apos;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1030"/>
+        <location filename="../QScintilla/Editor.py" line="1036"/>
         <source>Load Diagram...</source>
         <translation>Carregar Diagrama...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1353"/>
+        <location filename="../QScintilla/Editor.py" line="1359"/>
         <source>Next change</source>
         <translation>Alteração seguinte</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1357"/>
+        <location filename="../QScintilla/Editor.py" line="1363"/>
         <source>Previous change</source>
         <translation>Alteração anterior</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
         <source>Sort Lines</source>
         <translation>Ordenar Linhas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
         <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="6545"/>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
         <source>Warning</source>
         <translation>Aviso</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
         <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="6607"/>
+        <location filename="../QScintilla/Editor.py" line="6620"/>
         <source>Style: {0}</source>
         <translation>Estilo: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
+        <location filename="../QScintilla/Editor.py" line="900"/>
         <source>New Document View</source>
         <translation>Vista de Documento Novo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="897"/>
+        <location filename="../QScintilla/Editor.py" line="903"/>
         <source>New Document View (with new split)</source>
         <translation>Vista de Documento Novo (com divisão nova)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="984"/>
+        <location filename="../QScintilla/Editor.py" line="990"/>
         <source>Tools</source>
         <translation>Ferramentas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1115"/>
+        <location filename="../QScintilla/Editor.py" line="1121"/>
         <source>Re-Open With Encoding</source>
         <translation>Reabrir Com Codificação</translation>
     </message>
@@ -12351,115 +12379,125 @@
         <translation type="obsolete">&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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="876"/>
         <source>Automatic Completion enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="950"/>
+        <location filename="../QScintilla/Editor.py" line="956"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
         <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="5184"/>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
         <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="8391"/>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8391"/>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="914"/>
+        <location filename="../QScintilla/Editor.py" line="920"/>
         <source>Save Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="953"/>
+        <location filename="../QScintilla/Editor.py" line="959"/>
         <source>Clear Completions Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="880"/>
+        <location filename="../QScintilla/Editor.py" line="886"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1361"/>
+        <location filename="../QScintilla/Editor.py" line="1367"/>
         <source>Clear changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="803"/>
+        <location filename="../QScintilla/Editor.py" line="805"/>
         <source>Execute Selection In Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
+        <location filename="../QScintilla/Editor.py" line="1271"/>
         <source>Toggle all folds</source>
         <translation type="unfinished">Alternar as dobras todas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1270"/>
+        <location filename="../QScintilla/Editor.py" line="1276"/>
         <source>Toggle all folds (including children)</source>
         <translation type="unfinished">Alternar as dobras todas (incluindo filhos)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1275"/>
-        <source>Toggle current fold</source>
-        <translation type="unfinished">Alternar a dobra atual</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1281"/>
+        <source>Toggle current fold</source>
+        <translation type="unfinished">Alternar a dobra atual</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1287"/>
         <source>Expand (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
-        <source>Collapse (including children)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1292"/>
+        <source>Collapse (including children)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1298"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1173"/>
+        <location filename="../QScintilla/Editor.py" line="1179"/>
         <source>Spell Check Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7023"/>
+        <location filename="../QScintilla/Editor.py" line="7036"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="849"/>
+        <source>Insert Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorAPIsPage</name>
@@ -13729,205 +13767,220 @@
         <translation>Tabulações &amp;&amp; Indentação</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="45"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="89"/>
         <source>Tab width:</source>
         <translation>Largura da Tabulação:</translation>
     </message>
     <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="99"/>
+        <source>Move to set the tab width.</source>
+        <translation>Mover para definir a largura da tabulação.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="121"/>
+        <source>Displays the selected tab width.</source>
+        <translation>Mostra a largura selecionada da tabulação.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="137"/>
+        <source>Indentation width:</source>
+        <translation>Largura da indentação:</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="147"/>
+        <source>Move to set the indentation width.</source>
+        <translation>Mover para definir a largura da indentação.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="169"/>
+        <source>Displays the selected indentation width.</source>
+        <translation>Mostra a largura selecionada da indentação.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="45"/>
+        <source>Select whether autoindentation shall be enabled</source>
+        <translation>Selecionar quando a auto-indentação deve estar habilitada</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="48"/>
+        <source>Auto indentation</source>
+        <translation>Indentação Automática</translation>
+    </message>
+    <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="55"/>
-        <source>Move to set the tab width.</source>
-        <translation>Mover para definir a largura da tabulação.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="77"/>
-        <source>Displays the selected tab width.</source>
-        <translation>Mostra a largura selecionada da tabulação.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="93"/>
-        <source>Indentation width:</source>
-        <translation>Largura da indentação:</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="103"/>
-        <source>Move to set the indentation width.</source>
-        <translation>Mover para definir a largura da indentação.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="125"/>
-        <source>Displays the selected indentation width.</source>
-        <translation>Mostra a largura selecionada da indentação.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="236"/>
-        <source>Select whether autoindentation shall be enabled</source>
-        <translation>Selecionar quando a auto-indentação deve estar habilitada</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="239"/>
-        <source>Auto indentation</source>
-        <translation>Indentação Automática</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="246"/>
         <source>Select whether tab characters are used for indentations.</source>
         <translation>Selecionar se os caracteres de tabulação se usam para indentar.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="249"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="58"/>
         <source>Use tabs for indentations</source>
         <translation>Usar tabulação para indentações</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="266"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="75"/>
         <source>Select whether tabs shall be converted upon opening the file</source>
         <translation>Selecionar quando todos as tabulações devem ser convertidas ao abrir o ficheiro</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="269"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="78"/>
         <source>Convert tabs upon open</source>
         <translation>Convertir tabulações ao abrir</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="256"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="65"/>
         <source>Select whether pressing the tab key indents.</source>
         <translation>Selecionar se indenta ao pressionar tabulação.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="259"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="68"/>
         <source>Tab key indents</source>
         <translation>Tabulação indenta</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="371"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="373"/>
         <source>Comments</source>
         <translation>Comentários</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="377"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="379"/>
         <source>Select to insert the comment sign at column 0</source>
         <translation>Selecionar para inserir o sinal de comentario na coluna 0</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="380"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="382"/>
         <source>&lt;b&gt;Insert comment at column 0&lt;/b&gt;&lt;p&gt;Select to insert the comment sign at column 0. Otherwise, the comment sign is inserted at the first non-whitespace position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Inserir comentario na coluna 0&lt;/b&gt;&lt;p&gt;Selecionar para inserir o sinal de comentario na coluna 0. Caso contrário, o sinal de comentario é inserido na posição do primeiro caracter que não seja um espaço em branco.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="383"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="385"/>
         <source>Insert comment at column 0</source>
         <translation>Inserir comentário na coluna 0</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="393"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="424"/>
         <source>Virtual Space</source>
         <translation>Espaço Virtual</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="399"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="430"/>
         <source>Virtual space is the space after the last character of a line. It is not allocated unless some text is entered or copied into it. Usage of virtual space can be configured with these selections.</source>
         <translation>Espaço virtual é o espaço depois do último caracter de uma linha. Não está reservado a não ser que se introduza ou copie algum texto nele. A utilização do espaço virtual pode configurar-se com estas seleções.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="409"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="440"/>
         <source>Select to enable a rectangular selection to extend into virtual space</source>
         <translation>Selecionar para habilitar uma seleção retangular para extender o espaço virtual</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="412"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="443"/>
         <source>Selection may access virtual space</source>
         <translation>Seleção pode aceder ao espaço virtual</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="419"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="450"/>
         <source>Select to allow the cursor to be moved into virtual space</source>
         <translation>Selecionar para permitir mover o cursor no espaço virtual</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="422"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="453"/>
         <source>Cursor can move into virtual space</source>
         <translation>Cursor pode mover-se dentro do espaço virtual</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="158"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="206"/>
         <source>Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="163"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="211"/>
         <source>Tab Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="168"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="216"/>
         <source>Indent Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="196"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="244"/>
         <source>Press to add a language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="203"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="251"/>
         <source>Press to delete the selected language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="210"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="258"/>
         <source>Press to edit the selected language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Tab and Indent Override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Shall the selected entries really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="281"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="283"/>
         <source>Select to enable the source code outline view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="284"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="286"/>
         <source>Source Code Outline</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="293"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="295"/>
         <source>Default Width:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="320"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="302"/>
         <source>Enter the default width of the source code outline view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="313"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="321"/>
         <source>Width Step Size:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="339"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="328"/>
         <source>Enter the amount of pixels the width of the outline should be increased or decreased</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="358"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="360"/>
         <source>Select to show the source code encoding</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="361"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="363"/>
         <source>Show source file encoding</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="395"/>
+        <source>Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="401"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="414"/>
+        <source>Select the docstring style to be used</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorHighlightersPage</name>
@@ -54574,17 +54627,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1627"/>
+        <location filename="../Preferences/__init__.py" line="1629"/>
         <source>Export Preferences</source>
         <translation>Exportar Preferências</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Import Preferences</source>
         <translation>Importar Preferências</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation>Ficheiro de Propriedades (*.ini);;Ficheiros Todos (*)</translation>
     </message>
@@ -55170,312 +55223,312 @@
         <translation>A registar Tipo de Projeto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>Read project file</source>
         <translation>Ler ficheiro de projeto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não se pôde ler o ficheiro de projeto &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>Save project file</source>
         <translation>Gravar ficheiro de projeto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não se pôde escrever o ficheiro de projeto &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>Read user project properties</source>
         <translation>Ler propriedades de projeto do usuário</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>Save user project properties</source>
         <translation>Gravar propriedades de projeto do usuário</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>Read project session</source>
         <translation>Ler sessão de projeto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1244"/>
+        <location filename="../Project/Project.py" line="1245"/>
         <source>Please save the project first.</source>
         <translation>Guarde primeiro o projeto por favor.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>Save project session</source>
         <translation>Gravar a sessão do projeto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>Delete project session</source>
         <translation>Apagar a sessão do projeto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>Read tasks</source>
         <translation>Ler tarefas</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>Save tasks</source>
         <translation>Gravar tarefas</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>Read debugger properties</source>
         <translation>Ler propriedades do depurador</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>Save debugger properties</source>
         <translation>Gravar propriedades do depurador</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>Delete debugger properties</source>
         <translation>Apagar propriedades do depurador</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>Add Language</source>
         <translation>Adicionar Idioma</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>You have to specify a translation pattern first.</source>
         <translation>Primeiro tem que especificar um padrão de tradução.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>Delete translation</source>
         <translation>Apagar a Tradução</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1677"/>
+        <location filename="../Project/Project.py" line="1678"/>
         <source>Add file</source>
         <translation>Adicionar ficheiro</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1741"/>
+        <location filename="../Project/Project.py" line="1742"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. &lt;/p&gt;&lt;p&gt;Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1664"/>
+        <location filename="../Project/Project.py" line="1665"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1809"/>
+        <location filename="../Project/Project.py" line="1810"/>
         <source>The target directory must not be empty.</source>
         <translation>O diretório de destino não pode estar vazio.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>Add directory</source>
         <translation>Adicionar diretório</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1708"/>
+        <location filename="../Project/Project.py" line="1709"/>
         <source>&lt;p&gt;The source directory doesn&apos;t contain any files belonging to the selected category.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1723"/>
+        <location filename="../Project/Project.py" line="1724"/>
         <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>The source directory must not be empty.</source>
         <translation>O diretório fonte não pode estar vazio.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1957"/>
+        <location filename="../Project/Project.py" line="1958"/>
         <source>Rename file</source>
         <translation>Renomear ficheiro</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>Rename File</source>
         <translation>Renomear Ficheiro</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>Delete file</source>
         <translation>Apagar ficheiro</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>Delete directory</source>
         <translation>Apagar diretório</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>Create project directory</source>
         <translation>Criar diretório de projeto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
         <translation>&lt;p&gt;O diretorio do projeto &lt;b&gt;{0}&lt;/b&gt; não se pôde criar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>New Project</source>
         <translation>Projeto Novo</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2476"/>
+        <location filename="../Project/Project.py" line="2477"/>
         <source>Add existing files to the project?</source>
         <translation>Adicionar os ficheiros existentes ao projeto?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>Select Version Control System</source>
         <translation>Selecionar o Sistema de Control de Versão</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2603"/>
+        <location filename="../Project/Project.py" line="2604"/>
         <source>Would you like to edit the VCS command options?</source>
         <translation>Quer editar as opções de commandos VCS?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>New project</source>
         <translation>Projeto novo</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2546"/>
+        <location filename="../Project/Project.py" line="2547"/>
         <source>Shall the project file be added to the repository?</source>
         <translation>Deve adicionar-se o ficheiro de projeto ao repositório?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2582"/>
+        <location filename="../Project/Project.py" line="2583"/>
         <source>None</source>
         <translation>Nenhum</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2575"/>
+        <location filename="../Project/Project.py" line="2576"/>
         <source>Select version control system for the project</source>
         <translation>Selecionar o sistema de control de versão para o projeto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Translation Pattern</source>
         <translation>Padrão de Tradução</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Enter the path pattern for translation files (use &apos;%language%&apos; in place of the language code):</source>
         <translation>Introduzir o padrão para os ficheiros de tradução (usar &apos;%language%&apos; em lugar do código de idioma):</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>Open project</source>
         <translation>Abrir projeto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3120"/>
+        <location filename="../Project/Project.py" line="3121"/>
         <source>Project Files (*.e4p)</source>
         <translation>Ficheiros de Projeto (*.e4p)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save project as</source>
         <translation>Gravar projeto como</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>Save File</source>
         <translation>Gravar Ficheiro</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>Close Project</source>
         <translation>Fechar Projeto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>The current project has unsaved changes.</source>
         <translation>O projeto atual tem alterações por gravar.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>Syntax errors detected</source>
         <translation>Detetados erros de sintaxe</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>The project contains %n file(s) with syntax errors.</source>
         <translation>
             <numerusform>O projeto tem um ficheiro com erros de síntaxe.</numerusform>
@@ -55483,607 +55536,607 @@
         </translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>&amp;New...</source>
         <translation>&amp;Novo...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3850"/>
-        <source>Generate a new project</source>
-        <translation>Criar um projeto novo</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3851"/>
+        <source>Generate a new project</source>
+        <translation>Criar um projeto novo</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3852"/>
         <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Novo...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para introduzir a informação para um projeto novo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>&amp;Open...</source>
         <translation>&amp;Abrir...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3864"/>
-        <source>Open an existing project</source>
-        <translation>Abrir um projeto existente</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3865"/>
+        <source>Open an existing project</source>
+        <translation>Abrir um projeto existente</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3866"/>
         <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abrir...&lt;/b&gt;&lt;p&gt;Isto abre um projeto existente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>Close project</source>
         <translation>Fechar projeto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>&amp;Close</source>
         <translation>&amp;Fechar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3876"/>
-        <source>Close the current project</source>
-        <translation>Fechar o projeto atual</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3877"/>
+        <source>Close the current project</source>
+        <translation>Fechar o projeto atual</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3878"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fechar&lt;/b&gt;&lt;p&gt;Fecha o projeto atual&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3884"/>
+        <location filename="../Project/Project.py" line="3885"/>
         <source>Save project</source>
         <translation>Gravar projeto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>&amp;Save</source>
         <translation>&amp;Gravar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3888"/>
-        <source>Save the current project</source>
-        <translation>Gravar o projeto actual</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3889"/>
+        <source>Save the current project</source>
+        <translation>Gravar o projeto actual</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3890"/>
         <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gravar&lt;/b&gt;&lt;p&gt;Guarda o projeto atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save &amp;as...</source>
         <translation>Gravar &amp;como...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3900"/>
+        <location filename="../Project/Project.py" line="3901"/>
         <source>Save the current project to a new file</source>
         <translation>Gravar o projeto atual para um ficheiro novo</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3902"/>
+        <location filename="../Project/Project.py" line="3903"/>
         <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gravar como&lt;/b&gt;&lt;p&gt;Guarda o projeto atual para um ficheiro novo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add files to project</source>
         <translation>Adicionar ficheiros ao projeto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add &amp;files...</source>
         <translation>Adicionar &amp;ficheiros...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3916"/>
+        <location filename="../Project/Project.py" line="3917"/>
         <source>Add files to the current project</source>
         <translation>Adicionar ficheiros ao projeto atual</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3918"/>
+        <location filename="../Project/Project.py" line="3919"/>
         <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Adicionar ficheiros...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para adicionar ficheiros ao projeto atual. O lugar para adicionar determina-se pela extensão de ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory to project</source>
         <translation>Adicionar diretório ao projeto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory...</source>
         <translation>Adicionar diretório...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3932"/>
+        <location filename="../Project/Project.py" line="3933"/>
         <source>Add a directory to the current project</source>
         <translation>Adicionar um diretório ao projeto atual</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3934"/>
+        <location filename="../Project/Project.py" line="3935"/>
         <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Adicionar diretório&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para adicionar um diretório ao projeto atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add translation to project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add &amp;translation...</source>
         <translation>Adicionar &amp;tradução...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3947"/>
+        <location filename="../Project/Project.py" line="3948"/>
         <source>Add a translation to the current project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3949"/>
+        <location filename="../Project/Project.py" line="3950"/>
         <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Search new files</source>
         <translation>Procurar ficheiros novos</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Searc&amp;h new files...</source>
         <translation>&amp;Procurar ficheiros novos...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3961"/>
+        <location filename="../Project/Project.py" line="3962"/>
         <source>Search new files in the project directory.</source>
         <translation>Procurar ficheiros novos no diretório do projeto.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>Project properties</source>
         <translation>Propriedades do projeto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>&amp;Properties...</source>
         <translation>&amp;Propriedades...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3992"/>
-        <source>Show the project properties</source>
-        <translation>Mostrar as propriedades do projeto</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3993"/>
+        <source>Show the project properties</source>
+        <translation>Mostrar as propriedades do projeto</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3994"/>
         <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>User project properties</source>
         <translation>Propriedades de projecto do usuário</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>&amp;User Properties...</source>
         <translation>Propriedades de &amp;Usuário...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4005"/>
+        <location filename="../Project/Project.py" line="4006"/>
         <source>Show the user specific project properties</source>
         <translation>Mostrar as propriedades do projeto específicas do usuário</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4007"/>
+        <location filename="../Project/Project.py" line="4008"/>
         <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations</source>
         <translation>Associações de Tipos de Ficheiros</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations...</source>
         <translation>Associações de Tipos de Ficheiros...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4019"/>
+        <location filename="../Project/Project.py" line="4020"/>
         <source>Show the project filetype associations</source>
         <translation>Mostrar as associações de tipos de ficheiros do projeto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4037"/>
+        <location filename="../Project/Project.py" line="4038"/>
         <source>Show the project lexer associations (overriding defaults)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4039"/>
+        <location filename="../Project/Project.py" line="4040"/>
         <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger Properties</source>
         <translation>Propriedades do Depurador</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger &amp;Properties...</source>
         <translation>&amp;Propriedades do Depurador...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4055"/>
-        <source>Show the debugger properties</source>
-        <translation>Mostrar as propriedades do depurador</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4056"/>
+        <source>Show the debugger properties</source>
+        <translation>Mostrar as propriedades do depurador</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4057"/>
         <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>Load</source>
         <translation>Carregar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>&amp;Load</source>
         <translation>&amp;Carregar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4068"/>
-        <source>Load the debugger properties</source>
-        <translation>Carregar propriedades do depurador</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4069"/>
+        <source>Load the debugger properties</source>
+        <translation>Carregar propriedades do depurador</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4070"/>
         <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>Save</source>
         <translation>Gravar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4080"/>
-        <source>Save the debugger properties</source>
-        <translation>Gravar propriedades do depurador</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4081"/>
+        <source>Save the debugger properties</source>
+        <translation>Gravar propriedades do depurador</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4082"/>
         <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>Delete</source>
         <translation>Apagar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>&amp;Delete</source>
         <translation>&amp;Apagar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4092"/>
-        <source>Delete the debugger properties</source>
-        <translation>Apagar as propriedades do depurador</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4093"/>
+        <source>Delete the debugger properties</source>
+        <translation>Apagar as propriedades do depurador</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4094"/>
         <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>Reset</source>
         <translation>Reinicializar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>&amp;Reset</source>
         <translation>&amp;Reinicializar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4105"/>
-        <source>Reset the debugger properties</source>
-        <translation>Reinicializar as propriedades do depurador</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4106"/>
+        <source>Reset the debugger properties</source>
+        <translation>Reinicializar as propriedades do depurador</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4107"/>
         <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4115"/>
+        <location filename="../Project/Project.py" line="4116"/>
         <source>Load session</source>
         <translation>Carregar sessão</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4119"/>
-        <source>Load the projects session file.</source>
-        <translation>Carregar o ficheiro de sessão do projeto.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4120"/>
+        <source>Load the projects session file.</source>
+        <translation>Carregar o ficheiro de sessão do projeto.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4121"/>
         <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4133"/>
+        <location filename="../Project/Project.py" line="4134"/>
         <source>Save session</source>
         <translation>Guargar sessão</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4137"/>
-        <source>Save the projects session file.</source>
-        <translation>Gravar ficheiro de sessão do projeto.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4138"/>
+        <source>Save the projects session file.</source>
+        <translation>Gravar ficheiro de sessão do projeto.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4139"/>
         <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4151"/>
+        <location filename="../Project/Project.py" line="4152"/>
         <source>Delete session</source>
         <translation>Apagar sessão</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4155"/>
-        <source>Delete the projects session file.</source>
-        <translation>Apagar o ficheiro de sessão do projeto.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4156"/>
+        <source>Delete the projects session file.</source>
+        <translation>Apagar o ficheiro de sessão do projeto.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4157"/>
         <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>Code Metrics</source>
         <translation type="unfinished">Métricas de Código</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>&amp;Code Metrics...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4169"/>
+        <location filename="../Project/Project.py" line="4170"/>
         <source>Show some code metrics for the project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4171"/>
+        <location filename="../Project/Project.py" line="4172"/>
         <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Python Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Code Co&amp;verage...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4183"/>
+        <location filename="../Project/Project.py" line="4184"/>
         <source>Show code coverage information for the project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4185"/>
+        <location filename="../Project/Project.py" line="4186"/>
         <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Profile Data</source>
         <translation type="unfinished">Dados de Perfil</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4193"/>
+        <location filename="../Project/Project.py" line="4194"/>
         <source>&amp;Profile Data...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4197"/>
+        <location filename="../Project/Project.py" line="4198"/>
         <source>Show profiling data for the project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4199"/>
+        <location filename="../Project/Project.py" line="4200"/>
         <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Application Diagram</source>
         <translation>Diagrama da Aplicação</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4208"/>
+        <location filename="../Project/Project.py" line="4209"/>
         <source>&amp;Application Diagram...</source>
         <translation>Diagrama da &amp;Aplicação...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4212"/>
+        <location filename="../Project/Project.py" line="4213"/>
         <source>Show a diagram of the project.</source>
         <translation>Mostrar o diagrama do projeto.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4214"/>
+        <location filename="../Project/Project.py" line="4215"/>
         <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Diagrama da Aplicação...&lt;/b&gt;&lt;p&gt;Mostra um diagrama do projeto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>Create Package List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4237"/>
+        <location filename="../Project/Project.py" line="4238"/>
         <source>Create &amp;Package List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>Create Plugin Archive</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4339"/>
-        <source>&amp;Project</source>
-        <translation>&amp;Projeto</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4340"/>
+        <source>&amp;Project</source>
+        <translation>&amp;Projeto</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4341"/>
         <source>Open &amp;Recent Projects</source>
         <translation>Abrir Projetos &amp;Recentes</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4345"/>
+        <location filename="../Project/Project.py" line="4346"/>
         <source>&amp;Version Control</source>
         <translation>Contro&amp;l de Versão</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4349"/>
+        <location filename="../Project/Project.py" line="4350"/>
         <source>Chec&amp;k</source>
         <translation>&amp;Verificar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4351"/>
-        <source>Sho&amp;w</source>
-        <translation>&amp;Mostrar</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4352"/>
-        <source>&amp;Diagrams</source>
-        <translation>&amp;Diagramas</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4341"/>
-        <source>Session</source>
-        <translation>Sessão</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4354"/>
-        <source>Source &amp;Documentation</source>
-        <translation>&amp;Documentação Fonte</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4342"/>
-        <source>Debugger</source>
-        <translation>Depurador</translation>
+        <source>Sho&amp;w</source>
+        <translation>&amp;Mostrar</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="4353"/>
+        <source>&amp;Diagrams</source>
+        <translation>&amp;Diagramas</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4342"/>
+        <source>Session</source>
+        <translation>Sessão</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4355"/>
+        <source>Source &amp;Documentation</source>
+        <translation>&amp;Documentação Fonte</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4343"/>
+        <source>Debugger</source>
+        <translation>Depurador</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4354"/>
         <source>Pac&amp;kagers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4479"/>
+        <location filename="../Project/Project.py" line="4480"/>
         <source>Project</source>
         <translation>Projeto</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4545"/>
+        <location filename="../Project/Project.py" line="4546"/>
         <source>&amp;Clear</source>
         <translation>&amp;Limpar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>Search New Files</source>
         <translation>Procurar Ficheiros Novos</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>There were no new files found to be added.</source>
         <translation>Não se encontraram ficheiros novos para adicionar.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>Version Control System</source>
         <translation>Sistema de Control de Versão</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4996"/>
+        <location filename="../Project/Project.py" line="4997"/>
         <source>Coverage Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5046"/>
+        <location filename="../Project/Project.py" line="5047"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>O projeto atual não tem um script principal definido. A cancelar</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Please select a coverage file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Please select a profile file</source>
         <translation>Escolha um ficheiro de perfil por favor</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Include module names?</source>
         <translation>Incluir nomes de módulos?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5267"/>
+        <location filename="../Project/Project.py" line="5268"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5337"/>
+        <location filename="../Project/Project.py" line="5338"/>
         <source>The project does not have a main script defined. Aborting...</source>
         <translation>O projeto atual não tem um script principal definido. A cancelar...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5477"/>
+        <location filename="../Project/Project.py" line="5478"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5548"/>
+        <location filename="../Project/Project.py" line="5549"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -56093,32 +56146,32 @@
         <translation type="obsolete">Ficheiros Python2 (*.py2);;Ficheiros GUI Python2 (*.pyw2);;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>Create main script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>&lt;p&gt;The mainscript &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>Load Diagram</source>
         <translation>Carregar Diagrama</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>&amp;Load Diagram...</source>
         <translation>&amp;Carregar Diagrama...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4226"/>
+        <location filename="../Project/Project.py" line="4227"/>
         <source>Load a diagram from file.</source>
         <translation>Carregar um diagrama desde um ficheiro.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4228"/>
+        <location filename="../Project/Project.py" line="4229"/>
         <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Carregar Diagrama...&lt;/b&gt;&lt;p&gt;Carga um diagrama desde um ficheiro.&lt;/p&gt;</translation>
     </message>
@@ -56148,12 +56201,12 @@
         <translation>Consola de PyQt5</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4854"/>
+        <location filename="../Project/Project.py" line="4855"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -56178,198 +56231,198 @@
         <translation type="obsolete">Criar um ficheiro PKGLIST inicial para complemento eric6.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>Create project management directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Alt+Ctrl+P</source>
         <comment>Project|Search Project File</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3978"/>
+        <location filename="../Project/Project.py" line="3979"/>
         <source>Search for a file in the project list of files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3980"/>
+        <location filename="../Project/Project.py" line="3981"/>
         <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5373"/>
+        <location filename="../Project/Project.py" line="5374"/>
         <source>Create Plugin Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4253"/>
+        <location filename="../Project/Project.py" line="4254"/>
         <source>Create Plugin &amp;Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (Snapshot)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (&amp;Snapshot)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5351"/>
+        <location filename="../Project/Project.py" line="5352"/>
         <source>Select package lists:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Creating plugin archives...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Abort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>%v/%m Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5385"/>
+        <location filename="../Project/Project.py" line="5386"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; não se pôde ler. &lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5362"/>
+        <location filename="../Project/Project.py" line="5363"/>
         <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5413"/>
+        <location filename="../Project/Project.py" line="5414"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the&apos;; initial_list&apos; line of the header.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3963"/>
+        <location filename="../Project/Project.py" line="3964"/>
         <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4021"/>
+        <location filename="../Project/Project.py" line="4022"/>
         <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>Create Makefile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>Execute Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4291"/>
+        <location filename="../Project/Project.py" line="4292"/>
         <source>&amp;Execute Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4295"/>
+        <location filename="../Project/Project.py" line="4296"/>
         <source>Perform a &apos;make&apos; run.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4297"/>
+        <location filename="../Project/Project.py" line="4298"/>
         <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a &apos;make&apos; run to rebuild the configured target.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5755"/>
+        <location filename="../Project/Project.py" line="5756"/>
         <source>Test for Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4305"/>
+        <location filename="../Project/Project.py" line="4306"/>
         <source>&amp;Test for Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4309"/>
+        <location filename="../Project/Project.py" line="4310"/>
         <source>Question &apos;make&apos;, if a rebuild is needed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4311"/>
+        <location filename="../Project/Project.py" line="4312"/>
         <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions &apos;make&apos;, if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4356"/>
+        <location filename="../Project/Project.py" line="4357"/>
         <source>Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5703"/>
+        <location filename="../Project/Project.py" line="5704"/>
         <source>The make process did not start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5748"/>
+        <location filename="../Project/Project.py" line="5749"/>
         <source>The make process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5758"/>
+        <location filename="../Project/Project.py" line="5759"/>
         <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5763"/>
+        <location filename="../Project/Project.py" line="5764"/>
         <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>The makefile contains errors.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -56384,7 +56437,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4344"/>
+        <location filename="../Project/Project.py" line="4345"/>
         <source>Project-T&amp;ools</source>
         <translation type="unfinished"></translation>
     </message>
@@ -56414,47 +56467,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4242"/>
+        <location filename="../Project/Project.py" line="4243"/>
         <source>Create an initial PKGLIST file for an eric plugin.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4244"/>
+        <location filename="../Project/Project.py" line="4245"/>
         <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4258"/>
+        <location filename="../Project/Project.py" line="4259"/>
         <source>Create eric plugin archive files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4260"/>
+        <location filename="../Project/Project.py" line="4261"/>
         <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4275"/>
+        <location filename="../Project/Project.py" line="4276"/>
         <source>Create eric plugin archive files (snapshot releases).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4277"/>
+        <location filename="../Project/Project.py" line="4278"/>
         <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5441"/>
+        <location filename="../Project/Project.py" line="5442"/>
         <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5496"/>
+        <location filename="../Project/Project.py" line="5497"/>
         <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5504"/>
+        <location filename="../Project/Project.py" line="5505"/>
         <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -58407,68 +58460,68 @@
         <translation></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <location filename="../Project/PropertiesDialog.ui" line="298"/>
         <source>&amp;Author:</source>
         <translation>&amp;Autor:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="294"/>
+        <location filename="../Project/PropertiesDialog.ui" line="308"/>
         <source>Enter authors name</source>
         <translation>Introduzir o nome dos autores</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="297"/>
+        <location filename="../Project/PropertiesDialog.ui" line="311"/>
         <source>&lt;b&gt;Author&lt;/b&gt;
 &lt;p&gt;Enter the name of the author.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Autor&lt;/b&gt;
 &lt;p&gt;Introduzir o nome do autor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="305"/>
+        <location filename="../Project/PropertiesDialog.ui" line="319"/>
         <source>&amp;Email:</source>
         <translation>Correio &amp;Eletrónico:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="315"/>
+        <location filename="../Project/PropertiesDialog.ui" line="329"/>
         <source>Enter authors email</source>
         <translation>Introduzir o correio eletrónico dos autores</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="318"/>
+        <location filename="../Project/PropertiesDialog.ui" line="332"/>
         <source>&lt;b&gt;Email&lt;/b&gt;
 &lt;p&gt;Enter the email address of the author&lt;/p&gt;</source>
         <translation>&lt;b&gt;Correio Eletrónico&lt;/b&gt;
 &lt;p&gt;Introduzir o endereço do correio eletrónico do autor&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="326"/>
+        <location filename="../Project/PropertiesDialog.ui" line="340"/>
         <source>&amp;Description:</source>
         <translation>&amp;Descrição:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="339"/>
+        <location filename="../Project/PropertiesDialog.ui" line="353"/>
         <source>Enter description</source>
         <translation>Introduzir a descrição</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="342"/>
+        <location filename="../Project/PropertiesDialog.ui" line="356"/>
         <source>&lt;b&gt;Description&lt;/b&gt;
 &lt;p&gt;Enter a short description for the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Descrição&lt;/b&gt;
 &lt;p&gt;Introduzir uma breve descrição para o projeto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="383"/>
+        <location filename="../Project/PropertiesDialog.ui" line="397"/>
         <source>Press to show information about the repository</source>
         <translation>Pressionar para mostrar a informação acerca do repositório</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="386"/>
+        <location filename="../Project/PropertiesDialog.ui" line="400"/>
         <source>Show &amp;Repository Info</source>
         <translation>Ver Informação do &amp;Repositório</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="389"/>
+        <location filename="../Project/PropertiesDialog.ui" line="403"/>
         <source>Alt+R</source>
         <translation></translation>
     </message>
@@ -58485,27 +58538,27 @@
 &lt;p&gt;Introduzir uma breve descrição para o multiprojeto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="113"/>
+        <location filename="../Project/PropertiesDialog.py" line="121"/>
         <source>The project is version controlled by &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation>O projeto tem a versão controlada por &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="119"/>
+        <location filename="../Project/PropertiesDialog.py" line="127"/>
         <source>The project is not version controlled.</source>
         <translation>O projeto não tem a versão controlada.</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="58"/>
+        <location filename="../Project/PropertiesDialog.py" line="66"/>
         <source>Source Files ({0});;All Files (*)</source>
         <translation>Ficheiros Fonte ({0});;Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="358"/>
+        <location filename="../Project/PropertiesDialog.ui" line="372"/>
         <source>Select to create a version controlled project</source>
         <translation>Selecionar para criar um projeto de versão controlada</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="361"/>
+        <location filename="../Project/PropertiesDialog.ui" line="375"/>
         <source>Version Controlled Project</source>
         <translation>Projeto com Versão Controlada</translation>
     </message>
@@ -58524,6 +58577,21 @@
         <source>Press to open a dialog to enter the &apos;make&apos; parameters</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="291"/>
+        <source>Select the docstring style for the project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.py" line="50"/>
+        <source>None</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ProtobufPage</name>
--- a/eric6/i18n/eric6_ru.ts	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/i18n/eric6_ru.ts	Fri Jan 22 16:48:43 2021 +0100
@@ -8649,7 +8649,7 @@
         <translation>строка документации с неправильным отступом</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="86"/>
         <source>docstring summary does not end with a period</source>
         <translation>резюме строки документации не заканчивается точкой</translation>
     </message>
@@ -8684,7 +8684,7 @@
         <translation>строка документации для class не завершается пустой строкой</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
         <source>docstring summary is not followed by a blank line</source>
         <translation>резюме строки документации не завершается пустой строкой</translation>
     </message>
@@ -8694,92 +8694,92 @@
         <translation>отсутствует пустая строка после последнего абзаца строки документации</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
         <source>private function/method is missing a docstring</source>
         <translation>для private function/method отсутствует строка документации</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="76"/>
         <source>private class is missing a docstring</source>
         <translation>для private class отсутствует строка документации</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="77"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation>открывающие кавычки строки документации размещены не в отдельной строке</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="80"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation>открывающие кавычки строки документации размещены не в отдельной строке</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
         <source>trailing quotes of docstring not on separate line</source>
         <translation>закрывающие кавычки строки документации размещены не в отдельной строке</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="87"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="90"/>
         <source>docstring does not contain a @return line but function/method returns something</source>
         <translation>строка документации не содержит строчки @return, но function/method что-то возвращает</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="91"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="94"/>
         <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
         <translation>строка документации содержит строчку @return, но function/method ничего не возвращает</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="103"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation>в строке документации недостаточно строк с @param/@keyparam</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="106"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
-        <translation>в строке документации слишком много строк с @param/@keyparam</translation>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
+        <translation>в строке документации недостаточно строк с @param/@keyparam</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="109"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
-        <translation>только аргументы ключевого слова должны быть описаны с помощью строк @keyparam</translation>
+        <source>docstring contains too many @param/@keyparam lines</source>
+        <translation>в строке документации слишком много строк с @param/@keyparam</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="112"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
-        <translation>порядок следования строк @param/@keyparam не соответствует сигнатуре функции/метода</translation>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <translation>только аргументы ключевого слова должны быть описаны с помощью строк @keyparam</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="115"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation>порядок следования строк @param/@keyparam не соответствует сигнатуре функции/метода</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="118"/>
         <source>class docstring is preceded by a blank line</source>
         <translation>строке документации class предшествует пустая строка</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="117"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="120"/>
         <source>class docstring is followed by a blank line</source>
         <translation>за строкой документации для class следует пустая строка</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="119"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation>строке документации для function/method предшествует пустая строка</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="122"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation>строке документации для function/method предшествует пустая строка</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
         <source>function/method docstring is followed by a blank line</source>
         <translation>за строкой документации для function/method следует пустая строка</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation>за последним абзацем строки документации следует пустая строка</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="131"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation>за последним абзацем строки документации следует пустая строка</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="134"/>
         <source>docstring does not contain a @exception line but function/method raises an exception</source>
         <translation>строка документации не содержит @exception, но function/method вызывает исключение</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="135"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="138"/>
         <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
         <translation>строка документации содержит @exception, но function/method не вызывает исключение</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="158"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="161"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
@@ -8789,42 +8789,42 @@
         <translation>строка документации не содержит резюме</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="88"/>
         <source>docstring summary does not start with &apos;{0}&apos;</source>
         <translation>резюме строки документации не начинается с &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="139"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation>вызванное исключение &apos;{0}&apos; не документировано в строке документации</translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="142"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
-        <translation>документированное исключение &apos;{0}&apos; не вызвано</translation>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
+        <translation>вызванное исключение &apos;{0}&apos; не документировано в строке документации</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="145"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
-        <translation>строка документации не содержит строку @signal но сигналы определяет класс</translation>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <translation>документированное исключение &apos;{0}&apos; не вызвано</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="148"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
-        <translation>строка документации содержит строку @signal но класс не определяет сигналы</translation>
+        <source>docstring does not contain a @signal line but class defines signals</source>
+        <translation>строка документации не содержит строку @signal но сигналы определяет класс</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="151"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
-        <translation>определенный сигнал &apos;{0}&apos; не документирован в строке документации</translation>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <translation>строка документации содержит строку @signal но класс не определяет сигналы</translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="154"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation>определенный сигнал &apos;{0}&apos; не документирован в строке документации</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="157"/>
         <source>documented signal &apos;{0}&apos; is not defined</source>
         <translation>документированный сигнал &apos;{0}&apos; не определен</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="75"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="78"/>
         <source>class docstring is still a default string</source>
         <translation>строка документации для class все же является строкой по умолчанию</translation>
     </message>
@@ -8839,15 +8839,43 @@
         <translation>строка документации для module все же является строкой по умолчанию</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="95"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="98"/>
         <source>docstring does not contain a @yield line but function/method yields something</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="99"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="102"/>
         <source>docstring contains a @yield line but function/method doesn&apos;t yield anything</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <source>function docstring still contains some placeholders</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>DocstringGenerator</name>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="42"/>
+        <source>Eric</source>
+        <translation type="unfinished">Eric</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="44"/>
+        <source>NumPy</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="46"/>
+        <source>Google</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="48"/>
+        <source>Sphinx</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DotDesktopListSelectionDialog</name>
@@ -11081,812 +11109,812 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3110"/>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
         <source>Open File</source>
         <translation>Открыть файл</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="379"/>
+        <location filename="../QScintilla/Editor.py" line="381"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; занимает &lt;b&gt;{1} KB&lt;/b&gt;. Вы действительно хотите его загрузить?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="468"/>
+        <location filename="../QScintilla/Editor.py" line="470"/>
         <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Окно редактора&lt;/b&gt;&lt;p&gt;Это окно используется для просмотра и редактирования исходных текстов приложений. Вы можете открыть несколько окон одновременно. Имя редактируемого файла отображается в заголовке окна.&lt;/p&gt;&lt;p&gt;Чтобы установить точку останова - кликните в пространство между номером строки и панелью свёртки на нужной строке. Появившийся маркер точки останова можно настроить через контекстное меню.&lt;/p&gt;&lt;p&gt;Чтобы установить закладку кликните в пространство между номером строки и панелью свёртки на нужной строке при нажатой клавише Shift.&lt;/p&gt;&lt;p&gt;Эти действия можно отменить через контекстное меню.&lt;/p&gt;&lt;p&gt;Если при нажатой клавише Ctrl кликнуть на маркер синтаксической ошибки, то будет показана дополнительная информация об ошибке.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="783"/>
+        <location filename="../QScintilla/Editor.py" line="785"/>
         <source>Undo</source>
         <translation>Отмена</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="786"/>
+        <location filename="../QScintilla/Editor.py" line="788"/>
         <source>Redo</source>
         <translation>Повтор</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="789"/>
+        <location filename="../QScintilla/Editor.py" line="791"/>
         <source>Revert to last saved state</source>
         <translation>Вернуть к последнему записанному состоянию</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="793"/>
+        <location filename="../QScintilla/Editor.py" line="795"/>
         <source>Cut</source>
         <translation>Вырезать</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="796"/>
+        <location filename="../QScintilla/Editor.py" line="798"/>
         <source>Copy</source>
         <translation>Копировать</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="799"/>
+        <location filename="../QScintilla/Editor.py" line="801"/>
         <source>Paste</source>
         <translation>Вставить</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="807"/>
+        <location filename="../QScintilla/Editor.py" line="809"/>
         <source>Indent</source>
         <translation>Увеличить отступ</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="810"/>
+        <location filename="../QScintilla/Editor.py" line="812"/>
         <source>Unindent</source>
         <translation>Уменьшить отступ</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="813"/>
+        <location filename="../QScintilla/Editor.py" line="815"/>
         <source>Comment</source>
         <translation>Закомментировать</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="816"/>
+        <location filename="../QScintilla/Editor.py" line="818"/>
         <source>Uncomment</source>
         <translation>Раскомментировать</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Stream Comment</source>
         <translation>Поточный комментарий</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Box Comment</source>
         <translation>Прямоугольный комментарий</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="826"/>
-        <source>Select to brace</source>
-        <translation>Выбрать до скобки</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="828"/>
+        <source>Select to brace</source>
+        <translation>Выбрать до скобки</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Select all</source>
         <translation>Выбрать всё</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="829"/>
+        <location filename="../QScintilla/Editor.py" line="831"/>
         <source>Deselect all</source>
         <translation>Снять выделение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7881"/>
+        <location filename="../QScintilla/Editor.py" line="7905"/>
         <source>Check spelling...</source>
         <translation>Проверка орфографии...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="837"/>
+        <location filename="../QScintilla/Editor.py" line="839"/>
         <source>Check spelling of selection...</source>
         <translation>Проверка орфографии выделенного участка...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="841"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Remove from dictionary</source>
         <translation>Удалить из словаря</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="847"/>
+        <location filename="../QScintilla/Editor.py" line="853"/>
         <source>Shorten empty lines</source>
         <translation>Укоротить пустые строки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="854"/>
+        <location filename="../QScintilla/Editor.py" line="860"/>
         <source>Use Monospaced Font</source>
         <translation>Использовать моноширинный шрифт</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="859"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Autosave enabled</source>
         <translation>Автосохранение разрешено</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="869"/>
         <source>Typing aids enabled</source>
         <translation>Разрешить помощь при наборе</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="902"/>
-        <source>Close</source>
-        <translation>Закрыть</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="908"/>
+        <source>Close</source>
+        <translation>Закрыть</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="914"/>
         <source>Save</source>
         <translation>Сохранить</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="911"/>
+        <location filename="../QScintilla/Editor.py" line="917"/>
         <source>Save As...</source>
         <translation>Сохранить как...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
+        <location filename="../QScintilla/Editor.py" line="930"/>
         <source>Print Preview</source>
         <translation>Предварительный просмотр печати</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="933"/>
         <source>Print</source>
         <translation>Печать</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="956"/>
+        <location filename="../QScintilla/Editor.py" line="962"/>
         <source>Complete from Document</source>
         <translation>Дополнение из документа</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="958"/>
+        <location filename="../QScintilla/Editor.py" line="964"/>
         <source>Complete from APIs</source>
         <translation>Дополнение из API</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="960"/>
+        <location filename="../QScintilla/Editor.py" line="966"/>
         <source>Complete from Document and APIs</source>
         <translation>Дополнение из документа и API</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="878"/>
+        <location filename="../QScintilla/Editor.py" line="884"/>
         <source>Calltip</source>
         <translation>Подсказка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="974"/>
+        <location filename="../QScintilla/Editor.py" line="980"/>
         <source>Check</source>
         <translation>Проверки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="994"/>
+        <location filename="../QScintilla/Editor.py" line="1000"/>
         <source>Show</source>
         <translation>Показать</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="996"/>
-        <source>Code metrics...</source>
-        <translation>Метрики кода...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="997"/>
-        <source>Code coverage...</source>
-        <translation>Покрытие кода...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="999"/>
-        <source>Show code coverage annotations</source>
-        <translation>Показать аннотации по покрытию кода</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1002"/>
-        <source>Hide code coverage annotations</source>
-        <translation>Не показывать аннотации по покрытию кода</translation>
+        <source>Code metrics...</source>
+        <translation>Метрики кода...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1003"/>
+        <source>Code coverage...</source>
+        <translation>Покрытие кода...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1005"/>
+        <source>Show code coverage annotations</source>
+        <translation>Показать аннотации по покрытию кода</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1008"/>
+        <source>Hide code coverage annotations</source>
+        <translation>Не показывать аннотации по покрытию кода</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1011"/>
         <source>Profile data...</source>
         <translation>Данные профайлера...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
-        <source>Diagrams</source>
-        <translation>Диаграммы</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1020"/>
-        <source>Class Diagram...</source>
-        <translation>Диаграмма классов...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1022"/>
-        <source>Package Diagram...</source>
-        <translation>Диаграмма пакетов...</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1024"/>
-        <source>Imports Diagram...</source>
-        <translation>Диаграмма импортирования...</translation>
+        <source>Diagrams</source>
+        <translation>Диаграммы</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1026"/>
+        <source>Class Diagram...</source>
+        <translation>Диаграмма классов...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1028"/>
+        <source>Package Diagram...</source>
+        <translation>Диаграмма пакетов...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1030"/>
+        <source>Imports Diagram...</source>
+        <translation>Диаграмма импортирования...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1032"/>
         <source>Application Diagram...</source>
         <translation>Диаграмма приложения...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1044"/>
+        <location filename="../QScintilla/Editor.py" line="1050"/>
         <source>Languages</source>
         <translation>Языки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1177"/>
+        <location filename="../QScintilla/Editor.py" line="1183"/>
         <source>No Language</source>
         <translation>Нет языка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1073"/>
+        <location filename="../QScintilla/Editor.py" line="1079"/>
         <source>Guessed</source>
         <translation>Предполагаемый язык</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1413"/>
+        <location filename="../QScintilla/Editor.py" line="1419"/>
         <source>Alternatives</source>
         <translation>Альтернативная подсветка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1093"/>
+        <location filename="../QScintilla/Editor.py" line="1099"/>
         <source>Encodings</source>
         <translation>Кодировки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1134"/>
+        <location filename="../QScintilla/Editor.py" line="1140"/>
         <source>End-of-Line Type</source>
         <translation>Тип конца строки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1138"/>
+        <location filename="../QScintilla/Editor.py" line="1144"/>
         <source>Unix</source>
         <translation>Unix</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1145"/>
+        <location filename="../QScintilla/Editor.py" line="1151"/>
         <source>Windows</source>
         <translation>Windows</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1152"/>
+        <location filename="../QScintilla/Editor.py" line="1158"/>
         <source>Macintosh</source>
         <translation>Macintosh</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1202"/>
+        <location filename="../QScintilla/Editor.py" line="1208"/>
         <source>Export as</source>
         <translation>Экспортировать как</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1224"/>
-        <source>Toggle bookmark</source>
-        <translation>Создать/Удалить закладку</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1226"/>
-        <source>Next bookmark</source>
-        <translation>Следующая закладка</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1228"/>
-        <source>Previous bookmark</source>
-        <translation>Предыдущая закладка</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1230"/>
+        <source>Toggle bookmark</source>
+        <translation>Создать/Удалить закладку</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1232"/>
+        <source>Next bookmark</source>
+        <translation>Следующая закладка</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1234"/>
+        <source>Previous bookmark</source>
+        <translation>Предыдущая закладка</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1236"/>
         <source>Clear all bookmarks</source>
         <translation>Очистить все закладки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1239"/>
+        <location filename="../QScintilla/Editor.py" line="1245"/>
         <source>Toggle breakpoint</source>
         <translation>Поставить/убрать точку останова</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1241"/>
+        <location filename="../QScintilla/Editor.py" line="1247"/>
         <source>Toggle temporary breakpoint</source>
         <translation>Поставить/убрать временную точку останова</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1244"/>
+        <location filename="../QScintilla/Editor.py" line="1250"/>
         <source>Edit breakpoint...</source>
         <translation>Редактировать точку останова...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5613"/>
+        <location filename="../QScintilla/Editor.py" line="5626"/>
         <source>Enable breakpoint</source>
         <translation>Разрешить точку останова</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1249"/>
+        <location filename="../QScintilla/Editor.py" line="1255"/>
         <source>Next breakpoint</source>
         <translation>Следующая точка останова</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1251"/>
+        <location filename="../QScintilla/Editor.py" line="1257"/>
         <source>Previous breakpoint</source>
         <translation>Предыдущая точка останова</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1256"/>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
         <source>Clear all breakpoints</source>
         <translation>Убрать все точки останова</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1304"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Goto syntax error</source>
         <translation>Перейти к синтаксической ошибке</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1314"/>
         <source>Show syntax error message</source>
         <translation>Показать сообщение о синтаксической ошибке</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1313"/>
+        <location filename="../QScintilla/Editor.py" line="1319"/>
         <source>Clear syntax error</source>
         <translation>Очистить синтаксическую ошибку</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1318"/>
+        <location filename="../QScintilla/Editor.py" line="1324"/>
         <source>Next warning</source>
         <translation>Следующее предупреждение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1322"/>
+        <location filename="../QScintilla/Editor.py" line="1328"/>
         <source>Previous warning</source>
         <translation>Предыдущее предупреждение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1326"/>
+        <location filename="../QScintilla/Editor.py" line="1332"/>
         <source>Show warning message</source>
         <translation>Показать предупреждение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1330"/>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
         <source>Clear warnings</source>
         <translation>Очистить предупреждения</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1335"/>
+        <location filename="../QScintilla/Editor.py" line="1341"/>
         <source>Next uncovered line</source>
         <translation>Следующая неохваченная строка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1339"/>
+        <location filename="../QScintilla/Editor.py" line="1345"/>
         <source>Previous uncovered line</source>
         <translation>Предыдущая неохваченная строка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1344"/>
+        <location filename="../QScintilla/Editor.py" line="1350"/>
         <source>Next task</source>
         <translation>Следующая задача</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1348"/>
+        <location filename="../QScintilla/Editor.py" line="1354"/>
         <source>Previous task</source>
         <translation>Предыдущая задача</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
         <source>Export source</source>
         <translation>Экспортировать исходник</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1390"/>
+        <location filename="../QScintilla/Editor.py" line="1396"/>
         <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&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="1398"/>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
         <source>No export format given. Aborting...</source>
         <translation>Не задан формат экспорта. Прерывание...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1409"/>
+        <location filename="../QScintilla/Editor.py" line="1415"/>
         <source>Alternatives ({0})</source>
         <translation>Альтернативы ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
         <source>Pygments Lexer</source>
         <translation>Лексер Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Выберите для использования лексер Pygments.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>Modification of Read Only file</source>
         <translation>Редактирование файла, открытого только на чтение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>You are attempting to change a read only file. Please save to a different file first.</source>
         <translation>Попытка редактирования файла, открытого только на чтение. Пожалуйста, сначала сохраните изменения в другой файл.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2675"/>
+        <location filename="../QScintilla/Editor.py" line="2681"/>
         <source>Printing...</source>
         <translation>Печать...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2692"/>
+        <location filename="../QScintilla/Editor.py" line="2698"/>
         <source>Printing completed</source>
         <translation>Печать завершена</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2694"/>
+        <location filename="../QScintilla/Editor.py" line="2700"/>
         <source>Error while printing</source>
         <translation>Ошибка печати</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2697"/>
+        <location filename="../QScintilla/Editor.py" line="2703"/>
         <source>Printing aborted</source>
         <translation>Печать прервана</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <source>File Modified</source>
         <translation>Файл изменён</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <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="../QScintilla/Editor.py" line="3110"/>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно прочитать файл &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
         <source>Save File</source>
         <translation>Сохранить файл</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3234"/>
+        <location filename="../QScintilla/Editor.py" line="3240"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно сохранить файл &lt;b&gt;{0}&lt;/b&gt;:&lt;br&gt;Причина: {1}.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion</source>
         <translation>Автодополнение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation>Автодополнение недоступно, так как не задан источник автодополнения.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5616"/>
+        <location filename="../QScintilla/Editor.py" line="5629"/>
         <source>Disable breakpoint</source>
         <translation>Запретить точку останова</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <source>Code Coverage</source>
         <translation>Покрытие кода</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <source>Please select a coverage file</source>
         <translation>Пожалуйста, выберите файл покрытия</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Показать аннотации по покрытию кода</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6047"/>
+        <location filename="../QScintilla/Editor.py" line="6060"/>
         <source>All lines have been covered.</source>
         <translation>Все строки были охвачены.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>There is no coverage file available.</source>
         <translation>Нет доступного файла покрытия.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Profile Data</source>
         <translation>Данные профайлера</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Please select a profile file</source>
         <translation>Пожалуйста, выберите файл профиля</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <source>Syntax Error</source>
         <translation>Синтаксическая ошибка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <source>No syntax error message available.</source>
         <translation>Нет сообщения о синтаксической ошибке.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Macro Name</source>
         <translation>Имя макроса</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Select a macro name:</source>
         <translation>Задайте имя макроса:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6750"/>
-        <source>Load macro file</source>
-        <translation>Загрузить макрос</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6792"/>
-        <source>Macro files (*.macro)</source>
-        <translation>Макросы (*.macro)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6772"/>
-        <source>Error loading macro</source>
-        <translation>Ошибка при загрузке макроса</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6763"/>
+        <source>Load macro file</source>
+        <translation>Загрузить макрос</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
+        <source>Macro files (*.macro)</source>
+        <translation>Макросы (*.macro)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <source>Error loading macro</source>
+        <translation>Ошибка при загрузке макроса</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6776"/>
         <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="6772"/>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
         <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="6792"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Save macro file</source>
         <translation>Сохранить файл с макросами</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
         <source>Save macro</source>
         <translation>Сохранить макрос</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
         <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="6824"/>
-        <source>Error saving macro</source>
-        <translation>Ошибка при сохранении макроса</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6824"/>
-        <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="6837"/>
-        <source>Start Macro Recording</source>
-        <translation>Начать запись макроса</translation>
+        <source>Error saving macro</source>
+        <translation>Ошибка при сохранении макроса</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="6837"/>
+        <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="6850"/>
+        <source>Start Macro Recording</source>
+        <translation>Начать запись макроса</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6850"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>Запись макроса уже идёт. Начать новую запись?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Macro Recording</source>
         <translation>Запись макроса</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Enter name of the macro:</source>
         <translation>Задайте имя макроса:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7033"/>
+        <location filename="../QScintilla/Editor.py" line="7046"/>
         <source>File changed</source>
         <translation>Файл изменен</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7213"/>
+        <location filename="../QScintilla/Editor.py" line="7237"/>
         <source>{0} (ro)</source>
         <translation>{0} (только чтение)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <source>Drop Error</source>
         <translation>Ошибка Drag&amp;&amp;Drop</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <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="7375"/>
+        <location filename="../QScintilla/Editor.py" line="7399"/>
         <source>Resources</source>
         <translation>Ресурсы</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7401"/>
         <source>Add file...</source>
         <translation>Добавить файл...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7379"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add files...</source>
         <translation>Добавить файлы...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7405"/>
         <source>Add aliased file...</source>
         <translation>Добавить файл под другим именем...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7384"/>
+        <location filename="../QScintilla/Editor.py" line="7408"/>
         <source>Add localized resource...</source>
         <translation>Добавить локализованный ресурс...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7388"/>
+        <location filename="../QScintilla/Editor.py" line="7412"/>
         <source>Add resource frame</source>
         <translation>Добавить фрагмент ресурсов</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7407"/>
+        <location filename="../QScintilla/Editor.py" line="7431"/>
         <source>Add file resource</source>
         <translation>Добавить файл ресурсов</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7423"/>
+        <location filename="../QScintilla/Editor.py" line="7447"/>
         <source>Add file resources</source>
         <translation>Добавить файлы ресурсов</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add aliased file resource</source>
         <translation>Добавить файл ресурсов под другим именем</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <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="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Package Diagram</source>
         <translation>Диаграмма пакетов</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Include class attributes?</source>
         <translation>Включать атрибуты класса?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
         <source>Imports Diagram</source>
         <translation>Диаграмма импортов</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
         <source>Include imports from external modules?</source>
         <translation>Включать импорты из внешних модулей?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Application Diagram</source>
         <translation>Диаграмма приложения</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Include module names?</source>
         <translation>Включать имена модулей?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7884"/>
+        <location filename="../QScintilla/Editor.py" line="7908"/>
         <source>Add to dictionary</source>
         <translation>Добавить в словарь</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7886"/>
+        <location filename="../QScintilla/Editor.py" line="7910"/>
         <source>Ignore All</source>
         <translation>Игнорировать всё</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6610"/>
+        <location filename="../QScintilla/Editor.py" line="6623"/>
         <source>Warning: {0}</source>
         <translation>Предупреждение: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6617"/>
+        <location filename="../QScintilla/Editor.py" line="6630"/>
         <source>Error: {0}</source>
         <translation>Ошибка: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7029"/>
+        <location filename="../QScintilla/Editor.py" line="7042"/>
         <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
         <translation>&lt;br&gt;&lt;b&gt;Предупреждение:&lt;/b&gt; При переоткрытии все изменения будут потеряны.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="920"/>
+        <location filename="../QScintilla/Editor.py" line="926"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation>Открыть &apos;отбракованный&apos; файл</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1030"/>
+        <location filename="../QScintilla/Editor.py" line="1036"/>
         <source>Load Diagram...</source>
         <translation>Загрузить диаграмму...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1353"/>
+        <location filename="../QScintilla/Editor.py" line="1359"/>
         <source>Next change</source>
         <translation>Следующее изменение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1357"/>
+        <location filename="../QScintilla/Editor.py" line="1363"/>
         <source>Previous change</source>
         <translation>Предыдущее изменение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
         <source>Sort Lines</source>
         <translation>Сортировать строки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation>Выборка содержит данные неподходящие для сортировки как числа.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
         <source>Warning</source>
         <translation>Предупреждение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
         <source>No warning messages available.</source>
         <translation>Нет предупреждающего сообщения.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6607"/>
+        <location filename="../QScintilla/Editor.py" line="6620"/>
         <source>Style: {0}</source>
         <translation>Стиль: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
+        <location filename="../QScintilla/Editor.py" line="900"/>
         <source>New Document View</source>
         <translation>Новое окно для документа</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="897"/>
+        <location filename="../QScintilla/Editor.py" line="903"/>
         <source>New Document View (with new split)</source>
         <translation>Новое окно для документа (в новом разделе)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="984"/>
+        <location filename="../QScintilla/Editor.py" line="990"/>
         <source>Tools</source>
         <translation>Инструменты</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1115"/>
+        <location filename="../QScintilla/Editor.py" line="1121"/>
         <source>Re-Open With Encoding</source>
         <translation>Открыть заново с кодировкой</translation>
     </message>
@@ -11896,120 +11924,130 @@
         <translation type="obsolete">&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; был изменён, будучи открытым в eric6. Перепрочесть?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="876"/>
         <source>Automatic Completion enabled</source>
         <translation>Автоматическое дополнение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="950"/>
+        <location filename="../QScintilla/Editor.py" line="956"/>
         <source>Complete</source>
         <translation>Дополнить</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
         <source>Auto-Completion Provider</source>
         <translation>Источник автодополнений</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
         <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="5184"/>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
         <source>Call-Tips Provider</source>
         <translation>Источник всплывающих подсказок</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5184"/>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
         <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="8391"/>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
         <source>Register Mouse Click Handler</source>
         <translation>Регистрация обработчика кликов мышки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8391"/>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="914"/>
+        <location filename="../QScintilla/Editor.py" line="920"/>
         <source>Save Copy...</source>
         <translation>Сохранить копию...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="953"/>
+        <location filename="../QScintilla/Editor.py" line="959"/>
         <source>Clear Completions Cache</source>
         <translation>Очистить кэш дополнений</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="880"/>
+        <location filename="../QScintilla/Editor.py" line="886"/>
         <source>Code Info</source>
         <translation>Инфо для кода</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1361"/>
+        <location filename="../QScintilla/Editor.py" line="1367"/>
         <source>Clear changes</source>
         <translation>Очистить изменения</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="803"/>
+        <location filename="../QScintilla/Editor.py" line="805"/>
         <source>Execute Selection In Console</source>
         <translation>Выполнить выбор в консоли</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>EditorConfig Properties</source>
         <translation>Свойства EditorConfig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Не удается загрузить свойства EditorConfig для файла &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
+        <location filename="../QScintilla/Editor.py" line="1271"/>
         <source>Toggle all folds</source>
         <translation>Свернуть/Развернуть все свертки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1270"/>
+        <location filename="../QScintilla/Editor.py" line="1276"/>
         <source>Toggle all folds (including children)</source>
         <translation>Свернуть/Развернуть все свёртки (включая дочерние)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1275"/>
-        <source>Toggle current fold</source>
-        <translation>Свернуть/Развернуть текущую свертку</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1281"/>
+        <source>Toggle current fold</source>
+        <translation>Свернуть/Развернуть текущую свертку</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1287"/>
         <source>Expand (including children)</source>
         <translation>Развернуть (включая дочерние)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
-        <source>Collapse (including children)</source>
-        <translation>Свернуть (включая дочерние)</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1292"/>
+        <source>Collapse (including children)</source>
+        <translation>Свернуть (включая дочерние)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1298"/>
         <source>Clear all folds</source>
         <translation>Очистить все свертки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1173"/>
+        <location filename="../QScintilla/Editor.py" line="1179"/>
         <source>Spell Check Languages</source>
         <translation>Языки проверки правописания</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7023"/>
+        <location filename="../QScintilla/Editor.py" line="7036"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="849"/>
+        <source>Insert Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorAPIsPage</name>
@@ -13266,205 +13304,220 @@
         <translation>Табуляция &amp;&amp; Отступы</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="45"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="89"/>
         <source>Tab width:</source>
         <translation>Ширина табуляции:</translation>
     </message>
     <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="99"/>
+        <source>Move to set the tab width.</source>
+        <translation>Задайте ширину табуляции.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="121"/>
+        <source>Displays the selected tab width.</source>
+        <translation>Выбранная ширина табуляции.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="137"/>
+        <source>Indentation width:</source>
+        <translation>Ширина отступа:</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="147"/>
+        <source>Move to set the indentation width.</source>
+        <translation>Задайте ширину отступа.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="169"/>
+        <source>Displays the selected indentation width.</source>
+        <translation>Выбранная ширина отступа.</translation>
+    </message>
+    <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="55"/>
-        <source>Move to set the tab width.</source>
-        <translation>Задайте ширину табуляции.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="77"/>
-        <source>Displays the selected tab width.</source>
-        <translation>Выбранная ширина табуляции.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="93"/>
-        <source>Indentation width:</source>
-        <translation>Ширина отступа:</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="103"/>
-        <source>Move to set the indentation width.</source>
-        <translation>Задайте ширину отступа.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="125"/>
-        <source>Displays the selected indentation width.</source>
-        <translation>Выбранная ширина отступа.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="246"/>
         <source>Select whether tab characters are used for indentations.</source>
         <translation>Разрешить использовать табуляцию для отступов.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="249"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="58"/>
         <source>Use tabs for indentations</source>
         <translation>Использовать табуляцию для отступов</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="236"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="45"/>
         <source>Select whether autoindentation shall be enabled</source>
         <translation>Разрешить/запретить автоматические отступы</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="239"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="48"/>
         <source>Auto indentation</source>
         <translation>Автоматические отступы</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="266"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="75"/>
         <source>Select whether tabs shall be converted upon opening the file</source>
         <translation>Разрешить замену табуляции на пробелы при открытии файла</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="269"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="78"/>
         <source>Convert tabs upon open</source>
         <translation>Заменять табуляцию при открытии</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="256"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="65"/>
         <source>Select whether pressing the tab key indents.</source>
         <translation>Разрешить увеличение отступа кнопкой Tab.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="259"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="68"/>
         <source>Tab key indents</source>
         <translation>Кнопка Tab увеличивает отступ</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="371"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="373"/>
         <source>Comments</source>
         <translation>Комментарии</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="377"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="379"/>
         <source>Select to insert the comment sign at column 0</source>
         <translation>Разрешить вставку символа комментария в первую колонку</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="380"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="382"/>
         <source>&lt;b&gt;Insert comment at column 0&lt;/b&gt;&lt;p&gt;Select to insert the comment sign at column 0. Otherwise, the comment sign is inserted at the first non-whitespace position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Вставка символа комментария в первую колонку&lt;/b&gt;&lt;p&gt;Вставляет символ комментария в первую колонку. Иначе символ комментария будет вставлен в позицию первого же символа, отличного от символа пропуска.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="383"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="385"/>
         <source>Insert comment at column 0</source>
         <translation>Вставлять комментарий в первую колонку</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="393"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="424"/>
         <source>Virtual Space</source>
         <translation>Виртуальное пространство</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="399"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="430"/>
         <source>Virtual space is the space after the last character of a line. It is not allocated unless some text is entered or copied into it. Usage of virtual space can be configured with these selections.</source>
         <translation>Виртуальное пространство - это пространство за концом строки, которое не выделяется до тех пор, пока оно не потребуется.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="409"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="440"/>
         <source>Select to enable a rectangular selection to extend into virtual space</source>
         <translation>Разрешить прямоугольному выделению заходить в виртуальное пространство</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="412"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="443"/>
         <source>Selection may access virtual space</source>
         <translation>Разрешить выделению заходить в виртуальное пространство</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="419"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="450"/>
         <source>Select to allow the cursor to be moved into virtual space</source>
         <translation>Разрешить курсору заходить в виртуальное пространство</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="422"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="453"/>
         <source>Cursor can move into virtual space</source>
         <translation>Курсор может заходить в виртуальное пространство</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="158"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="206"/>
         <source>Language</source>
         <translation>Язык</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="163"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="211"/>
         <source>Tab Width</source>
         <translation>Ширина табуляции</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="168"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="216"/>
         <source>Indent Width</source>
         <translation>Ширина отступа</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="196"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="244"/>
         <source>Press to add a language specific override</source>
         <translation>Добавить переопределение для конкретного языка</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="203"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="251"/>
         <source>Press to delete the selected language specific override</source>
         <translation>Удалить выбранное переопределение конкретного языка</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="210"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="258"/>
         <source>Press to edit the selected language specific override</source>
         <translation>Редактировать выбранное переопределение конкретного языка</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Tab and Indent Override</source>
         <translation>Переопределение табуляции и отступа</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Shall the selected entries really be removed?</source>
         <translation>Действительно ли выбранные записи должны быть удалены?</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="281"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="283"/>
         <source>Select to enable the source code outline view</source>
         <translation>Разрешить представление структуры исходного кода</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="284"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="286"/>
         <source>Source Code Outline</source>
         <translation>Структура исходного кода</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="293"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="295"/>
         <source>Default Width:</source>
         <translation>Ширина по умолчанию:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="320"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="302"/>
         <source>Enter the default width of the source code outline view</source>
         <translation>Задайте ширину вида структуры исходного кода по умолчанию</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="313"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="321"/>
         <source>Width Step Size:</source>
         <translation>Размер шага ширины:</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="339"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="328"/>
         <source>Enter the amount of pixels the width of the outline should be increased or decreased</source>
         <translation>Задайте количество пикселей, на которое следует увеличить или уменьшить ширину контура</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="358"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="360"/>
         <source>Select to show the source code encoding</source>
         <translation>Разрешить показывать кодировку исходного кода</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="361"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="363"/>
         <source>Show source file encoding</source>
         <translation>Показывать кодировку исходного файла</translation>
     </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="395"/>
+        <source>Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="401"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="414"/>
+        <source>Select the docstring style to be used</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorHighlightersPage</name>
@@ -50380,17 +50433,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1627"/>
+        <location filename="../Preferences/__init__.py" line="1629"/>
         <source>Export Preferences</source>
         <translation>Экспорт предпочтений</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Import Preferences</source>
         <translation>Импорт предпочтений</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation>Файлы предпочтений (*.ini);;Все файлы (*)</translation>
     </message>
@@ -50916,312 +50969,312 @@
         <translation>Регистрация типа проекта</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>Read project file</source>
         <translation>Загрузить файл проекта</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>&lt;p&gt;The project 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="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>Save project file</source>
         <translation>Сохранить файл проекта</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>&lt;p&gt;The project 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="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>Read user project properties</source>
         <translation>Прочитать пользовательские настройки проекта</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>&lt;p&gt;The user specific project properties 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="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>Save user project properties</source>
         <translation>Сохранить пользовательские свойства проекта</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>&lt;p&gt;The user specific project properties 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="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>Read project session</source>
         <translation>Загрузить сессию проекта</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1244"/>
+        <location filename="../Project/Project.py" line="1245"/>
         <source>Please save the project first.</source>
         <translation>Пожалуйста, сначала сохраните проект.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно прочитать файл с сессией проекта: &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>Save project session</source>
         <translation>Сохранить сессию проекта</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>&lt;p&gt;The project session 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="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>Delete project session</source>
         <translation>Удалить сессию проекта</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно удалить выбранный файл с сессией: &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>Read tasks</source>
         <translation>Прочитать задачи</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно прочитать файл с задачами: &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>Save tasks</source>
         <translation>Сохранить задачи</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно сохранить файл с задачами: &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>Read debugger properties</source>
         <translation>Прочитать свойства отладчика</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>&lt;p&gt;The project debugger properties 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="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>Save debugger properties</source>
         <translation>Сохранить свойства отладчика</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>&lt;p&gt;The project debugger properties 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="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>Delete debugger properties</source>
         <translation>Удалить свойства отладчика</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно удалить файл свойств отладчика &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>Add Language</source>
         <translation>Добавить язык перевода</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>You have to specify a translation pattern first.</source>
         <translation>Необходимо сначала задать шаблон перевода.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>Delete translation</source>
         <translation>Удалить перевод</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1677"/>
+        <location filename="../Project/Project.py" line="1678"/>
         <source>Add file</source>
         <translation>Добавить файл</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1741"/>
+        <location filename="../Project/Project.py" line="1742"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1664"/>
+        <location filename="../Project/Project.py" line="1665"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно добавить выделенный файл &lt;b&gt;{0}&lt;/b&gt; в архив &lt;b&gt;{1}&lt;/b&gt;. &lt;/p&gt;&lt;p&gt;Причина: {2}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1809"/>
+        <location filename="../Project/Project.py" line="1810"/>
         <source>The target directory must not be empty.</source>
         <translation>Целевая директория не должна быть пустой.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>Add directory</source>
         <translation>Добавить директорию</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1708"/>
+        <location filename="../Project/Project.py" line="1709"/>
         <source>&lt;p&gt;The source directory doesn&apos;t contain any files belonging to the selected category.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Директория не содержит ни одного файла, принадлежащего к заданной категории.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1723"/>
+        <location filename="../Project/Project.py" line="1724"/>
         <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно создать директорию &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>The source directory must not be empty.</source>
         <translation>Исходная директория не должна быть пустой.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1957"/>
+        <location filename="../Project/Project.py" line="1958"/>
         <source>Rename file</source>
         <translation>Переименовать файл</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>Rename File</source>
         <translation>Переименовать файл</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно переименовать файл &lt;b&gt;{0}&lt;/b&gt;:&lt;br&gt;Причина: {1}.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>Delete file</source>
         <translation>Удалить файл</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>Delete directory</source>
         <translation>Удалить директорию</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>Create project directory</source>
         <translation>Создать директорию проекта</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно создать директорию проекта &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>New Project</source>
         <translation>Новый проект</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2476"/>
+        <location filename="../Project/Project.py" line="2477"/>
         <source>Add existing files to the project?</source>
         <translation>Добавить существующие файлы в проект?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>Select Version Control System</source>
         <translation>Выберите систему контроля версий (VCS)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2603"/>
+        <location filename="../Project/Project.py" line="2604"/>
         <source>Would you like to edit the VCS command options?</source>
         <translation>Вы хотите редактировать параметры команд VCS?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>New project</source>
         <translation>Новый проект</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2546"/>
+        <location filename="../Project/Project.py" line="2547"/>
         <source>Shall the project file be added to the repository?</source>
         <translation>Должен ли файл проекта быть добавлен в репозиторий?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2582"/>
+        <location filename="../Project/Project.py" line="2583"/>
         <source>None</source>
         <translation>None</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2575"/>
+        <location filename="../Project/Project.py" line="2576"/>
         <source>Select version control system for the project</source>
         <translation>Выберите систему контроля версий для проекта</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Translation Pattern</source>
         <translation>Шаблон перевода</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Enter the path pattern for translation files (use &apos;%language%&apos; in place of the language code):</source>
         <translation>Введите шаблон пути для файлов переводов (используйте &apos;%language%&apos; вместо language code):</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>Open project</source>
         <translation>Открыть проект</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3120"/>
+        <location filename="../Project/Project.py" line="3121"/>
         <source>Project Files (*.e4p)</source>
         <translation>Файлы проектов (*.e4p)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save project as</source>
         <translation>Сохранить проект как</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>Save File</source>
         <translation>Сохранить файл</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>Close Project</source>
         <translation>Закрыть проект</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>The current project has unsaved changes.</source>
         <translation>Изменения в текущем проекте не сохранены.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>Syntax errors detected</source>
         <translation>Найдены синтаксические ошибки</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>The project contains %n file(s) with syntax errors.</source>
         <translation>
             <numerusform>Проект содержит %n файл с синтаксической ошибкой.</numerusform>
@@ -51230,351 +51283,351 @@
         </translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>&amp;New...</source>
         <translation>&amp;Новый...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3850"/>
-        <source>Generate a new project</source>
-        <translation>Создать новый проект</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3851"/>
+        <source>Generate a new project</source>
+        <translation>Создать новый проект</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3852"/>
         <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Новый...&lt;/b&gt;&lt;p&gt;Открытие диалога ввода информации о новом проекте.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>&amp;Open...</source>
         <translation>&amp;Открыть...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3864"/>
-        <source>Open an existing project</source>
-        <translation>Открыть существующий проект</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3865"/>
+        <source>Open an existing project</source>
+        <translation>Открыть существующий проект</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3866"/>
         <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Открыть...&lt;/b&gt;&lt;p&gt;Открытие существующего проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>Close project</source>
         <translation>Закрыть проект</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>&amp;Close</source>
         <translation>&amp;Закрыть</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3876"/>
-        <source>Close the current project</source>
-        <translation>Закрыть текущий проект</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3877"/>
+        <source>Close the current project</source>
+        <translation>Закрыть текущий проект</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3878"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Закрыть&lt;/b&gt;&lt;p&gt;Закрытие текущего проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3884"/>
+        <location filename="../Project/Project.py" line="3885"/>
         <source>Save project</source>
         <translation>Сохранить проект</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>&amp;Save</source>
         <translation>&amp;Сохранить</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3888"/>
-        <source>Save the current project</source>
-        <translation>Сохранить текущий проект</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3889"/>
+        <source>Save the current project</source>
+        <translation>Сохранить текущий проект</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3890"/>
         <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Сохранить&lt;/b&gt;&lt;p&gt;Сохранение текущего проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save &amp;as...</source>
         <translation>Сохранить &amp;как...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3900"/>
+        <location filename="../Project/Project.py" line="3901"/>
         <source>Save the current project to a new file</source>
         <translation>Сохранить текущий проект в новый файл</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3902"/>
+        <location filename="../Project/Project.py" line="3903"/>
         <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Сохранить как&lt;/b&gt;&lt;p&gt; Сохранение текущего проекта в новый файл.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add files to project</source>
         <translation>Добавить файлы в проект</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add &amp;files...</source>
         <translation>Добавить &amp;файлы...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3916"/>
+        <location filename="../Project/Project.py" line="3917"/>
         <source>Add files to the current project</source>
         <translation>Добавить файлы в текущий проект</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3918"/>
+        <location filename="../Project/Project.py" line="3919"/>
         <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Добавить файлы&lt;/b&gt;
 &lt;p&gt;Открытие диалога добавления файлов в текущий проект. Место добавления определяется расширением файла.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory to project</source>
         <translation>Добавить директорию в проект</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory...</source>
         <translation>Добавить директорию...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3932"/>
+        <location filename="../Project/Project.py" line="3933"/>
         <source>Add a directory to the current project</source>
         <translation>Добавить директорию в текущий проект</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3934"/>
+        <location filename="../Project/Project.py" line="3935"/>
         <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Добавить директорию...&lt;/b&gt;
 &lt;p&gt;Открытие диалога добавления директории к текущему проекту.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add translation to project</source>
         <translation>Добавить перевод в проект</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add &amp;translation...</source>
         <translation>Добавить &amp;перевод...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3947"/>
+        <location filename="../Project/Project.py" line="3948"/>
         <source>Add a translation to the current project</source>
         <translation>Добавить перевод в текущий проект</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3949"/>
+        <location filename="../Project/Project.py" line="3950"/>
         <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Добавить перевод...&lt;/b&gt;&lt;p&gt;Открытие диалога добавления перевода в текущий проект.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Search new files</source>
         <translation>Поиск новых файлов</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Searc&amp;h new files...</source>
         <translation>Поис&amp;к новых файлов...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3961"/>
+        <location filename="../Project/Project.py" line="3962"/>
         <source>Search new files in the project directory.</source>
         <translation>Поиск новых файлов в директории проекта.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>Project properties</source>
         <translation>Свойства проекта</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>&amp;Properties...</source>
         <translation>&amp;Свойства...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3992"/>
-        <source>Show the project properties</source>
-        <translation>Показать свойства проекта</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3993"/>
+        <source>Show the project properties</source>
+        <translation>Показать свойства проекта</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3994"/>
         <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Свойства...&lt;/b&gt;&lt;p&gt;Отображение диалога для редактирования свойств проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>User project properties</source>
         <translation>Пользовательские настройки проекта</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>&amp;User Properties...</source>
         <translation>&amp;Пользовательские свойства...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4005"/>
+        <location filename="../Project/Project.py" line="4006"/>
         <source>Show the user specific project properties</source>
         <translation>Показать пользовательские свойства проекта</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4007"/>
+        <location filename="../Project/Project.py" line="4008"/>
         <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Пользовательские свойства...&lt;/b&gt;&lt;p&gt;Отображает диалог редактирования пользовательских свойств проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations</source>
         <translation>Ассоциации типа файлов</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations...</source>
         <translation>Ассоциации типа файлов...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4019"/>
+        <location filename="../Project/Project.py" line="4020"/>
         <source>Show the project filetype associations</source>
         <translation>Показать ассоциации типов файлов для проекта</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations</source>
         <translation>Ассоциации для лексеров</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations...</source>
         <translation>Ассоциации для лексеров...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4037"/>
+        <location filename="../Project/Project.py" line="4038"/>
         <source>Show the project lexer associations (overriding defaults)</source>
         <translation>Показать ассоциации для лексеров проекта (переопределяющие по умолчанию)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4039"/>
+        <location filename="../Project/Project.py" line="4040"/>
         <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ассоциации для лексеров...&lt;/b&gt;&lt;p&gt;Показать ассоциации лексеров для проекта. Эти ассоциации переопределяют глобальные ассоциации лексеров. Лексеры используются для подсвечивания текста в редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger Properties</source>
         <translation>Свойства отладчика</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger &amp;Properties...</source>
         <translation>&amp;Свойства отладчика...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4055"/>
-        <source>Show the debugger properties</source>
-        <translation>Показать свойства отладчика</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4056"/>
+        <source>Show the debugger properties</source>
+        <translation>Показать свойства отладчика</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4057"/>
         <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Свойства отладчика...&lt;/b&gt;
 &lt;p&gt;Отображение диалога редактирования свойств отладчика, специфичных для данного проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>Load</source>
         <translation>Загрузить</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>&amp;Load</source>
         <translation>&amp;Загрузить</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4068"/>
-        <source>Load the debugger properties</source>
-        <translation>Загрузить свойства отладчика</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4069"/>
+        <source>Load the debugger properties</source>
+        <translation>Загрузить свойства отладчика</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4070"/>
         <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Загрузить свойства отладчика&lt;/b&gt;
 &lt;p&gt;Загрузить свойства отладчика, специфичные для данного проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>Save</source>
         <translation>Сохранить</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4080"/>
-        <source>Save the debugger properties</source>
-        <translation>Сохранить свойства отладчика</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4081"/>
+        <source>Save the debugger properties</source>
+        <translation>Сохранить свойства отладчика</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4082"/>
         <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Сохранить свойства отладчика&lt;/b&gt;&lt;p&gt;Сохранить свойства отладчика, специфичные для данного проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>Delete</source>
         <translation>Удалить</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>&amp;Delete</source>
         <translation>&amp;Удалить</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4092"/>
-        <source>Delete the debugger properties</source>
-        <translation>Удалить свойства отладчика</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4093"/>
+        <source>Delete the debugger properties</source>
+        <translation>Удалить свойства отладчика</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4094"/>
         <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Удалить свойства отладчика&lt;/b&gt;&lt;p&gt;Удалить свойства отладчика, специфичные для данного проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>Reset</source>
         <translation>Сбросить</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>&amp;Reset</source>
         <translation>&amp;Сбросить</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4105"/>
-        <source>Reset the debugger properties</source>
-        <translation>Сбросить свойства отладчика</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4106"/>
+        <source>Reset the debugger properties</source>
+        <translation>Сбросить свойства отладчика</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4107"/>
         <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Сбросить свойства отладчика&lt;/b&gt;&lt;p&gt;Сбросить свойства отладчика, специфичные для данного проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4115"/>
+        <location filename="../Project/Project.py" line="4116"/>
         <source>Load session</source>
         <translation>Загрузить сессию</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4119"/>
-        <source>Load the projects session file.</source>
-        <translation>Загрузить файл с сессией проекта.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4120"/>
+        <source>Load the projects session file.</source>
+        <translation>Загрузить файл с сессией проекта.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4121"/>
         <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation>&lt;b&gt;Загрузить сессию&lt;/b&gt;
 &lt;p&gt;Загрузить файл с сессией проекта. Сессия содержит следующие данные:&lt;br&gt;
@@ -51586,17 +51639,17 @@
 &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4133"/>
+        <location filename="../Project/Project.py" line="4134"/>
         <source>Save session</source>
         <translation>Сохранить сессию</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4137"/>
-        <source>Save the projects session file.</source>
-        <translation>Сохранить файл с сессией проекта.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4138"/>
+        <source>Save the projects session file.</source>
+        <translation>Сохранить файл с сессией проекта.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4139"/>
         <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation>&lt;b&gt;Сохранить сессию&lt;/b&gt;
 &lt;p&gt;Сохранить файл с сессией проекта. Сессия содержит следующие данные:&lt;br&gt;
@@ -51608,282 +51661,282 @@
 &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4151"/>
+        <location filename="../Project/Project.py" line="4152"/>
         <source>Delete session</source>
         <translation>Удалить сессию</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4155"/>
-        <source>Delete the projects session file.</source>
-        <translation>Удалить файл с сессией проекта.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4156"/>
+        <source>Delete the projects session file.</source>
+        <translation>Удалить файл с сессией проекта.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4157"/>
         <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
         <translation>&lt;b&gt;Удалить сессию&lt;/b&gt;&lt;p&gt;Удалить файл с сессией проекта&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>Code Metrics</source>
         <translation>Метрики кода</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>&amp;Code Metrics...</source>
         <translation>&amp;Метрики кода...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4169"/>
+        <location filename="../Project/Project.py" line="4170"/>
         <source>Show some code metrics for the project.</source>
         <translation>Отображение некоторых метрик кода проекта.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4171"/>
+        <location filename="../Project/Project.py" line="4172"/>
         <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Метрики кода...&lt;/b&gt;&lt;p&gt;Отображение некоторых метрик кода для всех Python-файлов проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Python Code Coverage</source>
         <translation>Покрытие кода Python</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Code Co&amp;verage...</source>
         <translation>&amp;Покрытие кода...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4183"/>
+        <location filename="../Project/Project.py" line="4184"/>
         <source>Show code coverage information for the project.</source>
         <translation>Показать информацию покрытия кода проекта.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4185"/>
+        <location filename="../Project/Project.py" line="4186"/>
         <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Покрытие кода...&lt;/b&gt;&lt;p&gt;Показать информацию покрытия кода всех Python-файлов проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Profile Data</source>
         <translation>Данные профайлера</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4193"/>
+        <location filename="../Project/Project.py" line="4194"/>
         <source>&amp;Profile Data...</source>
         <translation>&amp;Данные профайлера...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4197"/>
+        <location filename="../Project/Project.py" line="4198"/>
         <source>Show profiling data for the project.</source>
         <translation>Отображение результатов профилирования проекта.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4199"/>
+        <location filename="../Project/Project.py" line="4200"/>
         <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Данные профайлера...&lt;/b&gt;&lt;p&gt;Отображение результатов профилирования проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Application Diagram</source>
         <translation>Диаграмма приложения</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4208"/>
+        <location filename="../Project/Project.py" line="4209"/>
         <source>&amp;Application Diagram...</source>
         <translation>&amp;Диаграмма приложения...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4212"/>
+        <location filename="../Project/Project.py" line="4213"/>
         <source>Show a diagram of the project.</source>
         <translation>Показать диаграмму проекта.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4214"/>
+        <location filename="../Project/Project.py" line="4215"/>
         <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Диаграмма приложения...&lt;/b&gt;&lt;p&gt;Отображает диаграмму проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>Create Package List</source>
         <translation>Создать список пакета</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4237"/>
+        <location filename="../Project/Project.py" line="4238"/>
         <source>Create &amp;Package List</source>
         <translation>&amp;Создать список пакета</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>Create Plugin Archive</source>
         <translation>Создать архив плагина</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4253"/>
+        <location filename="../Project/Project.py" line="4254"/>
         <source>Create Plugin &amp;Archives</source>
         <translation>Создать архивы &amp;плагина</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4339"/>
-        <source>&amp;Project</source>
-        <translation>&amp;Проект</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4340"/>
+        <source>&amp;Project</source>
+        <translation>&amp;Проект</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4341"/>
         <source>Open &amp;Recent Projects</source>
         <translation>Открыть &amp;недавние проекты</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4345"/>
+        <location filename="../Project/Project.py" line="4346"/>
         <source>&amp;Version Control</source>
         <translation>Контроль &amp;версий</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4349"/>
+        <location filename="../Project/Project.py" line="4350"/>
         <source>Chec&amp;k</source>
         <translation>&amp;Проверить</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4351"/>
-        <source>Sho&amp;w</source>
-        <translation>По&amp;казать</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4352"/>
-        <source>&amp;Diagrams</source>
-        <translation>&amp;Диаграммы</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4341"/>
-        <source>Session</source>
-        <translation>Сессия</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4354"/>
-        <source>Source &amp;Documentation</source>
-        <translation>&amp;Документация исходников</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4342"/>
-        <source>Debugger</source>
-        <translation>Отладка</translation>
+        <source>Sho&amp;w</source>
+        <translation>По&amp;казать</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="4353"/>
+        <source>&amp;Diagrams</source>
+        <translation>&amp;Диаграммы</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4342"/>
+        <source>Session</source>
+        <translation>Сессия</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4355"/>
+        <source>Source &amp;Documentation</source>
+        <translation>&amp;Документация исходников</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4343"/>
+        <source>Debugger</source>
+        <translation>Отладка</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4354"/>
         <source>Pac&amp;kagers</source>
         <translation>У&amp;паковщики</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4479"/>
+        <location filename="../Project/Project.py" line="4480"/>
         <source>Project</source>
         <translation>Проект</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4545"/>
+        <location filename="../Project/Project.py" line="4546"/>
         <source>&amp;Clear</source>
         <translation>&amp;Очистить</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>Search New Files</source>
         <translation>Поиск новых файлов</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>There were no new files found to be added.</source>
         <translation>Не найдено новых файлов для добавления.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>Version Control System</source>
         <translation>Система контроля версий</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Выбранная VCS &lt;b&gt;{0}&lt;/b&gt; не найдена.&lt;br/&gt;Контроль версий отключен.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4996"/>
+        <location filename="../Project/Project.py" line="4997"/>
         <source>Coverage Data</source>
         <translation>Данные покрытия</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5046"/>
+        <location filename="../Project/Project.py" line="5047"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>Для текущего проекта не определён главный сценарий. Отмена</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Code Coverage</source>
         <translation>Покрытие кода</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Please select a coverage file</source>
         <translation>Пожалуйста, выберите файл покрытия</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Please select a profile file</source>
         <translation>Пожалуйста, выберите файл профиля</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Include module names?</source>
         <translation>Включать имена модулей?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5267"/>
+        <location filename="../Project/Project.py" line="5268"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Файл &lt;b&gt;PKGLIST&lt;/b&gt; уже существует. Переписать?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно создать файл &lt;b&gt;PKGLIST&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5337"/>
+        <location filename="../Project/Project.py" line="5338"/>
         <source>The project does not have a main script defined. Aborting...</source>
         <translation>Для текущего проекта не определён главный сценарий. Отмена...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5477"/>
+        <location filename="../Project/Project.py" line="5478"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно сохранить файл &lt;b&gt;{0}&lt;/b&gt; в архиве. Игнорируем его.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5548"/>
+        <location filename="../Project/Project.py" line="5549"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно прочитать файл плагина &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>Create main script</source>
         <translation>Создать главный сценарий</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>&lt;p&gt;The mainscript &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно создать главный сценарий проекта&lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>Load Diagram</source>
         <translation>Загрузить диаграмму</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>&amp;Load Diagram...</source>
         <translation>&amp;Загрузить диаграмму...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4226"/>
+        <location filename="../Project/Project.py" line="4227"/>
         <source>Load a diagram from file.</source>
         <translation>Загрузить диаграмму из файла.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4228"/>
+        <location filename="../Project/Project.py" line="4229"/>
         <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Загрузить диаграмму...&lt;/b&gt;&lt;p&gt;Загрузить диаграмму из файла.&lt;/p&gt;</translation>
     </message>
@@ -51908,12 +51961,12 @@
         <translation>Консоль PyQt5</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4854"/>
+        <location filename="../Project/Project.py" line="4855"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Выбранная VCS &lt;b&gt;{0}&lt;/b&gt; не найдена.&lt;br/&gt;Возврат отвергнут.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно прочитать файл плагина &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
@@ -51948,53 +52001,53 @@
         <translation>Плагин eric6</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>Create project management directory</source>
         <translation>Создать служебную директорию проекта</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Директория проекта &lt;b&gt;{0}&lt;/b&gt; не доступна для записи.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Alt+Ctrl+P</source>
         <comment>Project|Search Project File</comment>
         <translation>Alt+Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3978"/>
+        <location filename="../Project/Project.py" line="3979"/>
         <source>Search for a file in the project list of files.</source>
         <translation>Поиск файла в списке файлов проекта.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3980"/>
+        <location filename="../Project/Project.py" line="3981"/>
         <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Поиск файла проекта&lt;/b&gt;&lt;p&gt;Поиск файла в списке файлов проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File</source>
         <translation>Поиск файла проекта</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File...</source>
         <translation>Поиск файла проекта...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5373"/>
+        <location filename="../Project/Project.py" line="5374"/>
         <source>Create Plugin Archives</source>
         <translation>Создать архивы плагина</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (Snapshot)</source>
         <translation>Создать архивы плагина (Snapshot)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (&amp;Snapshot)</source>
         <translation>Создать архивы плагина (&amp;Snapshot)</translation>
     </message>
@@ -52009,27 +52062,27 @@
         <translation type="obsolete">&lt;b&gt;Создать архивы плагина (Snapshot)&lt;/b&gt;&lt;p&gt;Создание архивных файлов плагина eric6, используя список файлов, приведенный в файле PKGLIST. Имя архива, если оно не задано в файле со списком пакета, создается из имени главного сценария. Версия главного скрипта изменяется в соответствии релизом snapshot.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5351"/>
+        <location filename="../Project/Project.py" line="5352"/>
         <source>Select package lists:</source>
         <translation>Выбор списков пакета:</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Creating plugin archives...</source>
         <translation>Создание архивов плагина...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Abort</source>
         <translation>Прервать</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>%v/%m Archives</source>
         <translation>%v из %m архивов</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5385"/>
+        <location filename="../Project/Project.py" line="5386"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно прочитать файл &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
@@ -52044,117 +52097,117 @@
         <translation type="obsolete">&lt;p&gt;Файлы архива плагина eric6 созданы успешно.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5362"/>
+        <location filename="../Project/Project.py" line="5363"/>
         <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Файлы со списком пакета (PKGLIST*) не доступны или не выбраны. Отмена...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5413"/>
+        <location filename="../Project/Project.py" line="5414"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the&apos;; initial_list&apos; line of the header.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Файл &lt;b&gt;{0}&lt;/b&gt; пока не готов.&lt;/p&gt;&lt;p&gt;Пожалуйста переработайте его и удалите строки &apos;; initial_list&apos; из его заголовка.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3963"/>
+        <location filename="../Project/Project.py" line="3964"/>
         <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Поиск новых файлов...&lt;/b&gt;&lt;p&gt; Поиск новых файлов (источники, * .ui, * .idl, * .proto) в директории проекта и зарегистрированных поддиректориях..&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4021"/>
+        <location filename="../Project/Project.py" line="4022"/>
         <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ассоциации типов файлов...&lt;/b&gt;&lt;p&gt;Отображается диалоговое окно для редактирования ассоциаций типов файлов проекта. Эти ассоциации определяют тип (источник, форму, интерфейс, протокол или другие) с шаблоном имени файла. Они используются при добавлении файла в проект и при поиске новых файлов.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно удалить файла перевода &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно удалить выбранный файл &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно удалить выбранную директорию &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>Create Makefile</source>
         <translation>Создать Makefile</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Файл makefile &lt;b&gt;{0}&lt;/b&gt; невозможно создать.&lt;br/&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>Execute Make</source>
         <translation>Выполнить Make</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4291"/>
+        <location filename="../Project/Project.py" line="4292"/>
         <source>&amp;Execute Make</source>
         <translation>&amp;Выполнить Make</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4295"/>
+        <location filename="../Project/Project.py" line="4296"/>
         <source>Perform a &apos;make&apos; run.</source>
         <translation>Выполнить прогон &apos;make&apos;.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4297"/>
+        <location filename="../Project/Project.py" line="4298"/>
         <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a &apos;make&apos; run to rebuild the configured target.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Выполнить Make&lt;/b&gt;&lt;p&gt;Выполнение прогона &apos;make&apos; для пересборки настроеной цели.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5755"/>
+        <location filename="../Project/Project.py" line="5756"/>
         <source>Test for Changes</source>
         <translation>Проверить изменения</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4305"/>
+        <location filename="../Project/Project.py" line="4306"/>
         <source>&amp;Test for Changes</source>
         <translation>&amp;Проверить изменения</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4309"/>
+        <location filename="../Project/Project.py" line="4310"/>
         <source>Question &apos;make&apos;, if a rebuild is needed.</source>
         <translation>Запрос &apos;make&apos;, если необходима пересборка.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4311"/>
+        <location filename="../Project/Project.py" line="4312"/>
         <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions &apos;make&apos;, if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Проверка изменений&lt;/b&gt;&lt;p&gt;Запрос &apos;make&apos;, если требуется пересборка настроенной цели.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4356"/>
+        <location filename="../Project/Project.py" line="4357"/>
         <source>Make</source>
         <translation>Make</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5703"/>
+        <location filename="../Project/Project.py" line="5704"/>
         <source>The make process did not start.</source>
         <translation>Make-процесс не был запущен.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5748"/>
+        <location filename="../Project/Project.py" line="5749"/>
         <source>The make process crashed.</source>
         <translation>Make-процесс разрушен.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5758"/>
+        <location filename="../Project/Project.py" line="5759"/>
         <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Существуют изменения, которые требуют конфигурации make-цели &lt;b&gt;{0}&lt;/b&gt; для ее пересборки.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5763"/>
+        <location filename="../Project/Project.py" line="5764"/>
         <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Существуют изменения, которые требуют make-цель по умолчанию для ее пересборки.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>The makefile contains errors.</source>
         <translation>Makefile содержит ошибки.</translation>
     </message>
@@ -52169,7 +52222,7 @@
         <translation>Консоль PySide2</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4344"/>
+        <location filename="../Project/Project.py" line="4345"/>
         <source>Project-T&amp;ools</source>
         <translation>&amp;Инструменты-проекта</translation>
     </message>
@@ -52199,47 +52252,47 @@
         <translation>Консоль PySide6</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4242"/>
+        <location filename="../Project/Project.py" line="4243"/>
         <source>Create an initial PKGLIST file for an eric plugin.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4244"/>
+        <location filename="../Project/Project.py" line="4245"/>
         <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4258"/>
+        <location filename="../Project/Project.py" line="4259"/>
         <source>Create eric plugin archive files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4260"/>
+        <location filename="../Project/Project.py" line="4261"/>
         <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4275"/>
+        <location filename="../Project/Project.py" line="4276"/>
         <source>Create eric plugin archive files (snapshot releases).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4277"/>
+        <location filename="../Project/Project.py" line="4278"/>
         <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5441"/>
+        <location filename="../Project/Project.py" line="5442"/>
         <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5496"/>
+        <location filename="../Project/Project.py" line="5497"/>
         <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5504"/>
+        <location filename="../Project/Project.py" line="5505"/>
         <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54173,68 +54226,68 @@
         <translation>Windows/DOS</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <location filename="../Project/PropertiesDialog.ui" line="298"/>
         <source>&amp;Author:</source>
         <translation>&amp;Автор:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="294"/>
+        <location filename="../Project/PropertiesDialog.ui" line="308"/>
         <source>Enter authors name</source>
         <translation>Задайте имена авторов</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="297"/>
+        <location filename="../Project/PropertiesDialog.ui" line="311"/>
         <source>&lt;b&gt;Author&lt;/b&gt;
 &lt;p&gt;Enter the name of the author.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Автор&lt;/b&gt;
 &lt;p&gt;Задайте имя автора.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="305"/>
+        <location filename="../Project/PropertiesDialog.ui" line="319"/>
         <source>&amp;Email:</source>
         <translation>&amp;Email:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="315"/>
+        <location filename="../Project/PropertiesDialog.ui" line="329"/>
         <source>Enter authors email</source>
         <translation>Адрес электронной почты авторов</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="318"/>
+        <location filename="../Project/PropertiesDialog.ui" line="332"/>
         <source>&lt;b&gt;Email&lt;/b&gt;
 &lt;p&gt;Enter the email address of the author&lt;/p&gt;</source>
         <translation>&lt;b&gt;Email&lt;/b&gt;
 &lt;p&gt;Задайте адрес электронной почты автора&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="326"/>
+        <location filename="../Project/PropertiesDialog.ui" line="340"/>
         <source>&amp;Description:</source>
         <translation>&amp;Описание:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="339"/>
+        <location filename="../Project/PropertiesDialog.ui" line="353"/>
         <source>Enter description</source>
         <translation>Задайте описание</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="342"/>
+        <location filename="../Project/PropertiesDialog.ui" line="356"/>
         <source>&lt;b&gt;Description&lt;/b&gt;
 &lt;p&gt;Enter a short description for the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Описание&lt;/b&gt;
 &lt;p&gt;Задайте краткое описание проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="383"/>
+        <location filename="../Project/PropertiesDialog.ui" line="397"/>
         <source>Press to show information about the repository</source>
         <translation>Просмотр информации о репозитории</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="386"/>
+        <location filename="../Project/PropertiesDialog.ui" line="400"/>
         <source>Show &amp;Repository Info</source>
         <translation>Показать информацию о &amp;репозитории</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="389"/>
+        <location filename="../Project/PropertiesDialog.ui" line="403"/>
         <source>Alt+R</source>
         <translation>Alt+R</translation>
     </message>
@@ -54251,27 +54304,27 @@
 &lt;p&gt;Введите краткое описание мультипроекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="113"/>
+        <location filename="../Project/PropertiesDialog.py" line="121"/>
         <source>The project is version controlled by &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation>Проект находится под управлением &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="119"/>
+        <location filename="../Project/PropertiesDialog.py" line="127"/>
         <source>The project is not version controlled.</source>
         <translation>Проект не находится под управлением системы контроля версий.</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="58"/>
+        <location filename="../Project/PropertiesDialog.py" line="66"/>
         <source>Source Files ({0});;All Files (*)</source>
         <translation>Файлы исходников ({0});;Все файлы (*)</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="358"/>
+        <location filename="../Project/PropertiesDialog.ui" line="372"/>
         <source>Select to create a version controlled project</source>
         <translation>Создать проект под управлением системы контроля версий</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="361"/>
+        <location filename="../Project/PropertiesDialog.ui" line="375"/>
         <source>Version Controlled Project</source>
         <translation>Проект находится под управлением системы контроля версий</translation>
     </message>
@@ -54290,6 +54343,21 @@
         <source>Press to open a dialog to enter the &apos;make&apos; parameters</source>
         <translation>Открыть диалог ввода параметров &apos;make&apos;</translation>
     </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="291"/>
+        <source>Select the docstring style for the project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.py" line="50"/>
+        <source>None</source>
+        <translation type="unfinished">None</translation>
+    </message>
 </context>
 <context>
     <name>ProtobufPage</name>
--- a/eric6/i18n/eric6_tr.ts	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/i18n/eric6_tr.ts	Fri Jan 22 16:48:43 2021 +0100
@@ -8817,7 +8817,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="86"/>
         <source>docstring summary does not end with a period</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8852,7 +8852,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
         <source>docstring summary is not followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8862,92 +8862,92 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
         <source>private function/method is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="76"/>
         <source>private class is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="77"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="80"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
         <source>trailing quotes of docstring not on separate line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="87"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="90"/>
         <source>docstring does not contain a @return line but function/method returns something</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="91"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="94"/>
         <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="103"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="106"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="109"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <source>docstring contains too many @param/@keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="112"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="115"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="118"/>
         <source>class docstring is preceded by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="117"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="120"/>
         <source>class docstring is followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="119"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="122"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
         <source>function/method docstring is followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="131"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="134"/>
         <source>docstring does not contain a @exception line but function/method raises an exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="135"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="138"/>
         <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="158"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="161"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8957,42 +8957,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="88"/>
         <source>docstring summary does not start with &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="139"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="142"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="145"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="148"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <source>docstring does not contain a @signal line but class defines signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="151"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="154"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="157"/>
         <source>documented signal &apos;{0}&apos; is not defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="75"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="78"/>
         <source>class docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9007,15 +9007,43 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="95"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="98"/>
         <source>docstring does not contain a @yield line but function/method yields something</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="99"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="102"/>
         <source>docstring contains a @yield line but function/method doesn&apos;t yield anything</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <source>function docstring still contains some placeholders</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>DocstringGenerator</name>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="42"/>
+        <source>Eric</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="44"/>
+        <source>NumPy</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="46"/>
+        <source>Google</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="48"/>
+        <source>Sphinx</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DotDesktopListSelectionDialog</name>
@@ -11367,812 +11395,812 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3110"/>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
         <source>Open File</source>
         <translation>Dosya Aç</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="379"/>
+        <location filename="../QScintilla/Editor.py" line="381"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;dosyasının boyutu &lt;b&gt;{1} KB&lt;/b&gt;. Bu dosyayı yüklemek istiyor musunuz?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="468"/>
+        <location filename="../QScintilla/Editor.py" line="470"/>
         <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kaynak Düzenleme Penceresi&lt;/b&gt;&lt;p&gt;Bu pencere kaynak kod dosyalarını düzenlemek ve göstermek için kullanılır.Bunu pekçok kez kullanmak üzere açabilirsiniz. Dosyanın isim başlıkçubuğunda gösterilir.&lt;/p&gt;&lt;p&gt;Bekleme noktaların kolayca ekleyip düzenleyebilmeniz için satır numaraları ve işaret alanı vardır..İçerik  menüsü aracılığı ile sınırları düzenleyebilirsiniz.&lt;/p&gt;&lt;p&gt;Bekleme noktalarını ayarlamak için Shift ve ara çubuğuna beraber basabilirsiniz.&lt;/p&gt;&lt;p&gt;Bu işlem içerik menüsü ilede yapılabilir.&lt;/p&gt;&lt;p&gt;Bir yazım hatasının üzerinde Ctrl ile tıklarsanız o hata ile ilgili ayrıntılı yardım alırsınız.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="783"/>
+        <location filename="../QScintilla/Editor.py" line="785"/>
         <source>Undo</source>
         <translation>Geri Al</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="786"/>
+        <location filename="../QScintilla/Editor.py" line="788"/>
         <source>Redo</source>
         <translation>İleri al</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="789"/>
+        <location filename="../QScintilla/Editor.py" line="791"/>
         <source>Revert to last saved state</source>
         <translation>En son kaydedileni eski haline getir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="793"/>
+        <location filename="../QScintilla/Editor.py" line="795"/>
         <source>Cut</source>
         <translation>Kes</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="796"/>
+        <location filename="../QScintilla/Editor.py" line="798"/>
         <source>Copy</source>
         <translation>Kopyala</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="799"/>
+        <location filename="../QScintilla/Editor.py" line="801"/>
         <source>Paste</source>
         <translation>Yapıştır</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="807"/>
+        <location filename="../QScintilla/Editor.py" line="809"/>
         <source>Indent</source>
         <translation>Girinti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="810"/>
+        <location filename="../QScintilla/Editor.py" line="812"/>
         <source>Unindent</source>
         <translation>Girintisiz</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="813"/>
+        <location filename="../QScintilla/Editor.py" line="815"/>
         <source>Comment</source>
         <translation>Yorumlayıcı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="816"/>
+        <location filename="../QScintilla/Editor.py" line="818"/>
         <source>Uncomment</source>
         <translation>Yorumlanamaz</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Stream Comment</source>
         <translation>Yorumlayıcı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Box Comment</source>
         <translation>Kutu Yorumlayıcı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="826"/>
-        <source>Select to brace</source>
-        <translation>Köşeli ayracı seç</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="828"/>
+        <source>Select to brace</source>
+        <translation>Köşeli ayracı seç</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Select all</source>
         <translation>Hepsini seç</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="829"/>
+        <location filename="../QScintilla/Editor.py" line="831"/>
         <source>Deselect all</source>
         <translation>Tüm seçimi iptal et</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7881"/>
+        <location filename="../QScintilla/Editor.py" line="7905"/>
         <source>Check spelling...</source>
         <translation>Yazım Kontrolü...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="837"/>
+        <location filename="../QScintilla/Editor.py" line="839"/>
         <source>Check spelling of selection...</source>
         <translation>Seçilen alanın yazım kontrolü...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="841"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Remove from dictionary</source>
         <translation>Sözlükten çıkar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="847"/>
+        <location filename="../QScintilla/Editor.py" line="853"/>
         <source>Shorten empty lines</source>
         <translation>Boş satırları kısalt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="854"/>
+        <location filename="../QScintilla/Editor.py" line="860"/>
         <source>Use Monospaced Font</source>
         <translation>Tek hacimli yazıtipi kullan</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="859"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Autosave enabled</source>
         <translation>Otomatik kayıt kabul edildi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="869"/>
         <source>Typing aids enabled</source>
         <translation>Yazım yardımı etkinleştirildi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="902"/>
-        <source>Close</source>
-        <translation>Kapat</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="908"/>
+        <source>Close</source>
+        <translation>Kapat</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="914"/>
         <source>Save</source>
         <translation>Kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="911"/>
+        <location filename="../QScintilla/Editor.py" line="917"/>
         <source>Save As...</source>
         <translation>Farklı Kaydet...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
+        <location filename="../QScintilla/Editor.py" line="930"/>
         <source>Print Preview</source>
         <translation>Baskı Öngörünümü</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="933"/>
         <source>Print</source>
         <translation>Yazdır</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="956"/>
+        <location filename="../QScintilla/Editor.py" line="962"/>
         <source>Complete from Document</source>
         <translation type="unfinished">Belgeden</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="958"/>
+        <location filename="../QScintilla/Editor.py" line="964"/>
         <source>Complete from APIs</source>
         <translation type="unfinished">API&apos;den</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="960"/>
+        <location filename="../QScintilla/Editor.py" line="966"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished">Belgeden ve API&apos;den</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="878"/>
+        <location filename="../QScintilla/Editor.py" line="884"/>
         <source>Calltip</source>
         <translation>İpucu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="974"/>
+        <location filename="../QScintilla/Editor.py" line="980"/>
         <source>Check</source>
         <translation>Kontrol</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="994"/>
+        <location filename="../QScintilla/Editor.py" line="1000"/>
         <source>Show</source>
         <translation>Göster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="996"/>
-        <source>Code metrics...</source>
-        <translation>Metrik Kod...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="997"/>
-        <source>Code coverage...</source>
-        <translation>Kod koruyucu...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="999"/>
-        <source>Show code coverage annotations</source>
-        <translation>Kodun dipnotunu göster</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1002"/>
-        <source>Hide code coverage annotations</source>
-        <translation>Kod koruyucu dipnotunu gizle</translation>
+        <source>Code metrics...</source>
+        <translation>Metrik Kod...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1003"/>
+        <source>Code coverage...</source>
+        <translation>Kod koruyucu...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1005"/>
+        <source>Show code coverage annotations</source>
+        <translation>Kodun dipnotunu göster</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1008"/>
+        <source>Hide code coverage annotations</source>
+        <translation>Kod koruyucu dipnotunu gizle</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1011"/>
         <source>Profile data...</source>
         <translation>Veri kesiti...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
-        <source>Diagrams</source>
-        <translation>Şema</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1020"/>
-        <source>Class Diagram...</source>
-        <translation>Sınıf Şeması...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1022"/>
-        <source>Package Diagram...</source>
-        <translation>Paket Şeması...</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1024"/>
-        <source>Imports Diagram...</source>
-        <translation>Şemayı İçe aktar...</translation>
+        <source>Diagrams</source>
+        <translation>Şema</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1026"/>
+        <source>Class Diagram...</source>
+        <translation>Sınıf Şeması...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1028"/>
+        <source>Package Diagram...</source>
+        <translation>Paket Şeması...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1030"/>
+        <source>Imports Diagram...</source>
+        <translation>Şemayı İçe aktar...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1032"/>
         <source>Application Diagram...</source>
         <translation>Uygulama Şeması...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1044"/>
+        <location filename="../QScintilla/Editor.py" line="1050"/>
         <source>Languages</source>
         <translation>Diller</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1177"/>
+        <location filename="../QScintilla/Editor.py" line="1183"/>
         <source>No Language</source>
         <translation>Dil Yok</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1073"/>
+        <location filename="../QScintilla/Editor.py" line="1079"/>
         <source>Guessed</source>
         <translation>Tahmin edilen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1413"/>
+        <location filename="../QScintilla/Editor.py" line="1419"/>
         <source>Alternatives</source>
         <translation>Alternatifler</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1093"/>
+        <location filename="../QScintilla/Editor.py" line="1099"/>
         <source>Encodings</source>
         <translation>Kodlama</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1134"/>
+        <location filename="../QScintilla/Editor.py" line="1140"/>
         <source>End-of-Line Type</source>
         <translation>Yazım satırının sonu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1138"/>
+        <location filename="../QScintilla/Editor.py" line="1144"/>
         <source>Unix</source>
         <translation>Unix</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1145"/>
+        <location filename="../QScintilla/Editor.py" line="1151"/>
         <source>Windows</source>
         <translation>Windows</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1152"/>
+        <location filename="../QScintilla/Editor.py" line="1158"/>
         <source>Macintosh</source>
         <translation>Macintosh</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1202"/>
+        <location filename="../QScintilla/Editor.py" line="1208"/>
         <source>Export as</source>
         <translation>Farklı Dışaktar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1224"/>
-        <source>Toggle bookmark</source>
-        <translation>Yerimi açkapa</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1226"/>
-        <source>Next bookmark</source>
-        <translation>Sonraki yerimi</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1228"/>
-        <source>Previous bookmark</source>
-        <translation>Önceki yerimi</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1230"/>
+        <source>Toggle bookmark</source>
+        <translation>Yerimi açkapa</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1232"/>
+        <source>Next bookmark</source>
+        <translation>Sonraki yerimi</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1234"/>
+        <source>Previous bookmark</source>
+        <translation>Önceki yerimi</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1236"/>
         <source>Clear all bookmarks</source>
         <translation>Tüm yerimlerini temizle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1239"/>
+        <location filename="../QScintilla/Editor.py" line="1245"/>
         <source>Toggle breakpoint</source>
         <translation>Beklemenoktası açkapa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1241"/>
+        <location filename="../QScintilla/Editor.py" line="1247"/>
         <source>Toggle temporary breakpoint</source>
         <translation>Geçici bekleme noktası açkapa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1244"/>
+        <location filename="../QScintilla/Editor.py" line="1250"/>
         <source>Edit breakpoint...</source>
         <translation>Bekleme noktasını düzenle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5613"/>
+        <location filename="../QScintilla/Editor.py" line="5626"/>
         <source>Enable breakpoint</source>
         <translation>Beklemenoktasını etkinleştir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1249"/>
+        <location filename="../QScintilla/Editor.py" line="1255"/>
         <source>Next breakpoint</source>
         <translation>Sonraki Beklemenoktası</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1251"/>
+        <location filename="../QScintilla/Editor.py" line="1257"/>
         <source>Previous breakpoint</source>
         <translation>Önceki bekleme noktası</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1256"/>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
         <source>Clear all breakpoints</source>
         <translation>Tüm beklemenoktalarını temizle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1304"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Goto syntax error</source>
         <translation>Sözdizimi hatasına git</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1314"/>
         <source>Show syntax error message</source>
         <translation>Sözdizimi hata mesajını göster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1313"/>
+        <location filename="../QScintilla/Editor.py" line="1319"/>
         <source>Clear syntax error</source>
         <translation>Sözdizimi hatalarını sil</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1318"/>
+        <location filename="../QScintilla/Editor.py" line="1324"/>
         <source>Next warning</source>
         <translation>Sonraki Uyarı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1322"/>
+        <location filename="../QScintilla/Editor.py" line="1328"/>
         <source>Previous warning</source>
         <translation>Önceki Uyarı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1326"/>
+        <location filename="../QScintilla/Editor.py" line="1332"/>
         <source>Show warning message</source>
         <translation>Uyarı mesajını göster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1330"/>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
         <source>Clear warnings</source>
         <translation>Uyarıları temizle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1335"/>
+        <location filename="../QScintilla/Editor.py" line="1341"/>
         <source>Next uncovered line</source>
         <translation>Sonraki kapanmamış satır</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1339"/>
+        <location filename="../QScintilla/Editor.py" line="1345"/>
         <source>Previous uncovered line</source>
         <translation>Önceki kaplanmamış satır</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1344"/>
+        <location filename="../QScintilla/Editor.py" line="1350"/>
         <source>Next task</source>
         <translation>Sonraki görev</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1348"/>
+        <location filename="../QScintilla/Editor.py" line="1354"/>
         <source>Previous task</source>
         <translation>Önceki görev</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
         <source>Export source</source>
         <translation>Kaynağı dışaktar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1390"/>
+        <location filename="../QScintilla/Editor.py" line="1396"/>
         <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;dışa katarma tipi &lt;b&gt;{0}&lt;/b&gt;için dışaaktarıcı yok. Vazgeçiliyior...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
         <source>No export format given. Aborting...</source>
         <translation>Girilen dışaaktarma formatı yok. İptal edildi...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1409"/>
+        <location filename="../QScintilla/Editor.py" line="1415"/>
         <source>Alternatives ({0})</source>
         <translation>Alternatifler ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
         <source>Pygments Lexer</source>
         <translation>Pygments Lexer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Kullanmak için Pygment lexer seç.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>Modification of Read Only file</source>
         <translation>Yalnızca okunabilir dosyada değişiklik</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>You are attempting to change a read only file. Please save to a different file first.</source>
         <translation>Yalnızca okunabilir bir dosyayı değiştirmeşe çalışıyorsunuz. Lütfen önce farklı bir isimde kaydediniz.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2675"/>
+        <location filename="../QScintilla/Editor.py" line="2681"/>
         <source>Printing...</source>
         <translation>Yazılıyor...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2692"/>
+        <location filename="../QScintilla/Editor.py" line="2698"/>
         <source>Printing completed</source>
         <translation>Yazdırma tamalandı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2694"/>
+        <location filename="../QScintilla/Editor.py" line="2700"/>
         <source>Error while printing</source>
         <translation>Yazdırılırken hata</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2697"/>
+        <location filename="../QScintilla/Editor.py" line="2703"/>
         <source>Printing aborted</source>
         <translation>Yazdırma iptal edildi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <source>File Modified</source>
         <translation>Dosya Değiştirildi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <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="../QScintilla/Editor.py" line="3110"/>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dosya &lt;b&gt;{0}&lt;/b&gt; açılamıyor.&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
         <source>Save File</source>
         <translation>Dosyayı Kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3234"/>
+        <location filename="../QScintilla/Editor.py" line="3240"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dosya &lt;b&gt;{0}&lt;/b&gt; kaydedilemiyor.&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion</source>
         <translation>Otomatik tamamlama</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation>Otomatiktamamlama uygun değil çünkü bu otomatiktamamlama kaynağı değil.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5616"/>
+        <location filename="../QScintilla/Editor.py" line="5629"/>
         <source>Disable breakpoint</source>
         <translation>Durmanoktasını iptal et</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <source>Code Coverage</source>
         <translation>Kod Koruyucu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <source>Please select a coverage file</source>
         <translation>Lütfen bir koruyucu dosya seçiniz</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Kodların Dipnotunu Göster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6047"/>
+        <location filename="../QScintilla/Editor.py" line="6060"/>
         <source>All lines have been covered.</source>
         <translation>Tüm satırlar korumaya alındı.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>There is no coverage file available.</source>
         <translation>Hazırda koruma dosyası yok.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Profile Data</source>
         <translation>Veri Kesiti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Please select a profile file</source>
         <translation>Lütfen kesit dosyasını seçiniz</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <source>Syntax Error</source>
         <translation>Sözdizimi Hatası</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <source>No syntax error message available.</source>
         <translation>Uygun söz dizimi hata mesajı yok.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Macro Name</source>
         <translation>Makro Adı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Select a macro name:</source>
         <translation>Bir makro ismi seç:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6750"/>
-        <source>Load macro file</source>
-        <translation>Makro dosyasını yükle</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6792"/>
-        <source>Macro files (*.macro)</source>
-        <translation>Makro dosyaları (*.macro)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6772"/>
-        <source>Error loading macro</source>
-        <translation>Makronun yüklenmesinde hata</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6763"/>
+        <source>Load macro file</source>
+        <translation>Makro dosyasını yükle</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
+        <source>Macro files (*.macro)</source>
+        <translation>Makro dosyaları (*.macro)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
+        <source>Error loading macro</source>
+        <translation>Makronun yüklenmesinde hata</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6776"/>
         <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="6772"/>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
         <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="6792"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Save macro file</source>
         <translation>Makro Dosyasını Kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
         <source>Save macro</source>
         <translation>Makro Kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6824"/>
-        <source>Error saving macro</source>
-        <translation>Makronun kaydedilmesinde hata</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6824"/>
-        <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="6837"/>
-        <source>Start Macro Recording</source>
-        <translation>Makro Kaydı Başladı</translation>
+        <source>Error saving macro</source>
+        <translation>Makronun kaydedilmesinde hata</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="6837"/>
+        <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="6850"/>
+        <source>Start Macro Recording</source>
+        <translation>Makro Kaydı Başladı</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6850"/>
         <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="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Macro Recording</source>
         <translation>Makro Kaydediliyor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Enter name of the macro:</source>
         <translation>Makronun ismini gir:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7033"/>
+        <location filename="../QScintilla/Editor.py" line="7046"/>
         <source>File changed</source>
         <translation>Dosya değiştirilmiş</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7213"/>
+        <location filename="../QScintilla/Editor.py" line="7237"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <source>Drop Error</source>
         <translation>Düşme hatası</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <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="7375"/>
+        <location filename="../QScintilla/Editor.py" line="7399"/>
         <source>Resources</source>
         <translation>Kaynaklar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7401"/>
         <source>Add file...</source>
         <translation>Dosya ekle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7379"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add files...</source>
         <translation>Dosyaları ekle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7405"/>
         <source>Add aliased file...</source>
         <translation>Kısaltmalar dosyasına ekle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7384"/>
+        <location filename="../QScintilla/Editor.py" line="7408"/>
         <source>Add localized resource...</source>
         <translation>Yaral kaynak ekle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7388"/>
+        <location filename="../QScintilla/Editor.py" line="7412"/>
         <source>Add resource frame</source>
         <translation>Çerçeve kaynağı ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7407"/>
+        <location filename="../QScintilla/Editor.py" line="7431"/>
         <source>Add file resource</source>
         <translation>Dosya kaynağını ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7423"/>
+        <location filename="../QScintilla/Editor.py" line="7447"/>
         <source>Add file resources</source>
         <translation>Dosya kaynaklarını ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add aliased file resource</source>
         <translation>Kısaltmalar dosyası kaynağını ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <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="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Package Diagram</source>
         <translation>Paket Şeması</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Include class attributes?</source>
         <translation>Sınıf nitelikleri dahil edilsin mi?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
         <source>Imports Diagram</source>
         <translation>Şemayı İçe Aktar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
         <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="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Application Diagram</source>
         <translation>Uygulama Şeması</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Include module names?</source>
         <translation>Modül isimleri dahil edilsin mi?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7884"/>
+        <location filename="../QScintilla/Editor.py" line="7908"/>
         <source>Add to dictionary</source>
         <translation>Sözlüğe ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7886"/>
+        <location filename="../QScintilla/Editor.py" line="7910"/>
         <source>Ignore All</source>
         <translation>Hepsini Yoksay</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6610"/>
+        <location filename="../QScintilla/Editor.py" line="6623"/>
         <source>Warning: {0}</source>
         <translation>Dikkat: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6617"/>
+        <location filename="../QScintilla/Editor.py" line="6630"/>
         <source>Error: {0}</source>
         <translation>Hata: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
         <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="7029"/>
+        <location filename="../QScintilla/Editor.py" line="7042"/>
         <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="920"/>
+        <location filename="../QScintilla/Editor.py" line="926"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1030"/>
+        <location filename="../QScintilla/Editor.py" line="1036"/>
         <source>Load Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1353"/>
+        <location filename="../QScintilla/Editor.py" line="1359"/>
         <source>Next change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1357"/>
+        <location filename="../QScintilla/Editor.py" line="1363"/>
         <source>Previous change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
         <source>Warning</source>
         <translation type="unfinished">Dikkat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6607"/>
+        <location filename="../QScintilla/Editor.py" line="6620"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
+        <location filename="../QScintilla/Editor.py" line="900"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="897"/>
+        <location filename="../QScintilla/Editor.py" line="903"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="984"/>
+        <location filename="../QScintilla/Editor.py" line="990"/>
         <source>Tools</source>
         <translation type="unfinished">Araçlar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1115"/>
+        <location filename="../QScintilla/Editor.py" line="1121"/>
         <source>Re-Open With Encoding</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12182,120 +12210,130 @@
         <translation type="obsolete">&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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="876"/>
         <source>Automatic Completion enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="950"/>
+        <location filename="../QScintilla/Editor.py" line="956"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
         <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="5184"/>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5184"/>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
         <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="8391"/>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8391"/>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="914"/>
+        <location filename="../QScintilla/Editor.py" line="920"/>
         <source>Save Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="953"/>
+        <location filename="../QScintilla/Editor.py" line="959"/>
         <source>Clear Completions Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="880"/>
+        <location filename="../QScintilla/Editor.py" line="886"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1361"/>
+        <location filename="../QScintilla/Editor.py" line="1367"/>
         <source>Clear changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="803"/>
+        <location filename="../QScintilla/Editor.py" line="805"/>
         <source>Execute Selection In Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
+        <location filename="../QScintilla/Editor.py" line="1271"/>
         <source>Toggle all folds</source>
         <translation type="unfinished">Tüm Açkapaları Kapat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1270"/>
+        <location filename="../QScintilla/Editor.py" line="1276"/>
         <source>Toggle all folds (including children)</source>
         <translation type="unfinished">Tüm açkapalar (iç içe olanlar dahil)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1275"/>
-        <source>Toggle current fold</source>
-        <translation type="unfinished">Geçerli açkapayı kapat</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1281"/>
+        <source>Toggle current fold</source>
+        <translation type="unfinished">Geçerli açkapayı kapat</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1287"/>
         <source>Expand (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
-        <source>Collapse (including children)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1292"/>
+        <source>Collapse (including children)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1298"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1173"/>
+        <location filename="../QScintilla/Editor.py" line="1179"/>
         <source>Spell Check Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7023"/>
+        <location filename="../QScintilla/Editor.py" line="7036"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="849"/>
+        <source>Insert Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorAPIsPage</name>
@@ -13565,205 +13603,220 @@
         <translation>Sekme &amp;&amp; Girinti</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="45"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="89"/>
         <source>Tab width:</source>
         <translation>Sekme genişliği:</translation>
     </message>
     <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="99"/>
+        <source>Move to set the tab width.</source>
+        <translation>Sekme genişliği ayarını taşı.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="121"/>
+        <source>Displays the selected tab width.</source>
+        <translation>Seçilen sekme genişliğini göster.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="137"/>
+        <source>Indentation width:</source>
+        <translation>Girinti genişliği:</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="147"/>
+        <source>Move to set the indentation width.</source>
+        <translation>Girinti genişliği ayarını taşı.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="169"/>
+        <source>Displays the selected indentation width.</source>
+        <translation>Seçilen girinti genişliğini göster.</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="48"/>
+        <source>Auto indentation</source>
+        <translation>Otomatik Girintileme</translation>
+    </message>
+    <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="55"/>
-        <source>Move to set the tab width.</source>
-        <translation>Sekme genişliği ayarını taşı.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="77"/>
-        <source>Displays the selected tab width.</source>
-        <translation>Seçilen sekme genişliğini göster.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="93"/>
-        <source>Indentation width:</source>
-        <translation>Girinti genişliği:</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="103"/>
-        <source>Move to set the indentation width.</source>
-        <translation>Girinti genişliği ayarını taşı.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="125"/>
-        <source>Displays the selected indentation width.</source>
-        <translation>Seçilen girinti genişliğini göster.</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="239"/>
-        <source>Auto indentation</source>
-        <translation>Otomatik Girintileme</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="246"/>
         <source>Select whether tab characters are used for indentations.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="249"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="58"/>
         <source>Use tabs for indentations</source>
         <translation>Sekmeyi giriti için kullan</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="236"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="45"/>
         <source>Select whether autoindentation shall be enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="266"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="75"/>
         <source>Select whether tabs shall be converted upon opening the file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="269"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="78"/>
         <source>Convert tabs upon open</source>
         <translation>Açarken sekmeleri çevir</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="256"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="65"/>
         <source>Select whether pressing the tab key indents.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="259"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="68"/>
         <source>Tab key indents</source>
         <translation>Sekme tuşu girintiler</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="371"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="373"/>
         <source>Comments</source>
         <translation>Yorumlar</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="377"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="379"/>
         <source>Select to insert the comment sign at column 0</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="380"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="382"/>
         <source>&lt;b&gt;Insert comment at column 0&lt;/b&gt;&lt;p&gt;Select to insert the comment sign at column 0. Otherwise, the comment sign is inserted at the first non-whitespace position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="383"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="385"/>
         <source>Insert comment at column 0</source>
         <translation>Yorumlayıcının 0 sütununa araya ekle</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="393"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="424"/>
         <source>Virtual Space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="399"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="430"/>
         <source>Virtual space is the space after the last character of a line. It is not allocated unless some text is entered or copied into it. Usage of virtual space can be configured with these selections.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="409"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="440"/>
         <source>Select to enable a rectangular selection to extend into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="412"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="443"/>
         <source>Selection may access virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="419"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="450"/>
         <source>Select to allow the cursor to be moved into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="422"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="453"/>
         <source>Cursor can move into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="158"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="206"/>
         <source>Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="163"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="211"/>
         <source>Tab Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="168"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="216"/>
         <source>Indent Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="196"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="244"/>
         <source>Press to add a language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="203"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="251"/>
         <source>Press to delete the selected language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="210"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="258"/>
         <source>Press to edit the selected language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Tab and Indent Override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Shall the selected entries really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="281"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="283"/>
         <source>Select to enable the source code outline view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="284"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="286"/>
         <source>Source Code Outline</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="293"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="295"/>
         <source>Default Width:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="320"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="302"/>
         <source>Enter the default width of the source code outline view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="313"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="321"/>
         <source>Width Step Size:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="339"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="328"/>
         <source>Enter the amount of pixels the width of the outline should be increased or decreased</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="358"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="360"/>
         <source>Select to show the source code encoding</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="361"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="363"/>
         <source>Show source file encoding</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="395"/>
+        <source>Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="401"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="414"/>
+        <source>Select the docstring style to be used</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorHighlightersPage</name>
@@ -53608,17 +53661,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1627"/>
+        <location filename="../Preferences/__init__.py" line="1629"/>
         <source>Export Preferences</source>
         <translation>Seçenekleri Dışa Aktar</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Import Preferences</source>
         <translation>Seçenekleri İçe Aktar</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54189,312 +54242,312 @@
         <translation>Kaydedilmiş Proje Türü</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>Read project file</source>
         <translation>Proje dosyasını oku</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Proje dosyası &lt;b&gt;{0}&lt;/b&gt; okunamdı.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>Save project file</source>
         <translation>Proje dosyasını kaydet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>Read user project properties</source>
         <translation>Kullanıcı projesinin özelliklerini oku</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>Save user project properties</source>
         <translation>Kullanıcı projesinin özelliklerini kaydet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>Read project session</source>
         <translation>Proje oturumunu oku</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1244"/>
+        <location filename="../Project/Project.py" line="1245"/>
         <source>Please save the project first.</source>
         <translation>Lütfen ilkolarak projeyi kaydedin.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>Save project session</source>
         <translation>Proje oturumunu kaydet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>Delete project session</source>
         <translation>Proje oturumunu sil</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>Read tasks</source>
         <translation>Görevler Okunuyor</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>Save tasks</source>
         <translation>Görevleri kaydet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>Read debugger properties</source>
         <translation>Hata ayıklayıcı özelliklerini oku</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>Save debugger properties</source>
         <translation>Hata ayıklayıcı özelliklerini kaydet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>Delete debugger properties</source>
         <translation>Hata ayıklayıcı özelliklerini sil</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>Add Language</source>
         <translation>Dil Ekle</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>You have to specify a translation pattern first.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>Delete translation</source>
         <translation>Çeviriyi silin</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1677"/>
+        <location filename="../Project/Project.py" line="1678"/>
         <source>Add file</source>
         <translation>Dosya ekle</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1741"/>
+        <location filename="../Project/Project.py" line="1742"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1664"/>
+        <location filename="../Project/Project.py" line="1665"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1809"/>
+        <location filename="../Project/Project.py" line="1810"/>
         <source>The target directory must not be empty.</source>
         <translation>Hedef dizin boş olamaz.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>Add directory</source>
         <translation>Dizin Ekle</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1708"/>
+        <location filename="../Project/Project.py" line="1709"/>
         <source>&lt;p&gt;The source directory doesn&apos;t contain any files belonging to the selected category.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1723"/>
+        <location filename="../Project/Project.py" line="1724"/>
         <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>The source directory must not be empty.</source>
         <translation>Kaynak dizin boş olamaz.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1957"/>
+        <location filename="../Project/Project.py" line="1958"/>
         <source>Rename file</source>
         <translation>Dosya adını değiştir</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>Rename File</source>
         <translation>Dosya adını Değiştir</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>Delete file</source>
         <translation>Dosya sil</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>Delete directory</source>
         <translation>Dizini sil</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>Create project directory</source>
         <translation>Proje dizinin oluştur</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Proje dizini &lt;b&gt;{0}&lt;/b&gt; oluşturulamıyor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>New Project</source>
         <translation>Yeni Proje</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2476"/>
+        <location filename="../Project/Project.py" line="2477"/>
         <source>Add existing files to the project?</source>
         <translation>Var olan dosyalar projeye eklensin mi?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>Select Version Control System</source>
         <translation>Sürüm Kontrol Sistemini Seç</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2603"/>
+        <location filename="../Project/Project.py" line="2604"/>
         <source>Would you like to edit the VCS command options?</source>
         <translation>VCS komut seçeneklerini düzenlemek istiyor musunuz?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>New project</source>
         <translation>Yeni Proje</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2546"/>
+        <location filename="../Project/Project.py" line="2547"/>
         <source>Shall the project file be added to the repository?</source>
         <translation>Proje dosyaları kaynak havuzuna aktarılacak mı?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2582"/>
+        <location filename="../Project/Project.py" line="2583"/>
         <source>None</source>
         <translation>Yok</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2575"/>
+        <location filename="../Project/Project.py" line="2576"/>
         <source>Select version control system for the project</source>
         <translation>proje için sürüm kontrol sistemini seçin</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Translation Pattern</source>
         <translation>Çeviri Kalıbı</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Enter the path pattern for translation files (use &apos;%language%&apos; in place of the language code):</source>
         <translation>Çeviri dosylarınınyol kalıbını giriniz (kullanılan &apos;% dil %&apos;dil kodu):</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>Open project</source>
         <translation>Projeyi aç</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3120"/>
+        <location filename="../Project/Project.py" line="3121"/>
         <source>Project Files (*.e4p)</source>
         <translation>Proje Dosyaları (*.e4p)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save project as</source>
         <translation>projeyi farklı adda kaydet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>Save File</source>
         <translation>Dosyayı Kaydet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>Close Project</source>
         <translation>Projeyi Kapat</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>The current project has unsaved changes.</source>
         <translation>Geçerli projede kaydedilmemiş dosyalar var.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>Syntax errors detected</source>
         <translation>Sözdizimi Hataları tespit edildi</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>The project contains %n file(s) with syntax errors.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -54502,642 +54555,642 @@
         </translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>&amp;New...</source>
         <translation>Ye&amp;ni...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3850"/>
-        <source>Generate a new project</source>
-        <translation>Yeni bir proje üret</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3851"/>
+        <source>Generate a new project</source>
+        <translation>Yeni bir proje üret</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3852"/>
         <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Yeni...&lt;/b&gt;&lt;p&gt;Bu yeni bir proje için bilgilerin girileceği bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>&amp;Open...</source>
         <translation>&amp;Aç...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3864"/>
-        <source>Open an existing project</source>
-        <translation>Var olan bir projeyi aç</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3865"/>
+        <source>Open an existing project</source>
+        <translation>Var olan bir projeyi aç</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3866"/>
         <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aç...&lt;/b&gt;&lt;p&gt;Bu varolan bir projeyi açar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>Close project</source>
         <translation>Projeyi kapat</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>&amp;Close</source>
         <translation>&amp;Kapat</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3876"/>
-        <source>Close the current project</source>
-        <translation>Geçerli projeyi kapat</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3877"/>
+        <source>Close the current project</source>
+        <translation>Geçerli projeyi kapat</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3878"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kapat&lt;/b&gt;&lt;p&gt;Bu geçerli projeyi kapatır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3884"/>
+        <location filename="../Project/Project.py" line="3885"/>
         <source>Save project</source>
         <translation>Projeyi kaydet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>&amp;Save</source>
         <translation>&amp;Kaydet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3888"/>
-        <source>Save the current project</source>
-        <translation>Geçerli projeyi kapat</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3889"/>
+        <source>Save the current project</source>
+        <translation>Geçerli projeyi kapat</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3890"/>
         <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kaydet&lt;/b&gt;&lt;p&gt;Bu geçerli projeyi kaydeder.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save &amp;as...</source>
         <translation>Farklı k&amp;aydet...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3900"/>
+        <location filename="../Project/Project.py" line="3901"/>
         <source>Save the current project to a new file</source>
         <translation>Geçerli projeyi yeni bir dosya olarak kaydet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3902"/>
+        <location filename="../Project/Project.py" line="3903"/>
         <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Farklı kaydet&lt;/b&gt;&lt;p&gt;Bu geçerli projeyi yeni bir dosya olarak kaydeder.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add files to project</source>
         <translation>Projeye dosyalar ekle</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add &amp;files...</source>
         <translation>Dosyaları &amp;ekle...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3916"/>
+        <location filename="../Project/Project.py" line="3917"/>
         <source>Add files to the current project</source>
         <translation>Geçerli projeye dosyalar ekle</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3918"/>
+        <location filename="../Project/Project.py" line="3919"/>
         <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dosya ekle...&lt;/b&gt;&lt;p&gt;Bu geçerli projeye bir dosya eklemek için bir diyalog açar. Alana belirlenmiş uzantıda bir dosya eklenir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory to project</source>
         <translation>Projeye dizin ekle</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory...</source>
         <translation>Dizin ekle...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3932"/>
+        <location filename="../Project/Project.py" line="3933"/>
         <source>Add a directory to the current project</source>
         <translation>Geçerli projeye bir dizin ekleyiniz</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3934"/>
+        <location filename="../Project/Project.py" line="3935"/>
         <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dizin Ekle...&lt;/b&gt;&lt;p&gt;Bu geçerli projeye bir dizin eklemek için bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add translation to project</source>
         <translation>Projeye çeviri ekle</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add &amp;translation...</source>
         <translation>Çeviri &amp;ekle...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3947"/>
+        <location filename="../Project/Project.py" line="3948"/>
         <source>Add a translation to the current project</source>
         <translation>Geçerli projeye çeviri ekle</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3949"/>
+        <location filename="../Project/Project.py" line="3950"/>
         <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Çeviri ekle...&lt;/b&gt;&lt;p&gt;Bu geçerli projeye bir çeviri eklemek için bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Search new files</source>
         <translation>Yeni dosyaları ara</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Searc&amp;h new files...</source>
         <translation>Yeni dosyaları a&amp;ra...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3961"/>
+        <location filename="../Project/Project.py" line="3962"/>
         <source>Search new files in the project directory.</source>
         <translation>Proje dizininde yeni dosyaları ara.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>Project properties</source>
         <translation>Proje özellikleri</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>&amp;Properties...</source>
         <translation>&amp;Özellikler...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3992"/>
-        <source>Show the project properties</source>
-        <translation>Proje özelliklerini göster</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3993"/>
+        <source>Show the project properties</source>
+        <translation>Proje özelliklerini göster</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3994"/>
         <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>User project properties</source>
         <translation>Kullanıcı projesi özellikleri</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>&amp;User Properties...</source>
         <translation>K&amp;ullanıcı Özellikleri...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4005"/>
+        <location filename="../Project/Project.py" line="4006"/>
         <source>Show the user specific project properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4007"/>
+        <location filename="../Project/Project.py" line="4008"/>
         <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations</source>
         <translation>Dosyatipi Birleştirme</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations...</source>
         <translation>Dosyatipi Birleştirme...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4019"/>
+        <location filename="../Project/Project.py" line="4020"/>
         <source>Show the project filetype associations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4037"/>
+        <location filename="../Project/Project.py" line="4038"/>
         <source>Show the project lexer associations (overriding defaults)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4039"/>
+        <location filename="../Project/Project.py" line="4040"/>
         <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger Properties</source>
         <translation>Hata Ayıklayıcı Özellikleri</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger &amp;Properties...</source>
         <translation>Hata Ayıklayıcı &amp;Özellikleri...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4055"/>
-        <source>Show the debugger properties</source>
-        <translation>Hata ayıklayıcı özelliklerini göster</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4056"/>
+        <source>Show the debugger properties</source>
+        <translation>Hata ayıklayıcı özelliklerini göster</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4057"/>
         <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>Load</source>
         <translation>Yükle</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>&amp;Load</source>
         <translation>Yük&amp;le</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4068"/>
-        <source>Load the debugger properties</source>
-        <translation>Hata ayıklayıcı özelliklerini yükle</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4069"/>
+        <source>Load the debugger properties</source>
+        <translation>Hata ayıklayıcı özelliklerini yükle</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4070"/>
         <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>Save</source>
         <translation>Kaydet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4080"/>
-        <source>Save the debugger properties</source>
-        <translation>Hata ayıklayıcı özelliklerini kaydet</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4081"/>
+        <source>Save the debugger properties</source>
+        <translation>Hata ayıklayıcı özelliklerini kaydet</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4082"/>
         <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>Delete</source>
         <translation>Sil</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>&amp;Delete</source>
         <translation>&amp;Sil</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4092"/>
-        <source>Delete the debugger properties</source>
-        <translation>Hata ayıklayıcı özelliklerini sil</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4093"/>
+        <source>Delete the debugger properties</source>
+        <translation>Hata ayıklayıcı özelliklerini sil</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4094"/>
         <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>Reset</source>
         <translation>Başadön</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>&amp;Reset</source>
         <translation>Başad&amp;ön</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4105"/>
-        <source>Reset the debugger properties</source>
-        <translation>Hata ayıklayıcı özelliklerini başa döndür</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4106"/>
+        <source>Reset the debugger properties</source>
+        <translation>Hata ayıklayıcı özelliklerini başa döndür</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4107"/>
         <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4115"/>
+        <location filename="../Project/Project.py" line="4116"/>
         <source>Load session</source>
         <translation>Oturum yükleniyor</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4119"/>
-        <source>Load the projects session file.</source>
-        <translation>Projelerin oturm dosyasını yükle.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4120"/>
+        <source>Load the projects session file.</source>
+        <translation>Projelerin oturm dosyasını yükle.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4121"/>
         <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4133"/>
+        <location filename="../Project/Project.py" line="4134"/>
         <source>Save session</source>
         <translation>Oturumu kaydet</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4137"/>
-        <source>Save the projects session file.</source>
-        <translation>Proje oturum dosyasını kaydet.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4138"/>
+        <source>Save the projects session file.</source>
+        <translation>Proje oturum dosyasını kaydet.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4139"/>
         <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4151"/>
+        <location filename="../Project/Project.py" line="4152"/>
         <source>Delete session</source>
         <translation>Oturumu sil</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4155"/>
-        <source>Delete the projects session file.</source>
-        <translation>Proje oturum dosyasını sil.</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4156"/>
+        <source>Delete the projects session file.</source>
+        <translation>Proje oturum dosyasını sil.</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4157"/>
         <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
         <translation>&lt;b&gt;Oturumu Sil&lt;/b&gt;&lt;p&gt;Bu proje dosya oturumunu siler&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>Code Metrics</source>
         <translation>Metrik Kod</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>&amp;Code Metrics...</source>
         <translation>Me&amp;trik Kod...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4169"/>
+        <location filename="../Project/Project.py" line="4170"/>
         <source>Show some code metrics for the project.</source>
         <translation>Proje için bazı metrik kodları göster.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4171"/>
+        <location filename="../Project/Project.py" line="4172"/>
         <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Metrik Kodlar...&lt;/b&gt;&lt;p&gt;Bu proje içindeki tüm Python dosyalarının bazı metrik kodlarını gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Python Code Coverage</source>
         <translation>Python Kod Koruyucu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Code Co&amp;verage...</source>
         <translation>Kod Koru&amp;yucu...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4183"/>
+        <location filename="../Project/Project.py" line="4184"/>
         <source>Show code coverage information for the project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4185"/>
+        <location filename="../Project/Project.py" line="4186"/>
         <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Profile Data</source>
         <translation>Veri Kesiti</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4193"/>
+        <location filename="../Project/Project.py" line="4194"/>
         <source>&amp;Profile Data...</source>
         <translation>&amp;Veri kesiti...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4197"/>
+        <location filename="../Project/Project.py" line="4198"/>
         <source>Show profiling data for the project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4199"/>
+        <location filename="../Project/Project.py" line="4200"/>
         <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Application Diagram</source>
         <translation>Uygulama Şeması</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4208"/>
+        <location filename="../Project/Project.py" line="4209"/>
         <source>&amp;Application Diagram...</source>
         <translation>Uygulama Şem&amp;ası...</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4212"/>
+        <location filename="../Project/Project.py" line="4213"/>
         <source>Show a diagram of the project.</source>
         <translation>Projenin bir şemasını göster.</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4214"/>
+        <location filename="../Project/Project.py" line="4215"/>
         <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Uygulama Şeması...&lt;/b&gt;&lt;p&gt;Bu projenin bir şemasını gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>Create Package List</source>
         <translation>Paket Listesini Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4237"/>
+        <location filename="../Project/Project.py" line="4238"/>
         <source>Create &amp;Package List</source>
         <translation type="unfinished">Eklenti &amp;Arşivi Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>Create Plugin Archive</source>
         <translation>Eklenti Arşivi Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4253"/>
+        <location filename="../Project/Project.py" line="4254"/>
         <source>Create Plugin &amp;Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4339"/>
-        <source>&amp;Project</source>
-        <translation>&amp;Proje</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4340"/>
+        <source>&amp;Project</source>
+        <translation>&amp;Proje</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4341"/>
         <source>Open &amp;Recent Projects</source>
         <translation>Geçmiş P&amp;rojeleri Aç</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4345"/>
+        <location filename="../Project/Project.py" line="4346"/>
         <source>&amp;Version Control</source>
         <translation>S&amp;ürüm Kontrol</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4349"/>
+        <location filename="../Project/Project.py" line="4350"/>
         <source>Chec&amp;k</source>
         <translation>&amp;Kontrol</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4351"/>
-        <source>Sho&amp;w</source>
-        <translation>G&amp;öster</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4352"/>
-        <source>&amp;Diagrams</source>
-        <translation>Şemalar &amp;D</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4341"/>
-        <source>Session</source>
-        <translation>Oturum</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4354"/>
-        <source>Source &amp;Documentation</source>
-        <translation>Kaynak Belgeleme &amp;D</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4342"/>
-        <source>Debugger</source>
-        <translation>Hata Ayıklayıcı</translation>
+        <source>Sho&amp;w</source>
+        <translation>G&amp;öster</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="4353"/>
+        <source>&amp;Diagrams</source>
+        <translation>Şemalar &amp;D</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4342"/>
+        <source>Session</source>
+        <translation>Oturum</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4355"/>
+        <source>Source &amp;Documentation</source>
+        <translation>Kaynak Belgeleme &amp;D</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4343"/>
+        <source>Debugger</source>
+        <translation>Hata Ayıklayıcı</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4354"/>
         <source>Pac&amp;kagers</source>
         <translation>Pa&amp;ketleyici</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4479"/>
+        <location filename="../Project/Project.py" line="4480"/>
         <source>Project</source>
         <translation>Proje</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4545"/>
+        <location filename="../Project/Project.py" line="4546"/>
         <source>&amp;Clear</source>
         <translation>T&amp;emizle</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>Search New Files</source>
         <translation>Yeni Dosyaları Ara</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>There were no new files found to be added.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>Version Control System</source>
         <translation>Sürüm Kontrol Sistemi</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4996"/>
+        <location filename="../Project/Project.py" line="4997"/>
         <source>Coverage Data</source>
         <translation>Veri Kapsamı</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5046"/>
+        <location filename="../Project/Project.py" line="5047"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>Bugeçerli projede tanımlanan ana betik değil. Durduruluyor</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Code Coverage</source>
         <translation>Kod Koruyucu</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Please select a coverage file</source>
         <translation>Lütfen bir koruyucu dosya seçiniz</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Please select a profile file</source>
         <translation>Lütfen kesit dosyasını seçiniz</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Include module names?</source>
         <translation>Modül isimleri dahil edilsin mi?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5267"/>
+        <location filename="../Project/Project.py" line="5268"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5337"/>
+        <location filename="../Project/Project.py" line="5338"/>
         <source>The project does not have a main script defined. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5477"/>
+        <location filename="../Project/Project.py" line="5478"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5548"/>
+        <location filename="../Project/Project.py" line="5549"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>Create main script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>&lt;p&gt;The mainscript &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>Load Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>&amp;Load Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4226"/>
+        <location filename="../Project/Project.py" line="4227"/>
         <source>Load a diagram from file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4228"/>
+        <location filename="../Project/Project.py" line="4229"/>
         <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55162,12 +55215,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4854"/>
+        <location filename="../Project/Project.py" line="4855"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55182,193 +55235,193 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>Create project management directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Alt+Ctrl+P</source>
         <comment>Project|Search Project File</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3978"/>
+        <location filename="../Project/Project.py" line="3979"/>
         <source>Search for a file in the project list of files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3980"/>
+        <location filename="../Project/Project.py" line="3981"/>
         <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5373"/>
+        <location filename="../Project/Project.py" line="5374"/>
         <source>Create Plugin Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (Snapshot)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (&amp;Snapshot)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5351"/>
+        <location filename="../Project/Project.py" line="5352"/>
         <source>Select package lists:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Creating plugin archives...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Abort</source>
         <translation type="unfinished">Vazgeç</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>%v/%m Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5385"/>
+        <location filename="../Project/Project.py" line="5386"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5362"/>
+        <location filename="../Project/Project.py" line="5363"/>
         <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5413"/>
+        <location filename="../Project/Project.py" line="5414"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the&apos;; initial_list&apos; line of the header.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3963"/>
+        <location filename="../Project/Project.py" line="3964"/>
         <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4021"/>
+        <location filename="../Project/Project.py" line="4022"/>
         <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>Create Makefile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>Execute Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4291"/>
+        <location filename="../Project/Project.py" line="4292"/>
         <source>&amp;Execute Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4295"/>
+        <location filename="../Project/Project.py" line="4296"/>
         <source>Perform a &apos;make&apos; run.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4297"/>
+        <location filename="../Project/Project.py" line="4298"/>
         <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a &apos;make&apos; run to rebuild the configured target.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5755"/>
+        <location filename="../Project/Project.py" line="5756"/>
         <source>Test for Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4305"/>
+        <location filename="../Project/Project.py" line="4306"/>
         <source>&amp;Test for Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4309"/>
+        <location filename="../Project/Project.py" line="4310"/>
         <source>Question &apos;make&apos;, if a rebuild is needed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4311"/>
+        <location filename="../Project/Project.py" line="4312"/>
         <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions &apos;make&apos;, if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4356"/>
+        <location filename="../Project/Project.py" line="4357"/>
         <source>Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5703"/>
+        <location filename="../Project/Project.py" line="5704"/>
         <source>The make process did not start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5748"/>
+        <location filename="../Project/Project.py" line="5749"/>
         <source>The make process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5758"/>
+        <location filename="../Project/Project.py" line="5759"/>
         <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5763"/>
+        <location filename="../Project/Project.py" line="5764"/>
         <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>The makefile contains errors.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55383,7 +55436,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4344"/>
+        <location filename="../Project/Project.py" line="4345"/>
         <source>Project-T&amp;ools</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55413,47 +55466,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4242"/>
+        <location filename="../Project/Project.py" line="4243"/>
         <source>Create an initial PKGLIST file for an eric plugin.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4244"/>
+        <location filename="../Project/Project.py" line="4245"/>
         <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4258"/>
+        <location filename="../Project/Project.py" line="4259"/>
         <source>Create eric plugin archive files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4260"/>
+        <location filename="../Project/Project.py" line="4261"/>
         <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4275"/>
+        <location filename="../Project/Project.py" line="4276"/>
         <source>Create eric plugin archive files (snapshot releases).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4277"/>
+        <location filename="../Project/Project.py" line="4278"/>
         <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5441"/>
+        <location filename="../Project/Project.py" line="5442"/>
         <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5496"/>
+        <location filename="../Project/Project.py" line="5497"/>
         <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5504"/>
+        <location filename="../Project/Project.py" line="5505"/>
         <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57395,67 +57448,67 @@
         <translation>Windows/DOS</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <location filename="../Project/PropertiesDialog.ui" line="298"/>
         <source>&amp;Author:</source>
         <translation>Y&amp;azar:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="294"/>
+        <location filename="../Project/PropertiesDialog.ui" line="308"/>
         <source>Enter authors name</source>
         <translation>Yazarların adını gir</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="297"/>
+        <location filename="../Project/PropertiesDialog.ui" line="311"/>
         <source>&lt;b&gt;Author&lt;/b&gt;
 &lt;p&gt;Enter the name of the author.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Yazar&lt;/b&gt;&lt;p&gt;Yazarın adını giriniz.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="305"/>
+        <location filename="../Project/PropertiesDialog.ui" line="319"/>
         <source>&amp;Email:</source>
         <translation>&amp;E-Posta:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="315"/>
+        <location filename="../Project/PropertiesDialog.ui" line="329"/>
         <source>Enter authors email</source>
         <translation>Yazarların emailini gir</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="318"/>
+        <location filename="../Project/PropertiesDialog.ui" line="332"/>
         <source>&lt;b&gt;Email&lt;/b&gt;
 &lt;p&gt;Enter the email address of the author&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eposta&lt;/b&gt;
 &lt;p&gt;Yazarın eposta adresini giriniz&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="326"/>
+        <location filename="../Project/PropertiesDialog.ui" line="340"/>
         <source>&amp;Description:</source>
         <translation>A&amp;çıklama:</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="339"/>
+        <location filename="../Project/PropertiesDialog.ui" line="353"/>
         <source>Enter description</source>
         <translation>Açıklamayı gir</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="342"/>
+        <location filename="../Project/PropertiesDialog.ui" line="356"/>
         <source>&lt;b&gt;Description&lt;/b&gt;
 &lt;p&gt;Enter a short description for the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Açıklama&lt;/b&gt;
 &lt;p&gt;Proje için kısa bir açıklama giriniz.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="383"/>
+        <location filename="../Project/PropertiesDialog.ui" line="397"/>
         <source>Press to show information about the repository</source>
         <translation>Kayna havuzu hakkında bilgi göstermek için basınız</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="386"/>
+        <location filename="../Project/PropertiesDialog.ui" line="400"/>
         <source>Show &amp;Repository Info</source>
         <translation>Kaynak Havuzu Bilgisini Göste&amp;r</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="389"/>
+        <location filename="../Project/PropertiesDialog.ui" line="403"/>
         <source>Alt+R</source>
         <translation>Alt+R</translation>
     </message>
@@ -57472,27 +57525,27 @@
 &lt;p&gt;Çokluproje için kısa bir açıklama giriniz.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="113"/>
+        <location filename="../Project/PropertiesDialog.py" line="121"/>
         <source>The project is version controlled by &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation>Proje sürümü &lt;b&gt;{0}&lt;/b&gt; tarafından yapılmaktadır.</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="119"/>
+        <location filename="../Project/PropertiesDialog.py" line="127"/>
         <source>The project is not version controlled.</source>
         <translation>Projenin sürüm kontrolü yapılmadı.</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="58"/>
+        <location filename="../Project/PropertiesDialog.py" line="66"/>
         <source>Source Files ({0});;All Files (*)</source>
         <translation>Kaynak Dosyaları ({0});; Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="358"/>
+        <location filename="../Project/PropertiesDialog.ui" line="372"/>
         <source>Select to create a version controlled project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="361"/>
+        <location filename="../Project/PropertiesDialog.ui" line="375"/>
         <source>Version Controlled Project</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57511,6 +57564,21 @@
         <source>Press to open a dialog to enter the &apos;make&apos; parameters</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="291"/>
+        <source>Select the docstring style for the project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.py" line="50"/>
+        <source>None</source>
+        <translation type="unfinished">Yok</translation>
+    </message>
 </context>
 <context>
     <name>ProtobufPage</name>
--- a/eric6/i18n/eric6_zh_CN.ts	Fri Jan 22 14:14:15 2021 +0100
+++ b/eric6/i18n/eric6_zh_CN.ts	Fri Jan 22 16:48:43 2021 +0100
@@ -8835,7 +8835,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="86"/>
         <source>docstring summary does not end with a period</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8870,7 +8870,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
         <source>docstring summary is not followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8880,92 +8880,92 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
         <source>private function/method is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="73"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="76"/>
         <source>private class is missing a docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="77"/>
-        <source>leading quotes of docstring not on separate line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="80"/>
+        <source>leading quotes of docstring not on separate line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="83"/>
         <source>trailing quotes of docstring not on separate line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="87"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="90"/>
         <source>docstring does not contain a @return line but function/method returns something</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="91"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="94"/>
         <source>docstring contains a @return line but function/method doesn&apos;t return anything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="103"/>
-        <source>docstring does not contain enough @param/@keyparam lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="106"/>
-        <source>docstring contains too many @param/@keyparam lines</source>
+        <source>docstring does not contain enough @param/@keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="109"/>
-        <source>keyword only arguments must be documented with @keyparam lines</source>
+        <source>docstring contains too many @param/@keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="112"/>
-        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <source>keyword only arguments must be documented with @keyparam lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="115"/>
+        <source>order of @param/@keyparam lines does not match the function/method signature</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="118"/>
         <source>class docstring is preceded by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="117"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="120"/>
         <source>class docstring is followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="119"/>
-        <source>function/method docstring is preceded by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="122"/>
+        <source>function/method docstring is preceded by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="125"/>
         <source>function/method docstring is followed by a blank line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="128"/>
-        <source>last paragraph of docstring is followed by a blank line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="131"/>
+        <source>last paragraph of docstring is followed by a blank line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="134"/>
         <source>docstring does not contain a @exception line but function/method raises an exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="135"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="138"/>
         <source>docstring contains a @exception line but function/method doesn&apos;t raise an exception</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="158"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="161"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8975,42 +8975,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="85"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="88"/>
         <source>docstring summary does not start with &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="139"/>
-        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="142"/>
-        <source>documented exception &apos;{0}&apos; is not raised</source>
+        <source>raised exception &apos;{0}&apos; is not documented in docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="145"/>
-        <source>docstring does not contain a @signal line but class defines signals</source>
+        <source>documented exception &apos;{0}&apos; is not raised</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="148"/>
-        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
+        <source>docstring does not contain a @signal line but class defines signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="151"/>
-        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <source>docstring contains a @signal line but class doesn&apos;t define signals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="154"/>
+        <source>defined signal &apos;{0}&apos; is not documented in docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="157"/>
         <source>documented signal &apos;{0}&apos; is not defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="75"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="78"/>
         <source>class docstring is still a default string</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9025,15 +9025,43 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="95"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="98"/>
         <source>docstring does not contain a @yield line but function/method yields something</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="99"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="102"/>
         <source>docstring contains a @yield line but function/method doesn&apos;t yield anything</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/translations.py" line="70"/>
+        <source>function docstring still contains some placeholders</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
+    <name>DocstringGenerator</name>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="42"/>
+        <source>Eric</source>
+        <translation type="unfinished">Eric</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="44"/>
+        <source>NumPy</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="46"/>
+        <source>Google</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/DocstringGenerator/__init__.py" line="48"/>
+        <source>Sphinx</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DotDesktopListSelectionDialog</name>
@@ -11326,930 +11354,940 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3110"/>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
         <source>Open File</source>
         <translation>打开文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="468"/>
+        <location filename="../QScintilla/Editor.py" line="470"/>
         <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
         <translation>&lt;b&gt;源代码编辑器窗口&lt;/b&gt;&lt;p&gt;该窗口用于显示和编辑源文件。可以打开任意多个窗口。文件名显示在窗口标题栏中。&lt;/p&gt;&lt;p&gt;要设置断点只需在行号与折叠标记之间的空白处点击即可。通过页边空白的上下文菜单可进行编辑。&lt;/p&gt;&lt;p&gt;要设置书签只需按住 Shift 键再在行号与折叠标记之间的空白处点击即可。&lt;/p&gt;&lt;p&gt;以上行为都可能通过上下文菜单进行反转。&lt;/p&gt;&lt;p&gt;按住 Ctrl 再语法错误标记上点击可显示该错误的部分信息。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="783"/>
+        <location filename="../QScintilla/Editor.py" line="785"/>
         <source>Undo</source>
         <translation>撤消</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="786"/>
+        <location filename="../QScintilla/Editor.py" line="788"/>
         <source>Redo</source>
         <translation>重做</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="789"/>
+        <location filename="../QScintilla/Editor.py" line="791"/>
         <source>Revert to last saved state</source>
         <translation>还原到最后保存的状态</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="793"/>
+        <location filename="../QScintilla/Editor.py" line="795"/>
         <source>Cut</source>
         <translation>剪切</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="796"/>
+        <location filename="../QScintilla/Editor.py" line="798"/>
         <source>Copy</source>
         <translation>复制</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="799"/>
+        <location filename="../QScintilla/Editor.py" line="801"/>
         <source>Paste</source>
         <translation>粘贴</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="807"/>
+        <location filename="../QScintilla/Editor.py" line="809"/>
         <source>Indent</source>
         <translation>缩进</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="810"/>
+        <location filename="../QScintilla/Editor.py" line="812"/>
         <source>Unindent</source>
         <translation>取消缩进</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="813"/>
+        <location filename="../QScintilla/Editor.py" line="815"/>
         <source>Comment</source>
         <translation>注释</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="816"/>
+        <location filename="../QScintilla/Editor.py" line="818"/>
         <source>Uncomment</source>
         <translation>取消注释</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Stream Comment</source>
         <translation>流注释</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Box Comment</source>
         <translation>块注释</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="826"/>
-        <source>Select to brace</source>
-        <translation>选择括号内容</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="828"/>
+        <source>Select to brace</source>
+        <translation>选择括号内容</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Select all</source>
         <translation>全选</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="829"/>
+        <location filename="../QScintilla/Editor.py" line="831"/>
         <source>Deselect all</source>
         <translation>全部取消选择</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7881"/>
+        <location filename="../QScintilla/Editor.py" line="7905"/>
         <source>Check spelling...</source>
         <translation>正在进行拼写检查…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="837"/>
+        <location filename="../QScintilla/Editor.py" line="839"/>
         <source>Check spelling of selection...</source>
         <translation>正在对所选内容进行拼写检查…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="847"/>
+        <location filename="../QScintilla/Editor.py" line="853"/>
         <source>Shorten empty lines</source>
         <translation>缩减空行</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="854"/>
+        <location filename="../QScintilla/Editor.py" line="860"/>
         <source>Use Monospaced Font</source>
         <translation>使用单空格字体</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="859"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Autosave enabled</source>
         <translation>允许自动保存</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="869"/>
         <source>Typing aids enabled</source>
         <translation>允许输入辅助</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="902"/>
-        <source>Close</source>
-        <translation>关闭</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="908"/>
+        <source>Close</source>
+        <translation>关闭</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="914"/>
         <source>Save</source>
         <translation>保存</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="911"/>
+        <location filename="../QScintilla/Editor.py" line="917"/>
         <source>Save As...</source>
         <translation>另存为…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
+        <location filename="../QScintilla/Editor.py" line="930"/>
         <source>Print Preview</source>
         <translation>打印预览</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="933"/>
         <source>Print</source>
         <translation>打印</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="956"/>
+        <location filename="../QScintilla/Editor.py" line="962"/>
         <source>Complete from Document</source>
         <translation type="unfinished">从文档</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="958"/>
+        <location filename="../QScintilla/Editor.py" line="964"/>
         <source>Complete from APIs</source>
         <translation type="unfinished">从 APIs</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="960"/>
+        <location filename="../QScintilla/Editor.py" line="966"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished">从文档和 APIs</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="878"/>
+        <location filename="../QScintilla/Editor.py" line="884"/>
         <source>Calltip</source>
         <translation>调用提示</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="974"/>
+        <location filename="../QScintilla/Editor.py" line="980"/>
         <source>Check</source>
         <translation>检查</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="994"/>
+        <location filename="../QScintilla/Editor.py" line="1000"/>
         <source>Show</source>
         <translation>显示</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="996"/>
-        <source>Code metrics...</source>
-        <translation>代码度量…</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="997"/>
-        <source>Code coverage...</source>
-        <translation>代码覆盖率…</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="999"/>
-        <source>Show code coverage annotations</source>
-        <translation>显示代码覆盖率注解</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1002"/>
-        <source>Hide code coverage annotations</source>
-        <translation>隐藏代码覆盖率注解</translation>
+        <source>Code metrics...</source>
+        <translation>代码度量…</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1003"/>
+        <source>Code coverage...</source>
+        <translation>代码覆盖率…</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1005"/>
+        <source>Show code coverage annotations</source>
+        <translation>显示代码覆盖率注解</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1008"/>
+        <source>Hide code coverage annotations</source>
+        <translation>隐藏代码覆盖率注解</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1011"/>
         <source>Profile data...</source>
         <translation>剖析数据…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
-        <source>Diagrams</source>
-        <translation>图表</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1020"/>
-        <source>Class Diagram...</source>
-        <translation>类图…</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1022"/>
-        <source>Package Diagram...</source>
-        <translation>程序包图…</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1024"/>
-        <source>Imports Diagram...</source>
-        <translation>引用图…</translation>
+        <source>Diagrams</source>
+        <translation>图表</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1026"/>
+        <source>Class Diagram...</source>
+        <translation>类图…</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1028"/>
+        <source>Package Diagram...</source>
+        <translation>程序包图…</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1030"/>
+        <source>Imports Diagram...</source>
+        <translation>引用图…</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1032"/>
         <source>Application Diagram...</source>
         <translation>应用程序图…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1044"/>
+        <location filename="../QScintilla/Editor.py" line="1050"/>
         <source>Languages</source>
         <translation>语言</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1177"/>
+        <location filename="../QScintilla/Editor.py" line="1183"/>
         <source>No Language</source>
         <translation>无语言</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1073"/>
+        <location filename="../QScintilla/Editor.py" line="1079"/>
         <source>Guessed</source>
         <translation>猜测</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1413"/>
+        <location filename="../QScintilla/Editor.py" line="1419"/>
         <source>Alternatives</source>
         <translation>备选</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1093"/>
+        <location filename="../QScintilla/Editor.py" line="1099"/>
         <source>Encodings</source>
         <translation>编码</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1134"/>
+        <location filename="../QScintilla/Editor.py" line="1140"/>
         <source>End-of-Line Type</source>
         <translation>行尾类型</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1138"/>
+        <location filename="../QScintilla/Editor.py" line="1144"/>
         <source>Unix</source>
         <translation>Unix</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1145"/>
+        <location filename="../QScintilla/Editor.py" line="1151"/>
         <source>Windows</source>
         <translation>Windows</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1152"/>
+        <location filename="../QScintilla/Editor.py" line="1158"/>
         <source>Macintosh</source>
         <translation>Macintosh</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1202"/>
+        <location filename="../QScintilla/Editor.py" line="1208"/>
         <source>Export as</source>
         <translation>导出为</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1224"/>
-        <source>Toggle bookmark</source>
-        <translation>切换书签</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1226"/>
-        <source>Next bookmark</source>
-        <translation>下一个书签</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1228"/>
-        <source>Previous bookmark</source>
-        <translation>上一个书签</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1230"/>
+        <source>Toggle bookmark</source>
+        <translation>切换书签</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1232"/>
+        <source>Next bookmark</source>
+        <translation>下一个书签</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1234"/>
+        <source>Previous bookmark</source>
+        <translation>上一个书签</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1236"/>
         <source>Clear all bookmarks</source>
         <translation>清除所有书签</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1239"/>
+        <location filename="../QScintilla/Editor.py" line="1245"/>
         <source>Toggle breakpoint</source>
         <translation>切换断点</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1241"/>
+        <location filename="../QScintilla/Editor.py" line="1247"/>
         <source>Toggle temporary breakpoint</source>
         <translation>切换临时断点</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1244"/>
+        <location filename="../QScintilla/Editor.py" line="1250"/>
         <source>Edit breakpoint...</source>
         <translation>编辑断点…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5613"/>
+        <location filename="../QScintilla/Editor.py" line="5626"/>
         <source>Enable breakpoint</source>
         <translation>允许断点</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1249"/>
+        <location filename="../QScintilla/Editor.py" line="1255"/>
         <source>Next breakpoint</source>
         <translation>下一个断点</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1251"/>
+        <location filename="../QScintilla/Editor.py" line="1257"/>
         <source>Previous breakpoint</source>
         <translation>上一个断点</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1256"/>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
         <source>Clear all breakpoints</source>
         <translation>清除所有断点</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1304"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Goto syntax error</source>
         <translation>转到语法错误处</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1314"/>
         <source>Show syntax error message</source>
         <translation>显示语法错误消息</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1313"/>
+        <location filename="../QScintilla/Editor.py" line="1319"/>
         <source>Clear syntax error</source>
         <translation>清除语法错误</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1335"/>
+        <location filename="../QScintilla/Editor.py" line="1341"/>
         <source>Next uncovered line</source>
         <translation>下一个未覆盖行</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1339"/>
+        <location filename="../QScintilla/Editor.py" line="1345"/>
         <source>Previous uncovered line</source>
         <translation>上一个未覆盖行</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1344"/>
+        <location filename="../QScintilla/Editor.py" line="1350"/>
         <source>Next task</source>
         <translation>下一个任务</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1348"/>
+        <location filename="../QScintilla/Editor.py" line="1354"/>
         <source>Previous task</source>
         <translation>上一个任务</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
         <source>Export source</source>
         <translation>导出源代码</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1398"/>
+        <location filename="../QScintilla/Editor.py" line="1404"/>
         <source>No export format given. Aborting...</source>
         <translation>没有给定导出格式。终止…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
         <source>Pygments Lexer</source>
         <translation>Pygments 词法分析器</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1435"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>选择要应用的 Pygments 词法分析器。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>Modification of Read Only file</source>
         <translation>只读文件的改变</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1965"/>
+        <location filename="../QScintilla/Editor.py" line="1971"/>
         <source>You are attempting to change a read only file. Please save to a different file first.</source>
         <translation>试图改变只读文件。请先保存到另一个文件中。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2675"/>
+        <location filename="../QScintilla/Editor.py" line="2681"/>
         <source>Printing...</source>
         <translation>打印中…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2692"/>
+        <location filename="../QScintilla/Editor.py" line="2698"/>
         <source>Printing completed</source>
         <translation>打印已完成</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2694"/>
+        <location filename="../QScintilla/Editor.py" line="2700"/>
         <source>Error while printing</source>
         <translation>打印时出错</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2697"/>
+        <location filename="../QScintilla/Editor.py" line="2703"/>
         <source>Printing aborted</source>
         <translation>打印失败</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <source>File Modified</source>
         <translation>文件已改变</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
         <source>Save File</source>
         <translation>保存文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion</source>
         <translation>自动完成</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4775"/>
+        <location filename="../QScintilla/Editor.py" line="4781"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation>自动完成无效,没有设定自动完成源。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5616"/>
+        <location filename="../QScintilla/Editor.py" line="5629"/>
         <source>Disable breakpoint</source>
         <translation>去除断点</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <source>Code Coverage</source>
         <translation>代码覆盖率</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5991"/>
+        <location filename="../QScintilla/Editor.py" line="6004"/>
         <source>Please select a coverage file</source>
         <translation>请选择一个覆盖率文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>Show Code Coverage Annotations</source>
         <translation>显示代码覆盖率注解</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6047"/>
+        <location filename="../QScintilla/Editor.py" line="6060"/>
         <source>All lines have been covered.</source>
         <translation>所有行均被已覆盖。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6054"/>
+        <location filename="../QScintilla/Editor.py" line="6067"/>
         <source>There is no coverage file available.</source>
         <translation>没有有效的覆盖率文件。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Profile Data</source>
         <translation>剖析数据</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6171"/>
+        <location filename="../QScintilla/Editor.py" line="6184"/>
         <source>Please select a profile file</source>
         <translation>请选择一个剖析文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <source>Syntax Error</source>
         <translation>语法错误</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6333"/>
+        <location filename="../QScintilla/Editor.py" line="6346"/>
         <source>No syntax error message available.</source>
         <translation>语法错误消息无效。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Macro Name</source>
         <translation>宏名称</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6722"/>
+        <location filename="../QScintilla/Editor.py" line="6735"/>
         <source>Select a macro name:</source>
         <translation>选择一个宏名称:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6750"/>
+        <location filename="../QScintilla/Editor.py" line="6763"/>
         <source>Load macro file</source>
         <translation>输入宏文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6792"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Macro files (*.macro)</source>
         <translation>宏文件 (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6772"/>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
         <source>Error loading macro</source>
         <translation>载入宏文件出错</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6792"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Save macro file</source>
         <translation>保存宏文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
         <source>Save macro</source>
         <translation>保存宏</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6824"/>
-        <source>Error saving macro</source>
-        <translation>保存宏出错</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6837"/>
-        <source>Start Macro Recording</source>
-        <translation>开始宏录制</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="6837"/>
+        <source>Error saving macro</source>
+        <translation>保存宏出错</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6850"/>
+        <source>Start Macro Recording</source>
+        <translation>开始宏录制</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6850"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>宏录制已激活。开始录制新宏?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Macro Recording</source>
         <translation>宏录制</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6863"/>
+        <location filename="../QScintilla/Editor.py" line="6876"/>
         <source>Enter name of the macro:</source>
         <translation>输入宏名称:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7033"/>
+        <location filename="../QScintilla/Editor.py" line="7046"/>
         <source>File changed</source>
         <translation>文件已改变</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <source>Drop Error</source>
         <translation>降落误差</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7375"/>
+        <location filename="../QScintilla/Editor.py" line="7399"/>
         <source>Resources</source>
         <translation>资源</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7377"/>
+        <location filename="../QScintilla/Editor.py" line="7401"/>
         <source>Add file...</source>
         <translation>添加文件…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7379"/>
+        <location filename="../QScintilla/Editor.py" line="7403"/>
         <source>Add files...</source>
         <translation>添加文件…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7381"/>
+        <location filename="../QScintilla/Editor.py" line="7405"/>
         <source>Add aliased file...</source>
         <translation>添加别名文件…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7384"/>
+        <location filename="../QScintilla/Editor.py" line="7408"/>
         <source>Add localized resource...</source>
         <translation>添加本地资源…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7388"/>
+        <location filename="../QScintilla/Editor.py" line="7412"/>
         <source>Add resource frame</source>
         <translation>添加资源结构</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7407"/>
+        <location filename="../QScintilla/Editor.py" line="7431"/>
         <source>Add file resource</source>
         <translation>添加文件资源</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7423"/>
+        <location filename="../QScintilla/Editor.py" line="7447"/>
         <source>Add file resources</source>
         <translation>添加多个文件资源</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add aliased file resource</source>
         <translation>添加别名文件资源</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Package Diagram</source>
         <translation>程序包图</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7516"/>
+        <location filename="../QScintilla/Editor.py" line="7540"/>
         <source>Include class attributes?</source>
         <translation>包含类属性?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
         <source>Imports Diagram</source>
         <translation>引用图</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7538"/>
+        <location filename="../QScintilla/Editor.py" line="7562"/>
         <source>Include imports from external modules?</source>
         <translation>从外部模块包含引用?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Application Diagram</source>
         <translation>应用程序图</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7552"/>
+        <location filename="../QScintilla/Editor.py" line="7576"/>
         <source>Include module names?</source>
         <translation>包含模块名?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7884"/>
+        <location filename="../QScintilla/Editor.py" line="7908"/>
         <source>Add to dictionary</source>
         <translation>添加到文件夹</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7886"/>
+        <location filename="../QScintilla/Editor.py" line="7910"/>
         <source>Ignore All</source>
         <translation>全部忽略</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="841"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Remove from dictionary</source>
         <translation>从词典里移除</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="379"/>
+        <location filename="../QScintilla/Editor.py" line="381"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 的大小为 &lt;b&gt;{1} KB&lt;/b&gt;。确认要读取它?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1390"/>
+        <location filename="../QScintilla/Editor.py" line="1396"/>
         <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1409"/>
+        <location filename="../QScintilla/Editor.py" line="1415"/>
         <source>Alternatives ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3052"/>
+        <location filename="../QScintilla/Editor.py" line="3058"/>
         <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="../QScintilla/Editor.py" line="3110"/>
+        <location filename="../QScintilla/Editor.py" line="3116"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 无法打开。&lt;/p&gt;&lt;p&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3234"/>
+        <location filename="../QScintilla/Editor.py" line="3240"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 无法保存。&lt;br /&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6763"/>
+        <location filename="../QScintilla/Editor.py" line="6776"/>
         <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="6772"/>
+        <location filename="../QScintilla/Editor.py" line="6785"/>
         <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="6824"/>
+        <location filename="../QScintilla/Editor.py" line="6837"/>
         <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="7213"/>
+        <location filename="../QScintilla/Editor.py" line="7237"/>
         <source>{0} (ro)</source>
         <translation>{0}(只读)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7354"/>
+        <location filename="../QScintilla/Editor.py" line="7378"/>
         <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="7450"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1318"/>
+        <location filename="../QScintilla/Editor.py" line="1324"/>
         <source>Next warning</source>
         <translation>下一个警告</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1322"/>
+        <location filename="../QScintilla/Editor.py" line="1328"/>
         <source>Previous warning</source>
         <translation>上一个警告</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1326"/>
+        <location filename="../QScintilla/Editor.py" line="1332"/>
         <source>Show warning message</source>
         <translation>显示警告信息</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1330"/>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
         <source>Clear warnings</source>
         <translation>清空警告</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3297"/>
+        <location filename="../QScintilla/Editor.py" line="3303"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6809"/>
+        <location filename="../QScintilla/Editor.py" line="6822"/>
         <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="6610"/>
+        <location filename="../QScintilla/Editor.py" line="6623"/>
         <source>Warning: {0}</source>
         <translation>警告:{0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6617"/>
+        <location filename="../QScintilla/Editor.py" line="6630"/>
         <source>Error: {0}</source>
         <translation>错误:{0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7029"/>
+        <location filename="../QScintilla/Editor.py" line="7042"/>
         <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
         <translation>&lt;br&gt;&lt;b&gt;警告:&lt;/b&gt;您在重新打开时将丢失所有更改。</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Editor.py" line="926"/>
+        <source>Open &apos;rejection&apos; file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1036"/>
+        <source>Load Diagram...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1359"/>
+        <source>Next change</source>
+        <translation>下一个更改</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1363"/>
+        <source>Previous change</source>
+        <translation>上一个更改</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
+        <source>Sort Lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8326"/>
+        <source>The selection contains illegal data for a numerical sort.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
+        <source>Warning</source>
+        <translation>警告</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6558"/>
+        <source>No warning messages available.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6620"/>
+        <source>Style: {0}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="900"/>
+        <source>New Document View</source>
+        <translation>新建文档视图</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="903"/>
+        <source>New Document View (with new split)</source>
+        <translation>新建文档视图(在新拆分页中)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="990"/>
+        <source>Tools</source>
+        <translation>工具</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1121"/>
+        <source>Re-Open With Encoding</source>
+        <translation>使用指定编码重新打开</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="876"/>
+        <source>Automatic Completion enabled</source>
+        <translation>允许自动补全</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="956"/>
+        <source>Complete</source>
+        <translation>补全</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
+        <source>Auto-Completion Provider</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4913"/>
+        <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="5192"/>
+        <source>Call-Tips Provider</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="5192"/>
+        <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="8415"/>
+        <source>Register Mouse Click Handler</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8415"/>
+        <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>
+    <message>
         <location filename="../QScintilla/Editor.py" line="920"/>
-        <source>Open &apos;rejection&apos; file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1030"/>
-        <source>Load Diagram...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1353"/>
-        <source>Next change</source>
-        <translation>下一个更改</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1357"/>
-        <source>Previous change</source>
-        <translation>上一个更改</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
-        <source>Sort Lines</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8302"/>
-        <source>The selection contains illegal data for a numerical sort.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
-        <source>Warning</source>
-        <translation>警告</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6545"/>
-        <source>No warning messages available.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6607"/>
-        <source>Style: {0}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
-        <source>New Document View</source>
-        <translation>新建文档视图</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="897"/>
-        <source>New Document View (with new split)</source>
-        <translation>新建文档视图(在新拆分页中)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="984"/>
-        <source>Tools</source>
-        <translation>工具</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1115"/>
-        <source>Re-Open With Encoding</source>
-        <translation>使用指定编码重新打开</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
-        <source>Automatic Completion enabled</source>
-        <translation>允许自动补全</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="950"/>
-        <source>Complete</source>
-        <translation>补全</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
-        <source>Auto-Completion Provider</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4905"/>
-        <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="5184"/>
-        <source>Call-Tips Provider</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="5184"/>
-        <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="8391"/>
-        <source>Register Mouse Click Handler</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8391"/>
-        <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>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="914"/>
         <source>Save Copy...</source>
         <translation type="unfinished">保存副本…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="953"/>
+        <location filename="../QScintilla/Editor.py" line="959"/>
         <source>Clear Completions Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="880"/>
+        <location filename="../QScintilla/Editor.py" line="886"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1361"/>
+        <location filename="../QScintilla/Editor.py" line="1367"/>
         <source>Clear changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="803"/>
+        <location filename="../QScintilla/Editor.py" line="805"/>
         <source>Execute Selection In Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8512"/>
+        <location filename="../QScintilla/Editor.py" line="8536"/>
         <source>&lt;p&gt;The EditorConfig properties for file &lt;b&gt;{0}&lt;/b&gt; could not be loaded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
+        <location filename="../QScintilla/Editor.py" line="1271"/>
         <source>Toggle all folds</source>
         <translation type="unfinished">开关所有折叠</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1270"/>
+        <location filename="../QScintilla/Editor.py" line="1276"/>
         <source>Toggle all folds (including children)</source>
         <translation type="unfinished">开关所有折叠(包含子项)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1275"/>
-        <source>Toggle current fold</source>
-        <translation type="unfinished">开关当前折叠</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1281"/>
+        <source>Toggle current fold</source>
+        <translation type="unfinished">开关当前折叠</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1287"/>
         <source>Expand (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
-        <source>Collapse (including children)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1292"/>
+        <source>Collapse (including children)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1298"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1173"/>
+        <location filename="../QScintilla/Editor.py" line="1179"/>
         <source>Spell Check Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7023"/>
+        <location filename="../QScintilla/Editor.py" line="7036"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="849"/>
+        <source>Insert Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorAPIsPage</name>
@@ -13519,205 +13557,220 @@
         <translation>制表符 &amp;&amp; 缩进</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="45"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="89"/>
         <source>Tab width:</source>
         <translation>制表符宽:</translation>
     </message>
     <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="99"/>
+        <source>Move to set the tab width.</source>
+        <translation>移动可设定制表符宽度</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="121"/>
+        <source>Displays the selected tab width.</source>
+        <translation>显示已选择的制表符宽度</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="137"/>
+        <source>Indentation width:</source>
+        <translation>缩进宽度:</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="147"/>
+        <source>Move to set the indentation width.</source>
+        <translation>移动可设定缩进宽度。</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="169"/>
+        <source>Displays the selected indentation width.</source>
+        <translation>显示已选择的缩进宽度。</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="45"/>
+        <source>Select whether autoindentation shall be enabled</source>
+        <translation>选择是否启用自动缩进</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="48"/>
+        <source>Auto indentation</source>
+        <translation>自动缩进</translation>
+    </message>
+    <message>
         <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="55"/>
-        <source>Move to set the tab width.</source>
-        <translation>移动可设定制表符宽度</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="77"/>
-        <source>Displays the selected tab width.</source>
-        <translation>显示已选择的制表符宽度</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="93"/>
-        <source>Indentation width:</source>
-        <translation>缩进宽度:</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="103"/>
-        <source>Move to set the indentation width.</source>
-        <translation>移动可设定缩进宽度。</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="125"/>
-        <source>Displays the selected indentation width.</source>
-        <translation>显示已选择的缩进宽度。</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="236"/>
-        <source>Select whether autoindentation shall be enabled</source>
-        <translation>选择是否启用自动缩进</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="239"/>
-        <source>Auto indentation</source>
-        <translation>自动缩进</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="246"/>
         <source>Select whether tab characters are used for indentations.</source>
         <translation>选择是否为缩进使用制表符。</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="249"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="58"/>
         <source>Use tabs for indentations</source>
         <translation>缩进使用制表符</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="266"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="75"/>
         <source>Select whether tabs shall be converted upon opening the file</source>
         <translation>选择在打开文件时是否转换制表符</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="269"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="78"/>
         <source>Convert tabs upon open</source>
         <translation>打开时转换制表符</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="256"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="65"/>
         <source>Select whether pressing the tab key indents.</source>
         <translation>选择按下 tab 键时是否缩进。</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="259"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="68"/>
         <source>Tab key indents</source>
         <translation>Tab 键缩进</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="371"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="373"/>
         <source>Comments</source>
         <translation>注释</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="377"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="379"/>
         <source>Select to insert the comment sign at column 0</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="383"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="385"/>
         <source>Insert comment at column 0</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="380"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="382"/>
         <source>&lt;b&gt;Insert comment at column 0&lt;/b&gt;&lt;p&gt;Select to insert the comment sign at column 0. Otherwise, the comment sign is inserted at the first non-whitespace position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="393"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="424"/>
         <source>Virtual Space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="399"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="430"/>
         <source>Virtual space is the space after the last character of a line. It is not allocated unless some text is entered or copied into it. Usage of virtual space can be configured with these selections.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="409"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="440"/>
         <source>Select to enable a rectangular selection to extend into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="412"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="443"/>
         <source>Selection may access virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="419"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="450"/>
         <source>Select to allow the cursor to be moved into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="422"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="453"/>
         <source>Cursor can move into virtual space</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="158"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="206"/>
         <source>Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="163"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="211"/>
         <source>Tab Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="168"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="216"/>
         <source>Indent Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="196"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="244"/>
         <source>Press to add a language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="203"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="251"/>
         <source>Press to delete the selected language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="210"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="258"/>
         <source>Press to edit the selected language specific override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Tab and Indent Override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="223"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="238"/>
         <source>Shall the selected entries really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="281"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="283"/>
         <source>Select to enable the source code outline view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="284"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="286"/>
         <source>Source Code Outline</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="293"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="295"/>
         <source>Default Width:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="320"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="302"/>
         <source>Enter the default width of the source code outline view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="313"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="321"/>
         <source>Width Step Size:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="339"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="328"/>
         <source>Enter the amount of pixels the width of the outline should be increased or decreased</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="358"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="360"/>
         <source>Select to show the source code encoding</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="361"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="363"/>
         <source>Show source file encoding</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="395"/>
+        <source>Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="401"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.ui" line="414"/>
+        <source>Select the docstring style to be used</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>EditorHighlightersPage</name>
@@ -54355,17 +54408,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1627"/>
+        <location filename="../Preferences/__init__.py" line="1629"/>
         <source>Export Preferences</source>
         <translation>导出首选项</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Import Preferences</source>
         <translation>导入首选项</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1655"/>
+        <location filename="../Preferences/__init__.py" line="1657"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation>属性文件 (*.ini);;所有文件 (*)</translation>
     </message>
@@ -54936,814 +54989,814 @@
         <translation>注册项目类型</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>Read project file</source>
         <translation>读取项目文件</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>Save project file</source>
         <translation>保存项目文件</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>Read user project properties</source>
         <translation>读取用户项目属性</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>Save user project properties</source>
         <translation>保存用户项目属性</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>Read project session</source>
         <translation>读取项目会话</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1244"/>
+        <location filename="../Project/Project.py" line="1245"/>
         <source>Please save the project first.</source>
         <translation>请先保存项目。</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>Save project session</source>
         <translation>保存项目会话</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>Delete project session</source>
         <translation>删除项目会话</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>Read tasks</source>
         <translation>读取任务</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>Save tasks</source>
         <translation>保存任务</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>Read debugger properties</source>
         <translation>读取调试器属性</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>Save debugger properties</source>
         <translation>保存调试器属性</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>Delete debugger properties</source>
         <translation>删除调试器属性</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>Add Language</source>
         <translation>添加语言</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1386"/>
+        <location filename="../Project/Project.py" line="1387"/>
         <source>You have to specify a translation pattern first.</source>
         <translation>必须先指定一个翻译样式。</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>Delete translation</source>
         <translation>删除翻译</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1677"/>
+        <location filename="../Project/Project.py" line="1678"/>
         <source>Add file</source>
         <translation>添加文件</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1809"/>
+        <location filename="../Project/Project.py" line="1810"/>
         <source>The target directory must not be empty.</source>
         <translation>目标文件夹不能为空。</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>Add directory</source>
         <translation>添加文件夹</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1708"/>
+        <location filename="../Project/Project.py" line="1709"/>
         <source>&lt;p&gt;The source directory doesn&apos;t contain any files belonging to the selected category.&lt;/p&gt;</source>
         <translation>&lt;p&gt;源文件夹不包含任何属于所选类别的文件。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1820"/>
+        <location filename="../Project/Project.py" line="1821"/>
         <source>The source directory must not be empty.</source>
         <translation>源文件夹不能为空。</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1957"/>
+        <location filename="../Project/Project.py" line="1958"/>
         <source>Rename file</source>
         <translation>重命名文件</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>Rename File</source>
         <translation>重命名文件</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>Delete file</source>
         <translation>删除文件</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>Delete directory</source>
         <translation>删除文件夹</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>Create project directory</source>
         <translation>创建项目文件夹</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>New Project</source>
         <translation>新建项目</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2476"/>
+        <location filename="../Project/Project.py" line="2477"/>
         <source>Add existing files to the project?</source>
         <translation>是否将已有文件添加到项目中?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2976"/>
+        <location filename="../Project/Project.py" line="2977"/>
         <source>Select Version Control System</source>
         <translation>选择版本控制系统</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2603"/>
+        <location filename="../Project/Project.py" line="2604"/>
         <source>Would you like to edit the VCS command options?</source>
         <translation>是否编辑版本控制系统命令选项?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>New project</source>
         <translation>新建项目</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2546"/>
+        <location filename="../Project/Project.py" line="2547"/>
         <source>Shall the project file be added to the repository?</source>
         <translation>是否将项目文件添加到仓库?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2582"/>
+        <location filename="../Project/Project.py" line="2583"/>
         <source>None</source>
         <translation>无</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2575"/>
+        <location filename="../Project/Project.py" line="2576"/>
         <source>Select version control system for the project</source>
         <translation>为项目选择版本控制系统</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Translation Pattern</source>
         <translation>翻译样式</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2684"/>
+        <location filename="../Project/Project.py" line="2685"/>
         <source>Enter the path pattern for translation files (use &apos;%language%&apos; in place of the language code):</source>
         <translation>为翻译文件输入路径样式(在语言代码的相应位置使用“&apos;%language%”):</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>Open project</source>
         <translation>打开项目</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3120"/>
+        <location filename="../Project/Project.py" line="3121"/>
         <source>Project Files (*.e4p)</source>
         <translation>项目文件 (*.e4p)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save project as</source>
         <translation>项目另存为</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>Save File</source>
         <translation>保存文件</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>Close Project</source>
         <translation>关闭项目</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3171"/>
+        <location filename="../Project/Project.py" line="3172"/>
         <source>The current project has unsaved changes.</source>
         <translation>当前项目的更改未保存。</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>Syntax errors detected</source>
         <translation>检测到语法错误</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Project/Project.py" line="3348"/>
+        <location filename="../Project/Project.py" line="3349"/>
         <source>The project contains %n file(s) with syntax errors.</source>
         <translation>
             <numerusform>项目包含 %n 文件有语法错误。</numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3845"/>
+        <location filename="../Project/Project.py" line="3846"/>
         <source>&amp;New...</source>
         <translation>新建(&amp;N)…</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3850"/>
-        <source>Generate a new project</source>
-        <translation>生成新项目</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3851"/>
+        <source>Generate a new project</source>
+        <translation>生成新项目</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3852"/>
         <source>&lt;b&gt;New...&lt;/b&gt;&lt;p&gt;This opens a dialog for entering the info for a new project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;新建…&lt;/b&gt;&lt;p&gt;打开一个对话框为新项目输入信息。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3859"/>
+        <location filename="../Project/Project.py" line="3860"/>
         <source>&amp;Open...</source>
         <translation>打开(&amp;O)…</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3864"/>
-        <source>Open an existing project</source>
-        <translation>打开一个已有项目</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3865"/>
+        <source>Open an existing project</source>
+        <translation>打开一个已有项目</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3866"/>
         <source>&lt;b&gt;Open...&lt;/b&gt;&lt;p&gt;This opens an existing project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;打开…&lt;/b&gt;&lt;p&gt;打开一个已有项目。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>Close project</source>
         <translation>关闭项目</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3872"/>
+        <location filename="../Project/Project.py" line="3873"/>
         <source>&amp;Close</source>
         <translation>关闭(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3876"/>
-        <source>Close the current project</source>
-        <translation>关闭当前项目</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3877"/>
+        <source>Close the current project</source>
+        <translation>关闭当前项目</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3878"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;This closes the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;关闭&lt;/b&gt;&lt;p&gt;关闭当前项目。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3884"/>
+        <location filename="../Project/Project.py" line="3885"/>
         <source>Save project</source>
         <translation>保存项目</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>&amp;Save</source>
         <translation>保存(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3888"/>
-        <source>Save the current project</source>
-        <translation>保存当前项目</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3889"/>
+        <source>Save the current project</source>
+        <translation>保存当前项目</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3890"/>
         <source>&lt;b&gt;Save&lt;/b&gt;&lt;p&gt;This saves the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;保存&lt;/b&gt;&lt;p&gt;保存当前项目&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3896"/>
+        <location filename="../Project/Project.py" line="3897"/>
         <source>Save &amp;as...</source>
         <translation>另存为(&amp;A)…</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3900"/>
+        <location filename="../Project/Project.py" line="3901"/>
         <source>Save the current project to a new file</source>
         <translation>将当前项目另存为一个新文件</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3902"/>
+        <location filename="../Project/Project.py" line="3903"/>
         <source>&lt;b&gt;Save as&lt;/b&gt;&lt;p&gt;This saves the current project to a new file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;另存为&lt;/b&gt;&lt;p&gt;将当前项目另存为一个新文件。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add files to project</source>
         <translation>将文件添加到项目中</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3911"/>
+        <location filename="../Project/Project.py" line="3912"/>
         <source>Add &amp;files...</source>
         <translation>添加文件(&amp;F)…</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3916"/>
+        <location filename="../Project/Project.py" line="3917"/>
         <source>Add files to the current project</source>
         <translation>将文件添加到当前项目中</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3918"/>
+        <location filename="../Project/Project.py" line="3919"/>
         <source>&lt;b&gt;Add files...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding files to the current project. The place to add is determined by the file extension.&lt;/p&gt;</source>
         <translation>&lt;b&gt;添加文件…&lt;/b&gt;&lt;p&gt;打开一个对话框为当前项目添加文件。添加的位置由文件扩展名决定。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory to project</source>
         <translation>将文件夹添加到项目中</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3927"/>
+        <location filename="../Project/Project.py" line="3928"/>
         <source>Add directory...</source>
         <translation>添加文件夹…</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3932"/>
+        <location filename="../Project/Project.py" line="3933"/>
         <source>Add a directory to the current project</source>
         <translation>为当前工程添加文件夹</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3934"/>
+        <location filename="../Project/Project.py" line="3935"/>
         <source>&lt;b&gt;Add directory...&lt;/b&gt;&lt;p&gt;This opens a dialog for adding a directory to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;添加文件夹…&lt;/b&gt;&lt;p&gt;打开一个对话框将文件夹添加到当前项目中。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add translation to project</source>
         <translation>将翻译添加到项目中</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3942"/>
+        <location filename="../Project/Project.py" line="3943"/>
         <source>Add &amp;translation...</source>
         <translation>添加翻译(&amp;T)…</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3947"/>
+        <location filename="../Project/Project.py" line="3948"/>
         <source>Add a translation to the current project</source>
         <translation>将翻译添加到当前项目中</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3949"/>
+        <location filename="../Project/Project.py" line="3950"/>
         <source>&lt;b&gt;Add translation...&lt;/b&gt;&lt;p&gt;This opens a dialog for add a translation to the current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;添加翻译…&lt;/b&gt;&lt;p&gt;打开一个对话框将翻译添加到当前项目中。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Search new files</source>
         <translation>搜索新文件</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3957"/>
+        <location filename="../Project/Project.py" line="3958"/>
         <source>Searc&amp;h new files...</source>
         <translation>搜索新文件(&amp;H)…</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3961"/>
+        <location filename="../Project/Project.py" line="3962"/>
         <source>Search new files in the project directory.</source>
         <translation>在项目文件夹中搜索新文件。</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>Project properties</source>
         <translation>项目属性</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3987"/>
+        <location filename="../Project/Project.py" line="3988"/>
         <source>&amp;Properties...</source>
         <translation>属性(&amp;P)…</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3992"/>
-        <source>Show the project properties</source>
-        <translation>显示项目属性</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="3993"/>
+        <source>Show the project properties</source>
+        <translation>显示项目属性</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="3994"/>
         <source>&lt;b&gt;Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the project properties.&lt;/p&gt;</source>
         <translation>&lt;b&gt;属性…&lt;/b&gt;&lt;p&gt;显示一个对话框可编辑项目属性。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>User project properties</source>
         <translation>用户项目属性</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4000"/>
+        <location filename="../Project/Project.py" line="4001"/>
         <source>&amp;User Properties...</source>
         <translation>用户属性(&amp;U)…</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4005"/>
+        <location filename="../Project/Project.py" line="4006"/>
         <source>Show the user specific project properties</source>
         <translation>显示用户指定的项目属性</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4007"/>
+        <location filename="../Project/Project.py" line="4008"/>
         <source>&lt;b&gt;User Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the user specific project properties.&lt;/p&gt;</source>
         <translation>&lt;b&gt;用户属性…&lt;/b&gt;&lt;p&gt;显示一个对话框可编辑用户指定的项目属性。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations</source>
         <translation>文件类型关联</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4015"/>
+        <location filename="../Project/Project.py" line="4016"/>
         <source>Filetype Associations...</source>
         <translation>文件类型关联…</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4019"/>
+        <location filename="../Project/Project.py" line="4020"/>
         <source>Show the project filetype associations</source>
         <translation>显示项目文件类型关联</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger Properties</source>
         <translation>调试器属性</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4051"/>
+        <location filename="../Project/Project.py" line="4052"/>
         <source>Debugger &amp;Properties...</source>
         <translation>调试器属性(&amp;P)…</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4055"/>
-        <source>Show the debugger properties</source>
-        <translation>显示调试器属性</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4056"/>
+        <source>Show the debugger properties</source>
+        <translation>显示调试器属性</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4057"/>
         <source>&lt;b&gt;Debugger Properties...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;调试器属性…&lt;/b&gt;&lt;p&gt;显示一个对话框以编辑项目指定的调试器设定。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>Load</source>
         <translation>载入</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4064"/>
+        <location filename="../Project/Project.py" line="4065"/>
         <source>&amp;Load</source>
         <translation>载入(&amp;L)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4068"/>
-        <source>Load the debugger properties</source>
-        <translation>载入调试器属性</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4069"/>
+        <source>Load the debugger properties</source>
+        <translation>载入调试器属性</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4070"/>
         <source>&lt;b&gt;Load Debugger Properties&lt;/b&gt;&lt;p&gt;This loads the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;载入调试器属性&lt;/b&gt;&lt;p&gt;载入项目指定的调试器设定。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4076"/>
+        <location filename="../Project/Project.py" line="4077"/>
         <source>Save</source>
         <translation>保存</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4080"/>
-        <source>Save the debugger properties</source>
-        <translation>保存调试器属性</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4081"/>
+        <source>Save the debugger properties</source>
+        <translation>保存调试器属性</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4082"/>
         <source>&lt;b&gt;Save Debugger Properties&lt;/b&gt;&lt;p&gt;This saves the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;保存调试器属性&lt;/b&gt;&lt;p&gt;保存项目指定的调试器设置。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>Delete</source>
         <translation>删除</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4088"/>
+        <location filename="../Project/Project.py" line="4089"/>
         <source>&amp;Delete</source>
         <translation>删除(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4092"/>
-        <source>Delete the debugger properties</source>
-        <translation>删除调试器属性</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4093"/>
+        <source>Delete the debugger properties</source>
+        <translation>删除调试器属性</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4094"/>
         <source>&lt;b&gt;Delete Debugger Properties&lt;/b&gt;&lt;p&gt;This deletes the file containing the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;删除调试器属性&lt;/b&gt;&lt;p&gt;删除包含项目指定调试器设置的文件。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>Reset</source>
         <translation>重置</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4101"/>
+        <location filename="../Project/Project.py" line="4102"/>
         <source>&amp;Reset</source>
         <translation>重置(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4105"/>
-        <source>Reset the debugger properties</source>
-        <translation>重围调试器属性</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4106"/>
+        <source>Reset the debugger properties</source>
+        <translation>重围调试器属性</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4107"/>
         <source>&lt;b&gt;Reset Debugger Properties&lt;/b&gt;&lt;p&gt;This resets the project specific debugger settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;重置调试器属性&lt;/b&gt;&lt;p&gt;重置项目指定的调试器设置。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4115"/>
+        <location filename="../Project/Project.py" line="4116"/>
         <source>Load session</source>
         <translation>载入会话</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4119"/>
-        <source>Load the projects session file.</source>
-        <translation>载入项目会话文件。</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4120"/>
+        <source>Load the projects session file.</source>
+        <translation>载入项目会话文件。</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4121"/>
         <source>&lt;b&gt;Load session&lt;/b&gt;&lt;p&gt;This loads the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation>&lt;b&gt;载入会话&lt;/b&gt;&lt;p&gt;载入项目会话文件。会话包括如下数据。&lt;br&gt;- 所有打开的源文件&lt;br&gt;- 所有断点&lt;br&gt;- 命令行参数&lt;br&gt;- 工作文件夹&lt;br&gt;- 异常报告标志&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4133"/>
+        <location filename="../Project/Project.py" line="4134"/>
         <source>Save session</source>
         <translation>保存会话</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4137"/>
-        <source>Save the projects session file.</source>
-        <translation>保存项目会话文件。</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4138"/>
+        <source>Save the projects session file.</source>
+        <translation>保存项目会话文件。</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4139"/>
         <source>&lt;b&gt;Save session&lt;/b&gt;&lt;p&gt;This saves the projects session file. The session consists of the following data.&lt;br&gt;- all open source files&lt;br&gt;- all breakpoint&lt;br&gt;- the commandline arguments&lt;br&gt;- the working directory&lt;br&gt;- the exception reporting flag&lt;/p&gt;</source>
         <translation>&lt;b&gt;保存会话&lt;/b&gt;&lt;p&gt;保存项目会话文件。会话包括如下数据。&lt;br&gt;- 所有打开的源文件&lt;br&gt;- 所有断点&lt;br&gt;- 命令行参数&lt;br&gt;- 工作文件夹&lt;br&gt;- 异常报告标志&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4151"/>
+        <location filename="../Project/Project.py" line="4152"/>
         <source>Delete session</source>
         <translation>删除会话</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4155"/>
-        <source>Delete the projects session file.</source>
-        <translation>删除项目会话文件。</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4156"/>
+        <source>Delete the projects session file.</source>
+        <translation>删除项目会话文件。</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4157"/>
         <source>&lt;b&gt;Delete session&lt;/b&gt;&lt;p&gt;This deletes the projects session file&lt;/p&gt;</source>
         <translation>&lt;b&gt;删除会话&lt;/b&gt;&lt;p&gt;删除项目会话文件&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>Code Metrics</source>
         <translation>代码度量</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4165"/>
+        <location filename="../Project/Project.py" line="4166"/>
         <source>&amp;Code Metrics...</source>
         <translation>代码度量(&amp;C)…</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4169"/>
+        <location filename="../Project/Project.py" line="4170"/>
         <source>Show some code metrics for the project.</source>
         <translation>显示项目的部分代码度量。</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4171"/>
+        <location filename="../Project/Project.py" line="4172"/>
         <source>&lt;b&gt;Code Metrics...&lt;/b&gt;&lt;p&gt;This shows some code metrics for all Python files in the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;代码度量…&lt;/b&gt;&lt;p&gt;显示项目中所有 Python 文件的部分代码度量。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Python Code Coverage</source>
         <translation>Python 代码覆盖率</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4179"/>
+        <location filename="../Project/Project.py" line="4180"/>
         <source>Code Co&amp;verage...</source>
         <translation>代码覆盖率(&amp;v)…</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4183"/>
+        <location filename="../Project/Project.py" line="4184"/>
         <source>Show code coverage information for the project.</source>
         <translation>显示项目的代码覆盖率信息。</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4185"/>
+        <location filename="../Project/Project.py" line="4186"/>
         <source>&lt;b&gt;Code Coverage...&lt;/b&gt;&lt;p&gt;This shows the code coverage information for all Python files in the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;代码覆盖率…&lt;/b&gt;&lt;p&gt;显示项目中所有 Python 文件的代码覆盖率。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Profile Data</source>
         <translation>剖析数据</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4193"/>
+        <location filename="../Project/Project.py" line="4194"/>
         <source>&amp;Profile Data...</source>
         <translation>剖析数据(&amp;P)…</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4197"/>
+        <location filename="../Project/Project.py" line="4198"/>
         <source>Show profiling data for the project.</source>
         <translation>显示项目的剖析数据。</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4199"/>
+        <location filename="../Project/Project.py" line="4200"/>
         <source>&lt;b&gt;Profile Data...&lt;/b&gt;&lt;p&gt;This shows the profiling data for the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;剖析数据…&lt;/b&gt;&lt;p&gt;显示项目的剖析数据。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Application Diagram</source>
         <translation>应用程序图</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4208"/>
+        <location filename="../Project/Project.py" line="4209"/>
         <source>&amp;Application Diagram...</source>
         <translation>应用程序(&amp;A)图…</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4212"/>
+        <location filename="../Project/Project.py" line="4213"/>
         <source>Show a diagram of the project.</source>
         <translation>显示项目图表。</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4214"/>
+        <location filename="../Project/Project.py" line="4215"/>
         <source>&lt;b&gt;Application Diagram...&lt;/b&gt;&lt;p&gt;This shows a diagram of the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;应用程序图…&lt;/b&gt;&lt;p&gt;显示项目的图表。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>Create Package List</source>
         <translation>创建程序包列表</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4237"/>
+        <location filename="../Project/Project.py" line="4238"/>
         <source>Create &amp;Package List</source>
         <translation type="unfinished">创建插件存档(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>Create Plugin Archive</source>
         <translation>创建插件存档</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4253"/>
+        <location filename="../Project/Project.py" line="4254"/>
         <source>Create Plugin &amp;Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4339"/>
-        <source>&amp;Project</source>
-        <translation>项目(&amp;P)</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4340"/>
+        <source>&amp;Project</source>
+        <translation>项目(&amp;P)</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4341"/>
         <source>Open &amp;Recent Projects</source>
         <translation>打开最近的项目</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4345"/>
+        <location filename="../Project/Project.py" line="4346"/>
         <source>&amp;Version Control</source>
         <translation>版本控制(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4349"/>
+        <location filename="../Project/Project.py" line="4350"/>
         <source>Chec&amp;k</source>
         <translation>检查(&amp;K)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4351"/>
-        <source>Sho&amp;w</source>
-        <translation>显示(&amp;W)</translation>
-    </message>
-    <message>
         <location filename="../Project/Project.py" line="4352"/>
-        <source>&amp;Diagrams</source>
-        <translation>图表(&amp;D)</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4341"/>
-        <source>Session</source>
-        <translation>会话</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4354"/>
-        <source>Source &amp;Documentation</source>
-        <translation>源文档(&amp;D)</translation>
-    </message>
-    <message>
-        <location filename="../Project/Project.py" line="4342"/>
-        <source>Debugger</source>
-        <translation>调试器</translation>
+        <source>Sho&amp;w</source>
+        <translation>显示(&amp;W)</translation>
     </message>
     <message>
         <location filename="../Project/Project.py" line="4353"/>
+        <source>&amp;Diagrams</source>
+        <translation>图表(&amp;D)</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4342"/>
+        <source>Session</source>
+        <translation>会话</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4355"/>
+        <source>Source &amp;Documentation</source>
+        <translation>源文档(&amp;D)</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4343"/>
+        <source>Debugger</source>
+        <translation>调试器</translation>
+    </message>
+    <message>
+        <location filename="../Project/Project.py" line="4354"/>
         <source>Pac&amp;kagers</source>
         <translation>打包程序(&amp;K)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4479"/>
+        <location filename="../Project/Project.py" line="4480"/>
         <source>Project</source>
         <translation>项目</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4545"/>
+        <location filename="../Project/Project.py" line="4546"/>
         <source>&amp;Clear</source>
         <translation>清除(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>Search New Files</source>
         <translation>搜索新文件</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4718"/>
+        <location filename="../Project/Project.py" line="4719"/>
         <source>There were no new files found to be added.</source>
         <translation>没有要添加的新文件。</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>Version Control System</source>
         <translation>版本控制系统</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4996"/>
+        <location filename="../Project/Project.py" line="4997"/>
         <source>Coverage Data</source>
         <translation>覆盖率数据</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5046"/>
+        <location filename="../Project/Project.py" line="5047"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>当前项目未定义主脚本。终止</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Code Coverage</source>
         <translation>代码覆盖率</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5019"/>
+        <location filename="../Project/Project.py" line="5020"/>
         <source>Please select a coverage file</source>
         <translation>请选择一个覆盖率文件</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5069"/>
+        <location filename="../Project/Project.py" line="5070"/>
         <source>Please select a profile file</source>
         <translation>请选择一个剖析文件</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5123"/>
+        <location filename="../Project/Project.py" line="5124"/>
         <source>Include module names?</source>
         <translation>包含模块名?</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5267"/>
+        <location filename="../Project/Project.py" line="5268"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;文件 &lt;b&gt;PKGLIST&lt;/b&gt; 已存在。&lt;/p&gt;&lt;p&gt;是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5337"/>
+        <location filename="../Project/Project.py" line="5338"/>
         <source>The project does not have a main script defined. Aborting...</source>
         <translation>项目未定义主脚本。终止…</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4033"/>
+        <location filename="../Project/Project.py" line="4034"/>
         <source>Lexer Associations...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4037"/>
+        <location filename="../Project/Project.py" line="4038"/>
         <source>Show the project lexer associations (overriding defaults)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4039"/>
+        <location filename="../Project/Project.py" line="4040"/>
         <source>&lt;b&gt;Lexer Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55753,112 +55806,112 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="798"/>
+        <location filename="../Project/Project.py" line="799"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="901"/>
+        <location filename="../Project/Project.py" line="902"/>
         <source>&lt;p&gt;The project file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="937"/>
+        <location filename="../Project/Project.py" line="938"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="961"/>
+        <location filename="../Project/Project.py" line="962"/>
         <source>&lt;p&gt;The user specific project properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1019"/>
+        <location filename="../Project/Project.py" line="1020"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1055"/>
+        <location filename="../Project/Project.py" line="1056"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1084"/>
+        <location filename="../Project/Project.py" line="1085"/>
         <source>&lt;p&gt;The project session file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1118"/>
+        <location filename="../Project/Project.py" line="1119"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;任务文件 &lt;b&gt;{0}&lt;/b&gt; 无法读取。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1138"/>
+        <location filename="../Project/Project.py" line="1139"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;任务文件 &lt;b&gt;{0}&lt;/b&gt; 无法写入。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1197"/>
+        <location filename="../Project/Project.py" line="1198"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1232"/>
+        <location filename="../Project/Project.py" line="1233"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1258"/>
+        <location filename="../Project/Project.py" line="1259"/>
         <source>&lt;p&gt;The project debugger properties file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1741"/>
+        <location filename="../Project/Project.py" line="1742"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists.&lt;/p&gt;&lt;p&gt;Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3135"/>
+        <location filename="../Project/Project.py" line="3136"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1981"/>
+        <location filename="../Project/Project.py" line="1982"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be renamed.&lt;br /&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2356"/>
+        <location filename="../Project/Project.py" line="2357"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4866"/>
+        <location filename="../Project/Project.py" line="4867"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found.&lt;br/&gt;Disabling version control.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5318"/>
+        <location filename="../Project/Project.py" line="5319"/>
         <source>&lt;p&gt;The file &lt;b&gt;PKGLIST&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5477"/>
+        <location filename="../Project/Project.py" line="5478"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be stored in the archive. Ignoring it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5548"/>
+        <location filename="../Project/Project.py" line="5549"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1664"/>
+        <location filename="../Project/Project.py" line="1665"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be added to &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1723"/>
+        <location filename="../Project/Project.py" line="1724"/>
         <source>&lt;p&gt;The target directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55868,32 +55921,32 @@
         <translation type="obsolete">Python2 文件 (*.py2);;Python2 GUI 文件 (*.pyw2);;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>Create main script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2442"/>
+        <location filename="../Project/Project.py" line="2443"/>
         <source>&lt;p&gt;The mainscript &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>Load Diagram</source>
         <translation type="unfinished">加载图表</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4222"/>
+        <location filename="../Project/Project.py" line="4223"/>
         <source>&amp;Load Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4226"/>
+        <location filename="../Project/Project.py" line="4227"/>
         <source>Load a diagram from file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4228"/>
+        <location filename="../Project/Project.py" line="4229"/>
         <source>&lt;b&gt;Load Diagram...&lt;/b&gt;&lt;p&gt;This loads a diagram from file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55918,12 +55971,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4854"/>
+        <location filename="../Project/Project.py" line="4855"/>
         <source>&lt;p&gt;The selected VCS &lt;b&gt;{0}&lt;/b&gt; could not be found. &lt;br/&gt;Reverting override.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5589"/>
+        <location filename="../Project/Project.py" line="5590"/>
         <source>&lt;p&gt;The plugin file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt; &lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55943,193 +55996,193 @@
         <translation>Eric6 插件</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>Create project management directory</source>
         <translation>创建项目管理目录</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2946"/>
+        <location filename="../Project/Project.py" line="2947"/>
         <source>&lt;p&gt;The project directory &lt;b&gt;{0}&lt;/b&gt; is not writable.&lt;/p&gt;</source>
         <translation>&lt;p&gt;项目目录 &lt;b&gt;{0}&lt;/b&gt; 不可写。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Alt+Ctrl+P</source>
         <comment>Project|Search Project File</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3978"/>
+        <location filename="../Project/Project.py" line="3979"/>
         <source>Search for a file in the project list of files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3980"/>
+        <location filename="../Project/Project.py" line="3981"/>
         <source>&lt;b&gt;Search Project File&lt;/b&gt;&lt;p&gt;This searches for a file in the project list of files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3972"/>
+        <location filename="../Project/Project.py" line="3973"/>
         <source>Search Project File...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5373"/>
+        <location filename="../Project/Project.py" line="5374"/>
         <source>Create Plugin Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (Snapshot)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4270"/>
+        <location filename="../Project/Project.py" line="4271"/>
         <source>Create Plugin Archives (&amp;Snapshot)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5351"/>
+        <location filename="../Project/Project.py" line="5352"/>
         <source>Select package lists:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Creating plugin archives...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>Abort</source>
         <translation type="unfinished">终止</translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5369"/>
+        <location filename="../Project/Project.py" line="5370"/>
         <source>%v/%m Archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5385"/>
+        <location filename="../Project/Project.py" line="5386"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5362"/>
+        <location filename="../Project/Project.py" line="5363"/>
         <source>&lt;p&gt;No package list files (PKGLIST*) available or selected. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5413"/>
+        <location filename="../Project/Project.py" line="5414"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not ready yet.&lt;/p&gt;&lt;p&gt;Please rework it and delete the&apos;; initial_list&apos; line of the header.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="3963"/>
+        <location filename="../Project/Project.py" line="3964"/>
         <source>&lt;b&gt;Search new files...&lt;/b&gt;&lt;p&gt;This searches for new files (sources, *.ui, *.idl, *.proto) in the project directory and registered subdirectories.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4021"/>
+        <location filename="../Project/Project.py" line="4022"/>
         <source>&lt;b&gt;Filetype Associations...&lt;/b&gt;&lt;p&gt;This shows a dialog to edit the file type associations of the project. These associations determine the type (source, form, interface, protocol or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="1512"/>
+        <location filename="../Project/Project.py" line="1513"/>
         <source>&lt;p&gt;The selected translation file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2231"/>
+        <location filename="../Project/Project.py" line="2232"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2261"/>
+        <location filename="../Project/Project.py" line="2262"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>Create Makefile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="2757"/>
+        <location filename="../Project/Project.py" line="2758"/>
         <source>&lt;p&gt;The makefile &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>Execute Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4291"/>
+        <location filename="../Project/Project.py" line="4292"/>
         <source>&amp;Execute Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4295"/>
+        <location filename="../Project/Project.py" line="4296"/>
         <source>Perform a &apos;make&apos; run.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4297"/>
+        <location filename="../Project/Project.py" line="4298"/>
         <source>&lt;b&gt;Execute Make&lt;/b&gt;&lt;p&gt;This performs a &apos;make&apos; run to rebuild the configured target.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5755"/>
+        <location filename="../Project/Project.py" line="5756"/>
         <source>Test for Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4305"/>
+        <location filename="../Project/Project.py" line="4306"/>
         <source>&amp;Test for Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4309"/>
+        <location filename="../Project/Project.py" line="4310"/>
         <source>Question &apos;make&apos;, if a rebuild is needed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4311"/>
+        <location filename="../Project/Project.py" line="4312"/>
         <source>&lt;b&gt;Test for Changes&lt;/b&gt;&lt;p&gt;This questions &apos;make&apos;, if a rebuild of the configured target is necessary.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4356"/>
+        <location filename="../Project/Project.py" line="4357"/>
         <source>Make</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5703"/>
+        <location filename="../Project/Project.py" line="5704"/>
         <source>The make process did not start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5748"/>
+        <location filename="../Project/Project.py" line="5749"/>
         <source>The make process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5758"/>
+        <location filename="../Project/Project.py" line="5759"/>
         <source>&lt;p&gt;There are changes that require the configured make target &lt;b&gt;{0}&lt;/b&gt; to be rebuilt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5763"/>
+        <location filename="../Project/Project.py" line="5764"/>
         <source>&lt;p&gt;There are changes that require the default make target to be rebuilt.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5774"/>
+        <location filename="../Project/Project.py" line="5775"/>
         <source>The makefile contains errors.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -56144,7 +56197,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4344"/>
+        <location filename="../Project/Project.py" line="4345"/>
         <source>Project-T&amp;ools</source>
         <translation type="unfinished"></translation>
     </message>
@@ -56174,47 +56227,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4242"/>
+        <location filename="../Project/Project.py" line="4243"/>
         <source>Create an initial PKGLIST file for an eric plugin.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4244"/>
+        <location filename="../Project/Project.py" line="4245"/>
         <source>&lt;b&gt;Create Package List&lt;/b&gt;&lt;p&gt;This creates an initial list of files to include in an eric plugin archive. The list is created from the project file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4258"/>
+        <location filename="../Project/Project.py" line="4259"/>
         <source>Create eric plugin archive files.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4260"/>
+        <location filename="../Project/Project.py" line="4261"/>
         <source>&lt;b&gt;Create Plugin Archives&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4275"/>
+        <location filename="../Project/Project.py" line="4276"/>
         <source>Create eric plugin archive files (snapshot releases).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="4277"/>
+        <location filename="../Project/Project.py" line="4278"/>
         <source>&lt;b&gt;Create Plugin Archives (Snapshot)&lt;/b&gt;&lt;p&gt;This creates eric plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5441"/>
+        <location filename="../Project/Project.py" line="5442"/>
         <source>&lt;p&gt;The eric plugin archive file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5496"/>
+        <location filename="../Project/Project.py" line="5497"/>
         <source>&lt;p&gt;The eric plugin archive files were created with some errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/Project.py" line="5504"/>
+        <location filename="../Project/Project.py" line="5505"/>
         <source>&lt;p&gt;The eric plugin archive files were created successfully.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -58120,68 +58173,68 @@
         <translation>翻译属性…</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <location filename="../Project/PropertiesDialog.ui" line="298"/>
         <source>&amp;Author:</source>
         <translation>作者(&amp;A):</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="294"/>
+        <location filename="../Project/PropertiesDialog.ui" line="308"/>
         <source>Enter authors name</source>
         <translation>输入作者名</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="297"/>
+        <location filename="../Project/PropertiesDialog.ui" line="311"/>
         <source>&lt;b&gt;Author&lt;/b&gt;
 &lt;p&gt;Enter the name of the author.&lt;/p&gt;</source>
         <translation>&lt;b&gt;作者&lt;/b&gt;
 &lt;p&gt;输入作者的名称。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="305"/>
+        <location filename="../Project/PropertiesDialog.ui" line="319"/>
         <source>&amp;Email:</source>
         <translation>电子邮件(&amp;E):</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="315"/>
+        <location filename="../Project/PropertiesDialog.ui" line="329"/>
         <source>Enter authors email</source>
         <translation>输入作者的电子邮箱</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="318"/>
+        <location filename="../Project/PropertiesDialog.ui" line="332"/>
         <source>&lt;b&gt;Email&lt;/b&gt;
 &lt;p&gt;Enter the email address of the author&lt;/p&gt;</source>
         <translation>&lt;b&gt;电子邮箱&lt;/b&gt;
 &lt;p&gt;输入作者的电子邮件地址&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="326"/>
+        <location filename="../Project/PropertiesDialog.ui" line="340"/>
         <source>&amp;Description:</source>
         <translation>描述(&amp;D):</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="339"/>
+        <location filename="../Project/PropertiesDialog.ui" line="353"/>
         <source>Enter description</source>
         <translation>输入描述</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="342"/>
+        <location filename="../Project/PropertiesDialog.ui" line="356"/>
         <source>&lt;b&gt;Description&lt;/b&gt;
 &lt;p&gt;Enter a short description for the project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;描述&lt;/b&gt;
 &lt;p&gt;为项目输入简要描述。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="383"/>
+        <location filename="../Project/PropertiesDialog.ui" line="397"/>
         <source>Press to show information about the repository</source>
         <translation>点击显示与仓库有关的信息</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="386"/>
+        <location filename="../Project/PropertiesDialog.ui" line="400"/>
         <source>Show &amp;Repository Info</source>
         <translation>显示仓库信息(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="389"/>
+        <location filename="../Project/PropertiesDialog.ui" line="403"/>
         <source>Alt+R</source>
         <translation>Alt+R</translation>
     </message>
@@ -58198,7 +58251,7 @@
 &lt;p&gt;为多重项目输入简短描述。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="119"/>
+        <location filename="../Project/PropertiesDialog.py" line="127"/>
         <source>The project is not version controlled.</source>
         <translation>项目未进行版本控制。</translation>
     </message>
@@ -58213,12 +58266,12 @@
         <translation>拼写检查属性…</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="113"/>
+        <location filename="../Project/PropertiesDialog.py" line="121"/>
         <source>The project is version controlled by &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation>本项目由 &lt;b&gt;{0}&lt;/b&gt; 进行版本控制。</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.py" line="58"/>
+        <location filename="../Project/PropertiesDialog.py" line="66"/>
         <source>Source Files ({0});;All Files (*)</source>
         <translation>源文件 ({0});;所有文件 (*)</translation>
     </message>
@@ -58253,12 +58306,12 @@
         <translation>Windows/DOS</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="358"/>
+        <location filename="../Project/PropertiesDialog.ui" line="372"/>
         <source>Select to create a version controlled project</source>
         <translation>选择创建进行版本控制的项目</translation>
     </message>
     <message>
-        <location filename="../Project/PropertiesDialog.ui" line="361"/>
+        <location filename="../Project/PropertiesDialog.ui" line="375"/>
         <source>Version Controlled Project</source>
         <translation>进行版本控制的项目</translation>
     </message>
@@ -58277,6 +58330,21 @@
         <source>Press to open a dialog to enter the &apos;make&apos; parameters</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="284"/>
+        <source>Docstring Style:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.ui" line="291"/>
+        <source>Select the docstring style for the project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project/PropertiesDialog.py" line="50"/>
+        <source>None</source>
+        <translation type="unfinished">无</translation>
+    </message>
 </context>
 <context>
     <name>ProtobufPage</name>

eric ide

mercurial