Added functionality to enter data to be sent to the Django process. release-5.0.6

Thu, 27 Apr 2017 19:35:14 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 27 Apr 2017 19:35:14 +0200
changeset 102
7e2351e4d729
parent 101
6e39332e4a36
child 103
226d0705880b

Added functionality to enter data to be sent to the Django process.

ChangeLog file | annotate | diff | comparison | revisions
PluginDjango.e4p file | annotate | diff | comparison | revisions
PluginProjectDjango.py file | annotate | diff | comparison | revisions
PluginProjectDjango.zip file | annotate | diff | comparison | revisions
ProjectDjango/DjangoDialog.py file | annotate | diff | comparison | revisions
ProjectDjango/DjangoDialog.ui file | annotate | diff | comparison | revisions
ProjectDjango/Documentation/source/Plugin_Project_Django.ProjectDjango.DjangoDialog.html file | annotate | diff | comparison | revisions
ProjectDjango/Project.py file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_de.qm file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_de.ts file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_empty.ts file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_en.ts file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_es.ts file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_ru.ts file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_tr.ts file | annotate | diff | comparison | revisions
diff -r 6e39332e4a36 -r 7e2351e4d729 ChangeLog
--- a/ChangeLog	Sun Apr 23 17:20:47 2017 +0200
+++ b/ChangeLog	Thu Apr 27 19:35:14 2017 +0200
@@ -1,5 +1,8 @@
 ChangeLog
 ---------
+Version 5.0.6:
+- added functionality to enter data to be sent to the Django process
+
 Version 5.0.5:
 - bug fixes
 
diff -r 6e39332e4a36 -r 7e2351e4d729 PluginDjango.e4p
--- a/PluginDjango.e4p	Sun Apr 23 17:20:47 2017 +0200
+++ b/PluginDjango.e4p	Thu Apr 27 19:35:14 2017 +0200
@@ -8,7 +8,7 @@
   <ProgLanguage mixed="0">Python3</ProgLanguage>
   <ProjectType>E6Plugin</ProjectType>
   <Description>Plugin implementing support for Django projects.</Description>
-  <Version>4.0.x</Version>
+  <Version>5.x</Version>
   <Author>Detlev Offenbach</Author>
   <Email>detlev@die-offenbachs.de</Email>
   <TranslationPattern>ProjectDjango/i18n/django_%language%.ts</TranslationPattern>
diff -r 6e39332e4a36 -r 7e2351e4d729 PluginProjectDjango.py
--- a/PluginProjectDjango.py	Sun Apr 23 17:20:47 2017 +0200
+++ b/PluginProjectDjango.py	Thu Apr 27 19:35:14 2017 +0200
@@ -28,7 +28,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "5.0.5"
+version = "5.0.6"
 className = "ProjectDjangoPlugin"
 packageName = "ProjectDjango"
 shortDescription = "Project support for Django projects."
diff -r 6e39332e4a36 -r 7e2351e4d729 PluginProjectDjango.zip
Binary file PluginProjectDjango.zip has changed
diff -r 6e39332e4a36 -r 7e2351e4d729 ProjectDjango/DjangoDialog.py
--- a/ProjectDjango/DjangoDialog.py	Sun Apr 23 17:20:47 2017 +0200
+++ b/ProjectDjango/DjangoDialog.py	Thu Apr 27 19:35:14 2017 +0200
@@ -13,9 +13,11 @@
 except NameError:
     pass
 
+import os
+
 from PyQt5.QtCore import pyqtSlot, QProcess, QTimer, QFileInfo
 from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QAbstractButton, \
-    QTextEdit
+    QTextEdit, QLineEdit
 
 from E5Gui import E5MessageBox, E5FileDialog
 
@@ -36,7 +38,7 @@
     """
     def __init__(self, text, fixed=False, linewrap=True,
                  msgSuccess=None, msgError=None,
-                 saveFilters=None,
+                 saveFilters=None, showInput=False,
                  parent=None):
         """
         Constructor
@@ -49,6 +51,7 @@
         @keyparam msgError optional string to show upon unsuccessful execution
             (string)
         @keyparam saveFilters filename filter string (string)
+        @keyparam showInput flag indicating to show the input widgets (bool)
         @keyparam parent parent widget (QWidget)
         """
         super(DjangoDialog, self).__init__(parent)
@@ -69,6 +72,7 @@
         self.msgSuccess = msgSuccess
         self.msgError = msgError
         self.fileFilters = saveFilters
+        self.showInput = showInput
         
         self.outputGroup.setTitle(text)
         
@@ -111,6 +115,9 @@
         self.buttonBox.button(QDialogButtonBox.Close).setDefault(True)
         self.buttonBox.button(QDialogButtonBox.Save).setEnabled(True)
         
+        self.inputGroup.setEnabled(False)
+        self.inputGroup.hide()
+        
         self.proc = None
         
         if self.argsLists:
@@ -177,6 +184,7 @@
         procStarted = self.proc.waitForStarted()
         if not procStarted:
             self.buttonBox.setFocus()
+            self.inputGroup.setEnabled(False)
             E5MessageBox.critical(
                 self,
                 self.tr('Process Generation Error'),
@@ -184,6 +192,14 @@
                     'The process {0} could not be started. '
                     'Ensure, that it is in the search path.'
                 ).format(prog))
+        else:
+            if self.showInput:
+                self.inputGroup.setEnabled(True)
+                self.inputGroup.show()
+            else:
+                self.inputGroup.setEnabled(False)
+                self.inputGroup.hide()
+        
         return procStarted
     
     def startBatchProcesses(self, argsLists, workingDir=None,
@@ -288,3 +304,54 @@
                     self.tr("""<p>The data could not be written"""
                             """ to <b>{0}</b></p><p>Reason: {1}</p>""")
                     .format(fname, str(err)))
+    
+    def on_passwordCheckBox_toggled(self, isOn):
+        """
+        Private slot to handle the password checkbox toggled.
+        
+        @param isOn flag indicating the status of the check box (boolean)
+        """
+        if isOn:
+            self.input.setEchoMode(QLineEdit.Password)
+        else:
+            self.input.setEchoMode(QLineEdit.Normal)
+    
+    @pyqtSlot()
+    def on_sendButton_clicked(self):
+        """
+        Private slot to send the input to the manage.py process.
+        """
+        inputTxt = self.input.text()
+        inputTxt += os.linesep
+        
+        if self.passwordCheckBox.isChecked():
+            self.errors.insertPlainText(os.linesep)
+            self.errors.ensureCursorVisible()
+        else:
+            self.errors.insertPlainText(inputTxt)
+            self.errors.ensureCursorVisible()
+        
+        self.proc.write(inputTxt)
+        
+        self.input.clear()
+        self.passwordCheckBox.setChecked(False)
+    
+    def on_input_returnPressed(self):
+        """
+        Private slot to handle the press of the return key in the input field.
+        """
+        self.intercept = True
+        self.on_sendButton_clicked()
+    
+    def keyPressEvent(self, evt):
+        """
+        Protected slot to handle a key press event.
+        
+        @param evt the key press event (QKeyEvent)
+        """
+        if self.intercept:
+            self.intercept = False
+            evt.accept()
+            return
+        
+        super(DjangoDialog, self).keyPressEvent(evt)
diff -r 6e39332e4a36 -r 7e2351e4d729 ProjectDjango/DjangoDialog.ui
--- a/ProjectDjango/DjangoDialog.ui	Sun Apr 23 17:20:47 2017 +0200
+++ b/ProjectDjango/DjangoDialog.ui	Thu Apr 27 19:35:14 2017 +0200
@@ -16,13 +16,7 @@
   <property name="sizeGripEnabled">
    <bool>true</bool>
   </property>
-  <layout class="QVBoxLayout">
-   <property name="spacing">
-    <number>6</number>
-   </property>
-   <property name="margin">
-    <number>6</number>
-   </property>
+  <layout class="QVBoxLayout" name="verticalLayout">
    <item>
     <widget class="QGroupBox" name="outputGroup">
      <property name="sizePolicy">
@@ -38,7 +32,16 @@
       <property name="spacing">
        <number>6</number>
       </property>
-      <property name="margin">
+      <property name="leftMargin">
+       <number>6</number>
+      </property>
+      <property name="topMargin">
+       <number>6</number>
+      </property>
+      <property name="rightMargin">
+       <number>6</number>
+      </property>
+      <property name="bottomMargin">
        <number>6</number>
       </property>
       <item>
@@ -66,7 +69,16 @@
       <property name="spacing">
        <number>6</number>
       </property>
-      <property name="margin">
+      <property name="leftMargin">
+       <number>6</number>
+      </property>
+      <property name="topMargin">
+       <number>6</number>
+      </property>
+      <property name="rightMargin">
+       <number>6</number>
+      </property>
+      <property name="bottomMargin">
        <number>6</number>
       </property>
       <item>
@@ -86,6 +98,64 @@
     </widget>
    </item>
    <item>
+    <widget class="QGroupBox" name="inputGroup">
+     <property name="title">
+      <string>Input</string>
+     </property>
+     <layout class="QGridLayout" name="_2">
+      <item row="1" column="1">
+       <spacer>
+        <property name="orientation">
+         <enum>Qt::Horizontal</enum>
+        </property>
+        <property name="sizeType">
+         <enum>QSizePolicy::Expanding</enum>
+        </property>
+        <property name="sizeHint" stdset="0">
+         <size>
+          <width>327</width>
+          <height>29</height>
+         </size>
+        </property>
+       </spacer>
+      </item>
+      <item row="1" column="2">
+       <widget class="QPushButton" name="sendButton">
+        <property name="toolTip">
+         <string>Press to send the input to the manage.py process</string>
+        </property>
+        <property name="text">
+         <string>&amp;Send</string>
+        </property>
+        <property name="shortcut">
+         <string>Alt+S</string>
+        </property>
+       </widget>
+      </item>
+      <item row="0" column="0" colspan="3">
+       <widget class="QLineEdit" name="input">
+        <property name="toolTip">
+         <string>Enter data to be sent to the manage.py process</string>
+        </property>
+       </widget>
+      </item>
+      <item row="1" column="0">
+       <widget class="QCheckBox" name="passwordCheckBox">
+        <property name="toolTip">
+         <string>Select to switch the input field to password mode</string>
+        </property>
+        <property name="text">
+         <string>&amp;Password Mode</string>
+        </property>
+        <property name="shortcut">
+         <string>Alt+P</string>
+        </property>
+       </widget>
+      </item>
+     </layout>
+    </widget>
+   </item>
+   <item>
     <widget class="QDialogButtonBox" name="buttonBox">
      <property name="orientation">
       <enum>Qt::Horizontal</enum>
@@ -99,6 +169,12 @@
  </widget>
  <layoutdefault spacing="6" margin="11"/>
  <pixmapfunction>qPixmapFromMimeSource</pixmapfunction>
+ <tabstops>
+  <tabstop>resultbox</tabstop>
+  <tabstop>input</tabstop>
+  <tabstop>passwordCheckBox</tabstop>
+  <tabstop>sendButton</tabstop>
+ </tabstops>
  <resources/>
  <connections/>
 </ui>
diff -r 6e39332e4a36 -r 7e2351e4d729 ProjectDjango/Documentation/source/Plugin_Project_Django.ProjectDjango.DjangoDialog.html
--- a/ProjectDjango/Documentation/source/Plugin_Project_Django.ProjectDjango.DjangoDialog.html	Sun Apr 23 17:20:47 2017 +0200
+++ b/ProjectDjango/Documentation/source/Plugin_Project_Django.ProjectDjango.DjangoDialog.html	Thu Apr 27 19:35:14 2017 +0200
@@ -79,6 +79,9 @@
 <td><a href="#DjangoDialog.__saveData">__saveData</a></td>
 <td>Private slot to save the output to a file.</td>
 </tr><tr>
+<td><a href="#DjangoDialog.keyPressEvent">keyPressEvent</a></td>
+<td>Protected slot to handle a key press event.</td>
+</tr><tr>
 <td><a href="#DjangoDialog.normalExit">normalExit</a></td>
 <td>Public method to check for a normal process termination.</td>
 </tr><tr>
@@ -88,6 +91,15 @@
 <td><a href="#DjangoDialog.on_buttonBox_clicked">on_buttonBox_clicked</a></td>
 <td>Private slot called by a button of the button box clicked.</td>
 </tr><tr>
+<td><a href="#DjangoDialog.on_input_returnPressed">on_input_returnPressed</a></td>
+<td>Private slot to handle the press of the return key in the input field.</td>
+</tr><tr>
+<td><a href="#DjangoDialog.on_passwordCheckBox_toggled">on_passwordCheckBox_toggled</a></td>
+<td>Private slot to handle the password checkbox toggled.</td>
+</tr><tr>
+<td><a href="#DjangoDialog.on_sendButton_clicked">on_sendButton_clicked</a></td>
+<td>Private slot to send the input to the manage.py process.</td>
+</tr><tr>
 <td><a href="#DjangoDialog.startBatchProcesses">startBatchProcesses</a></td>
 <td>Public slot used to start a batch of processes.</td>
 </tr><tr>
@@ -101,7 +113,7 @@
 </table>
 <a NAME="DjangoDialog.__init__" ID="DjangoDialog.__init__"></a>
 <h4>DjangoDialog (Constructor)</h4>
-<b>DjangoDialog</b>(<i>text, fixed=False, linewrap=True, msgSuccess=None, msgError=None, saveFilters=None, parent=None</i>)
+<b>DjangoDialog</b>(<i>text, fixed=False, linewrap=True, msgSuccess=None, msgError=None, saveFilters=None, showInput=False, parent=None</i>)
 <p>
         Constructor
 </p><dl>
@@ -125,6 +137,9 @@
 </dd><dt><i>saveFilters=</i></dt>
 <dd>
 filename filter string (string)
+</dd><dt><i>showInput=</i></dt>
+<dd>
+flag indicating to show the input widgets (bool)
 </dd><dt><i>parent=</i></dt>
 <dd>
 parent widget (QWidget)
@@ -169,7 +184,17 @@
 <b>__saveData</b>(<i></i>)
 <p>
         Private slot to save the output to a file.
-</p><a NAME="DjangoDialog.normalExit" ID="DjangoDialog.normalExit"></a>
+</p><a NAME="DjangoDialog.keyPressEvent" ID="DjangoDialog.keyPressEvent"></a>
+<h4>DjangoDialog.keyPressEvent</h4>
+<b>keyPressEvent</b>(<i>evt</i>)
+<p>
+        Protected slot to handle a key press event.
+</p><dl>
+<dt><i>evt</i></dt>
+<dd>
+the key press event (QKeyEvent)
+</dd>
+</dl><a NAME="DjangoDialog.normalExit" ID="DjangoDialog.normalExit"></a>
 <h4>DjangoDialog.normalExit</h4>
 <b>normalExit</b>(<i></i>)
 <p>
@@ -200,7 +225,27 @@
 <dd>
 button that was clicked (QAbstractButton)
 </dd>
-</dl><a NAME="DjangoDialog.startBatchProcesses" ID="DjangoDialog.startBatchProcesses"></a>
+</dl><a NAME="DjangoDialog.on_input_returnPressed" ID="DjangoDialog.on_input_returnPressed"></a>
+<h4>DjangoDialog.on_input_returnPressed</h4>
+<b>on_input_returnPressed</b>(<i></i>)
+<p>
+        Private slot to handle the press of the return key in the input field.
+</p><a NAME="DjangoDialog.on_passwordCheckBox_toggled" ID="DjangoDialog.on_passwordCheckBox_toggled"></a>
+<h4>DjangoDialog.on_passwordCheckBox_toggled</h4>
+<b>on_passwordCheckBox_toggled</b>(<i>isOn</i>)
+<p>
+        Private slot to handle the password checkbox toggled.
+</p><dl>
+<dt><i>isOn</i></dt>
+<dd>
+flag indicating the status of the check box (boolean)
+</dd>
+</dl><a NAME="DjangoDialog.on_sendButton_clicked" ID="DjangoDialog.on_sendButton_clicked"></a>
+<h4>DjangoDialog.on_sendButton_clicked</h4>
+<b>on_sendButton_clicked</b>(<i></i>)
+<p>
+        Private slot to send the input to the manage.py process.
+</p><a NAME="DjangoDialog.startBatchProcesses" ID="DjangoDialog.startBatchProcesses"></a>
 <h4>DjangoDialog.startBatchProcesses</h4>
 <b>startBatchProcesses</b>(<i>argsLists, workingDir=None, mergedOutput=False</i>)
 <p>
diff -r 6e39332e4a36 -r 7e2351e4d729 ProjectDjango/Project.py
--- a/ProjectDjango/Project.py	Sun Apr 23 17:20:47 2017 +0200
+++ b/ProjectDjango/Project.py	Thu Apr 27 19:35:14 2017 +0200
@@ -2449,7 +2449,6 @@
         args.append(self.__getPythonExecutable())
         args.append("manage.py")
         args.append("makemigrations")
-        args.append("--noinput")
         if migration:
             args.append("--name")
             args.append(migration.replace(" ", "_"))
@@ -2458,7 +2457,7 @@
         if apps:
             args += apps
         
-        dia = DjangoDialog(title)
+        dia = DjangoDialog(title, showInput=True)
         res = dia.startProcess(args, path)
         if res:
             dia.exec_()
diff -r 6e39332e4a36 -r 7e2351e4d729 ProjectDjango/i18n/django_de.qm
Binary file ProjectDjango/i18n/django_de.qm has changed
diff -r 6e39332e4a36 -r 7e2351e4d729 ProjectDjango/i18n/django_de.ts
--- a/ProjectDjango/i18n/django_de.ts	Sun Apr 23 17:20:47 2017 +0200
+++ b/ProjectDjango/i18n/django_de.ts	Thu Apr 27 19:35:14 2017 +0200
@@ -61,40 +61,80 @@
         <translation>Django</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.ui" line="35"/>
+        <location filename="../DjangoDialog.ui" line="29"/>
         <source>Output</source>
         <translation>Ausgabe</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.ui" line="63"/>
+        <location filename="../DjangoDialog.ui" line="66"/>
         <source>Errors</source>
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="181"/>
+        <location filename="../DjangoDialog.py" line="189"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="181"/>
+        <location filename="../DjangoDialog.py" line="189"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="266"/>
+        <location filename="../DjangoDialog.py" line="282"/>
         <source>Select data file</source>
         <translation>Wähle Datendatei</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="287"/>
+        <location filename="../DjangoDialog.py" line="303"/>
         <source>Error saving data</source>
         <translation>Fehler beim Sichern der Daten</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="287"/>
+        <location filename="../DjangoDialog.py" line="303"/>
         <source>&lt;p&gt;The data could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Daten konnten nicht nach &lt;b&gt;{0}&lt;/b&gt; geschrieben werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="103"/>
+        <source>Input</source>
+        <translation>Eingabe</translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="128"/>
+        <source>&amp;Send</source>
+        <translation>&amp;Senden</translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="131"/>
+        <source>Alt+S</source>
+        <translation>Alt+S</translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="145"/>
+        <source>Select to switch the input field to password mode</source>
+        <translation>Auswählen, um das Eingabefeld in den Kennwortmodus zu schalten</translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="148"/>
+        <source>&amp;Password Mode</source>
+        <translation>&amp;Kennwortmodus</translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="151"/>
+        <source>Alt+P</source>
+        <translation>Alt+K</translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="125"/>
+        <source>Press to send the input to the manage.py process</source>
+        <translation>Drücken, um die Eingabe an den manage.py Prozess zu senden</translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="138"/>
+        <source>Enter data to be sent to the manage.py process</source>
+        <translation>Gib die an den manage.py Prozess zu sendenden Daten ein</translation>
+    </message>
 </context>
 <context>
     <name>DjangoDumpdataDataDialog</name>
@@ -555,1138 +595,1138 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="808"/>
+        <location filename="../Project.py" line="814"/>
         <source>D&amp;jango</source>
         <translation>D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1166"/>
         <source>New Form</source>
         <translation>Neues Formular</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1127"/>
+        <location filename="../Project.py" line="1133"/>
         <source>The file already exists! Overwrite it?</source>
         <translation>Die Datei existiert bereits. Überschreiben?</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="123"/>
+        <location filename="../Project.py" line="129"/>
         <source>Current Project</source>
         <translation>Aktuelles Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="128"/>
+        <location filename="../Project.py" line="134"/>
         <source>Selects the current project</source>
         <translation>Wählt das aktuelle Projekt aus</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="143"/>
+        <location filename="../Project.py" line="149"/>
         <source>Start Project</source>
         <translation>Project starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="143"/>
+        <location filename="../Project.py" line="149"/>
         <source>Start &amp;Project</source>
         <translation>&amp;Project starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="148"/>
+        <location filename="../Project.py" line="154"/>
         <source>Starts a new Django project</source>
         <translation>Startet ein neues Django Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="150"/>
+        <location filename="../Project.py" line="156"/>
         <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using &quot;django-admin.py startproject&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Project starten&lt;/b&gt;&lt;p&gt;Started ein neues Django Projekt mittels &quot;django-admin.py startproject&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="158"/>
+        <location filename="../Project.py" line="164"/>
         <source>Start Application (global)</source>
         <translation>Anwendung starten (global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="158"/>
+        <location filename="../Project.py" line="164"/>
         <source>Start Application (&amp;global)</source>
         <translation>Anwendung starten (&amp;global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="163"/>
+        <location filename="../Project.py" line="169"/>
         <source>Starts a new global Django application</source>
         <translation>Startet eine neue globale Django Anwendung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="165"/>
+        <location filename="../Project.py" line="171"/>
         <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using &quot;django-admin.py startapp&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anwendung starten (global)&lt;/b&gt;&lt;p&gt;Startet eine neue globale Django Anwendung mittels &quot;django-admin.py startapp&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="174"/>
+        <location filename="../Project.py" line="180"/>
         <source>Start Application (local)</source>
         <translation>Anwendung starten (lokal)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="174"/>
+        <location filename="../Project.py" line="180"/>
         <source>Start Application (&amp;local)</source>
         <translation>Anwendung starten (&amp;lokal)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="179"/>
+        <location filename="../Project.py" line="185"/>
         <source>Starts a new local Django application</source>
         <translation>Startet eine neue lokale Django Anwendung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="181"/>
+        <location filename="../Project.py" line="187"/>
         <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using &quot;manage.py startapp&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anwendung starten (lokal)&lt;/b&gt;&lt;p&gt;Startet eine neue lokale Django Anwendung mittels &quot;manage.py startapp&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="194"/>
+        <location filename="../Project.py" line="200"/>
         <source>Run Server</source>
         <translation>Server starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="194"/>
+        <location filename="../Project.py" line="200"/>
         <source>Run &amp;Server</source>
         <translation>&amp;Server starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="199"/>
+        <location filename="../Project.py" line="205"/>
         <source>Starts the Django Web server</source>
         <translation>Startet den Django Web-Server</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="201"/>
+        <location filename="../Project.py" line="207"/>
         <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using &quot;manage.py runserver&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Server starten&lt;/b&gt;&lt;p&gt;Startet den Django Web-Server mittels &quot;manage.py runserve&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2019"/>
+        <location filename="../Project.py" line="2027"/>
         <source>Run Web-Browser</source>
         <translation>Web-Browser starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="209"/>
+        <location filename="../Project.py" line="215"/>
         <source>Run &amp;Web-Browser</source>
         <translation>Web-&amp;Browser starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="214"/>
+        <location filename="../Project.py" line="220"/>
         <source>Starts the default Web-Browser with the URL of the Django Web server</source>
         <translation>Startet den Standard Web-Browser mit der URL des Django Web-Servers</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="217"/>
+        <location filename="../Project.py" line="223"/>
         <source>&lt;b&gt;Run Web-Browser&lt;/b&gt;&lt;p&gt;Starts the default Web-Browser with the URL of the Django Web server.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Web-Browser starten&lt;/b&gt;&lt;p&gt;Startet den Standard Web-Browser mit der URL des Django Web-Servers.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1447"/>
         <source>About Django</source>
         <translation>Über Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="267"/>
+        <location filename="../Project.py" line="273"/>
         <source>About D&amp;jango</source>
         <translation>Über D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="272"/>
+        <location filename="../Project.py" line="278"/>
         <source>Shows some information about Django</source>
         <translation>Zeigt Informationen über Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="274"/>
+        <location filename="../Project.py" line="280"/>
         <source>&lt;b&gt;About Django&lt;/b&gt;&lt;p&gt;Shows some information about Django.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Über Django&lt;/b&gt;&lt;p&gt;Zeigt Informationen über Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="850"/>
+        <location filename="../Project.py" line="856"/>
         <source>&amp;Database</source>
         <translation>&amp;Datenbank</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1896"/>
+        <location filename="../Project.py" line="1904"/>
         <source>Project</source>
         <translation>Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1636"/>
+        <location filename="../Project.py" line="1644"/>
         <source>Application</source>
         <translation>Anwendung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1638"/>
+        <location filename="../Project.py" line="1646"/>
         <source>Start Django</source>
         <translation>Django starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1638"/>
+        <location filename="../Project.py" line="1646"/>
         <source>Select if this project should be a Django Project or Application.&lt;br /&gt;Select the empty entry for none.</source>
         <translation>Auswählen, ob ddieses Projekt ein Django Projekt oder eine Django Anwendung sein soll.&lt;br /&gt;Den leeren Eintrag wählen, wenn keines zutrifft.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1715"/>
+        <location filename="../Project.py" line="1723"/>
         <source>Start Django Project</source>
         <translation>Django Projekt starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1691"/>
+        <location filename="../Project.py" line="1699"/>
         <source>Django project created successfully.</source>
         <translation>Das Django Projekt wurde erfolgreich erzeugt.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1715"/>
+        <location filename="../Project.py" line="1723"/>
         <source>Enter the name of the new Django project.</source>
         <translation>Gib den Namen des neuen Django Projektes ein.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1743"/>
+        <location filename="../Project.py" line="1751"/>
         <source>Start Django Application</source>
         <translation>Django Anwendung starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1777"/>
+        <location filename="../Project.py" line="1785"/>
         <source>Django application created successfully.</source>
         <translation>Die Django Anwendung wurde erfolgreich erzeugt.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1860"/>
+        <location filename="../Project.py" line="1868"/>
         <source>Select Project</source>
         <translation>Wähle Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1860"/>
+        <location filename="../Project.py" line="1868"/>
         <source>Select the Django project to work with.</source>
         <translation>Wähle das Django Projekt, mit dem gearbeitet werden soll.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1894"/>
+        <location filename="../Project.py" line="1902"/>
         <source>None</source>
         <translation>keines</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3215"/>
+        <location filename="../Project.py" line="3222"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1973"/>
+        <location filename="../Project.py" line="1981"/>
         <source>The Django server could not be started.</source>
         <translation>Der Django Server konnte nicht gestartet werden.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2019"/>
+        <location filename="../Project.py" line="2027"/>
         <source>Could not start the web-browser for the url &quot;{0}&quot;.</source>
         <translation>Der Web-Browser konnt mit der URL &quot;{0}&quot; nicht gestartet werden.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2824"/>
+        <location filename="../Project.py" line="2831"/>
         <source>The Django process could not be started.</source>
         <translation>Der Django Prozess konnte nicht gestartet werden.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="130"/>
+        <location filename="../Project.py" line="136"/>
         <source>&lt;b&gt;Current Project&lt;/b&gt;&lt;p&gt;Selects the current project. Used for multi-project Django projects to switch between the projects.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aktuelles Projekt&lt;/b&gt;&lt;p&gt;Wählt das aktuelle Projekt aus. Dies wird bei Django Mehrfach-Projekten benötigt, um zwischen den Projekten umzuschalten.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2522"/>
+        <location filename="../Project.py" line="2529"/>
         <source>Diff Settings</source>
         <translation>Settings Unterschiede</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="535"/>
+        <location filename="../Project.py" line="541"/>
         <source>&amp;Diff Settings</source>
         <translation>Settings &amp;Unterschiede</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="540"/>
+        <location filename="../Project.py" line="546"/>
         <source>Shows the modification made to the settings</source>
         <translation>Zeigt die Änderungen gegenüber dem Standard</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="542"/>
+        <location filename="../Project.py" line="548"/>
         <source>&lt;b&gt;Diff Settings&lt;/b&gt;&lt;p&gt;Shows the modification made to the settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Settings Unterschiede&lt;/b&gt;&lt;p&gt;Zeigt die Änderungen gegenüber dem Standard.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="927"/>
+        <location filename="../Project.py" line="933"/>
         <source>&amp;Tools</source>
         <translation>&amp;Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1899"/>
+        <location filename="../Project.py" line="1907"/>
         <source>&amp;Current Django project ({0})</source>
         <translation>&amp;Aktuelles Django Projekt ({0})</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1518"/>
         <source>Select Applications</source>
         <translation>Applikation auswählen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1518"/>
         <source>Enter the list of applications separated by spaces.</source>
         <translation>Gib die Liste der Applikationen durch Leerzeichen getrennt ein.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="549"/>
+        <location filename="../Project.py" line="555"/>
         <source>Start Python Console</source>
         <translation>Starte Python Konsole</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="549"/>
+        <location filename="../Project.py" line="555"/>
         <source>Start &amp;Python Console</source>
         <translation>Starte &amp;Python Konsole</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="554"/>
+        <location filename="../Project.py" line="560"/>
         <source>Starts a Python interactive interpreter</source>
         <translation>Startet einen interaktiven Python Interpreter</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="556"/>
+        <location filename="../Project.py" line="562"/>
         <source>&lt;b&gt;Start Python Console&lt;/b&gt;&lt;p&gt;Starts a Python interactive interpreter.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Starte Python Konsole&lt;/b&gt;&lt;p&gt;Startet einen interaktiven Python Interpreter.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2578"/>
+        <location filename="../Project.py" line="2585"/>
         <source>Create Cache Tables</source>
         <translation>Erzeuge Cache Tabellen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="229"/>
+        <location filename="../Project.py" line="235"/>
         <source>C&amp;reate Cache Tables</source>
         <translation>Erzeuge &amp;Cache Tabellen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="234"/>
+        <location filename="../Project.py" line="240"/>
         <source>Creates the tables needed to use the SQL cache backend</source>
         <translation>Erzeugt die für das SQL Cache Backend benötigten Tabellen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="236"/>
+        <location filename="../Project.py" line="242"/>
         <source>&lt;b&gt;Create Cache Tables&lt;/b&gt;&lt;p&gt;Creates the tables needed to use the SQL cache backend.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Erzeuge Cache Tabellen&lt;/b&gt;&lt;p&gt;Erzeugt die für das SQL Cache Backend benötigten Tabellen&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2585"/>
+        <location filename="../Project.py" line="2592"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation>Gib die Namen der cache Tabellen durch Leerzeichen getrennt ein.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2600"/>
+        <location filename="../Project.py" line="2607"/>
         <source>Cache tables created successfully.</source>
         <translation>Cache Tabellen erfolgreich erzeugt.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="311"/>
+        <location filename="../Project.py" line="317"/>
         <source>Introspect</source>
         <translation>Untersuchen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="311"/>
+        <location filename="../Project.py" line="317"/>
         <source>&amp;Introspect</source>
         <translation>&amp;Untersuchen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="316"/>
+        <location filename="../Project.py" line="322"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation>Untersucht die Datenbanktabellen und gibt ein Django Modellmodul aus</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="319"/>
+        <location filename="../Project.py" line="325"/>
         <source>&lt;b&gt;Introspect&lt;/b&gt;&lt;p&gt;Introspects the database tables and outputs a Django model module.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Untersuchen&lt;/b&gt;&lt;p&gt;Untersucht die Datenbanktabellen und gibt ein Django Modellmodul aus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2036"/>
+        <location filename="../Project.py" line="2044"/>
         <source>Introspect Database</source>
         <translation>Datenbank untersuchen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="327"/>
+        <location filename="../Project.py" line="333"/>
         <source>Flush</source>
         <translation>Neuinitialisierung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="327"/>
+        <location filename="../Project.py" line="333"/>
         <source>&amp;Flush</source>
         <translation>&amp;Neuinitialisierung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="332"/>
+        <location filename="../Project.py" line="338"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation>Setzt alle Datenbanktabelle in ihren Ursprungszustand zurück</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="335"/>
+        <location filename="../Project.py" line="341"/>
         <source>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Returns all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neuinitialisierung&lt;/b&gt;&lt;p&gt;Setzt alle Datenbanktabelle in ihren Ursprungszustand zurück.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2207"/>
+        <location filename="../Project.py" line="2215"/>
         <source>Flush Database</source>
         <translation>Datenbank neu initialisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2065"/>
+        <location filename="../Project.py" line="2073"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation>Eine Neuinitialisierung der Datenbank wird alle Daten löschen. Sind sie sicher?</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2077"/>
+        <location filename="../Project.py" line="2085"/>
         <source>Database tables flushed successfully.</source>
         <translation>Datenbank erfolgreich neu initialisiert.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="343"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start Client Console</source>
         <translation>Starte Datenbank Konsole</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="348"/>
+        <location filename="../Project.py" line="354"/>
         <source>Starts a console window for the database client</source>
         <translation>Started ein Konsolenfenster für den Datenbankklienten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="350"/>
+        <location filename="../Project.py" line="356"/>
         <source>&lt;b&gt;Start Client Console&lt;/b&gt;&lt;p&gt;Starts a console window for the database client.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Starte Datenbank Konsole&lt;/b&gt;&lt;p&gt;Started ein Konsolenfenster für den Datenbankklienten.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="343"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start &amp;Client Console</source>
         <translation>Starte &amp;Datenbank Konsole</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2155"/>
+        <location filename="../Project.py" line="2163"/>
         <source>Create Tables</source>
         <translation>Tabellen erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="361"/>
+        <location filename="../Project.py" line="367"/>
         <source>Create &amp;Tables</source>
         <translation>&amp;Tabellen erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="366"/>
+        <location filename="../Project.py" line="372"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation>Zeigt die CREATE TABLE SQL Befehle für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="369"/>
+        <location filename="../Project.py" line="375"/>
         <source>&lt;b&gt;Create Tables&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tabellen erzeugen&lt;/b&gt;&lt;p&gt;Zeigt die CREATE TABLE SQL Befehle für eine oder mehrere Anwendungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="872"/>
+        <location filename="../Project.py" line="878"/>
         <source>Show &amp;SQL</source>
         <translation>Zeige &amp;SQL</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2164"/>
+        <location filename="../Project.py" line="2172"/>
         <source>Create Indexes</source>
         <translation>Indices erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="378"/>
+        <location filename="../Project.py" line="384"/>
         <source>Create &amp;Indexes</source>
         <translation>&amp;Indices erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="386"/>
+        <location filename="../Project.py" line="392"/>
         <source>&lt;b&gt;Create Indexes&lt;/b&gt;&lt;p&gt;Prints the CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Indices erzeugen&lt;/b&gt;&lt;p&gt;Zeigt die CREATE INDEX SQL Befehle für eine oder mehrere Anwendungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2173"/>
+        <location filename="../Project.py" line="2181"/>
         <source>Create Everything</source>
         <translation>Alles erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="395"/>
+        <location filename="../Project.py" line="401"/>
         <source>Create &amp;Everything</source>
         <translation>&amp;Alles erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="400"/>
+        <location filename="../Project.py" line="406"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation>Zeigt die CREATE ... SQL Befehle für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="403"/>
+        <location filename="../Project.py" line="409"/>
         <source>&lt;b&gt;Create Everything&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alles erzeugen&lt;/b&gt;&lt;p&gt;Zeigt die CREATE TABLE, spezifische und CREATE INDEX SQL Befehle für eine oder mehrere Anwendungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="383"/>
+        <location filename="../Project.py" line="389"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation>Zeigt die CREATE INDEX SQL Befehle für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2182"/>
+        <location filename="../Project.py" line="2190"/>
         <source>Custom Statements</source>
         <translation>Spezifische Befehle</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="412"/>
+        <location filename="../Project.py" line="418"/>
         <source>&amp;Custom Statements</source>
         <translation>&amp;Spezifische Befehle</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="417"/>
+        <location filename="../Project.py" line="423"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation>Zeigt spezifische SQL Befehle für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="420"/>
+        <location filename="../Project.py" line="426"/>
         <source>&lt;b&gt;Custom Statements&lt;/b&gt;&lt;p&gt;Prints the custom table modifying SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Spezifische Befehle&lt;/b&gt;&lt;p&gt;Zeigt spezifische SQL Befehle für eine oder mehrere Anwendungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2191"/>
+        <location filename="../Project.py" line="2199"/>
         <source>Drop Tables</source>
         <translation>Tabellen löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="429"/>
+        <location filename="../Project.py" line="435"/>
         <source>&amp;Drop Tables</source>
         <translation>Tabellen &amp;löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="434"/>
+        <location filename="../Project.py" line="440"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation>Zeigt die DROP TABLE SQL Befehle für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="437"/>
+        <location filename="../Project.py" line="443"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tabellen löschen&lt;/b&gt;&lt;p&gt;Zeigt die DROP TABLE SQL Befehle für eine oder mehrere Anwendungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="463"/>
+        <location filename="../Project.py" line="469"/>
         <source>&amp;Flush Database</source>
         <translation>&amp;Datenbank neu initialisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="468"/>
+        <location filename="../Project.py" line="474"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation>Zeigt eine Befehlsliste, um alle Datenbanktabelle in ihren Ursprungszustand zurückzusetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="471"/>
+        <location filename="../Project.py" line="477"/>
         <source>&lt;b&gt;Flush Database&lt;/b&gt;&lt;p&gt;Prints a list of statements to return all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datenbank neu initialisieren&lt;/b&gt;&lt;p/&gt;Zeigt eine Befehlsliste, um alle Datenbanktabelle in ihren Ursprungszustand zurückzusetzen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2214"/>
+        <location filename="../Project.py" line="2222"/>
         <source>Reset Sequences</source>
         <translation>Sequenzen zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="480"/>
+        <location filename="../Project.py" line="486"/>
         <source>Reset &amp;Sequences</source>
         <translation>Se&amp;quenzen zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="485"/>
+        <location filename="../Project.py" line="491"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation>Zeigt die SQL Befehle zum Zurücksetzen von Sequenzen für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="488"/>
+        <location filename="../Project.py" line="494"/>
         <source>&lt;b&gt;Reset Sequences&lt;/b&gt;&lt;p&gt;Prints the SQL statements for resetting sequences for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sequenzen zurücksetzen&lt;/b&gt;&lt;p&gt;Zeigt die SQL Befehle zum Zurücksetzen von Sequenzen für eine oder mehrere Anwendungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2615"/>
+        <location filename="../Project.py" line="2622"/>
         <source>Dump Data</source>
         <translation>Daten sichern</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="567"/>
+        <location filename="../Project.py" line="573"/>
         <source>&amp;Dump Data</source>
         <translation>Daten &amp;sichern</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="572"/>
+        <location filename="../Project.py" line="578"/>
         <source>Dump the database data to a fixture</source>
         <translation>Schreibt die Datenbank in ein Fixture</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="574"/>
+        <location filename="../Project.py" line="580"/>
         <source>&lt;b&gt;Dump Data&lt;/b&gt;&lt;p&gt;Dump the database data to a fixture.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Daten sichern&lt;/b&lt;&lt;p&gt;Schreibt die Datenbank in ein Fixture.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="945"/>
+        <location filename="../Project.py" line="951"/>
         <source>T&amp;esting</source>
         <translation>&amp;Testen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2256"/>
+        <location filename="../Project.py" line="2264"/>
         <source>SQL Files (*.sql)</source>
         <translation>SQL Dateien (*.sql)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2638"/>
+        <location filename="../Project.py" line="2645"/>
         <source>JSON Files (*.json)</source>
         <translation>JSON Dateien (*.json)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2640"/>
+        <location filename="../Project.py" line="2647"/>
         <source>XML Files (*.xml)</source>
         <translation>XML Dateien (*.xml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2642"/>
+        <location filename="../Project.py" line="2649"/>
         <source>YAML Files (*.yaml)</source>
         <translation>YAML Dateien (*.yaml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2654"/>
+        <location filename="../Project.py" line="2661"/>
         <source>Load Data</source>
         <translation>Daten laden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="581"/>
+        <location filename="../Project.py" line="587"/>
         <source>&amp;Load Data</source>
         <translation>Daten &amp;laden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="586"/>
+        <location filename="../Project.py" line="592"/>
         <source>Load data from fixture files</source>
         <translation>Lädt Daten aus Fixturedateien</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="588"/>
+        <location filename="../Project.py" line="594"/>
         <source>&lt;b&gt;Load Data&lt;/b&gt;&lt;p&gt;Load data from fixture files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Daten laden&lt;/b&gt;&lt;p&gt;Lädt Daten aus Fixturedateien.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="595"/>
+        <location filename="../Project.py" line="601"/>
         <source>Run Testsuite</source>
         <translation>Testsuite starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="595"/>
+        <location filename="../Project.py" line="601"/>
         <source>Run &amp;Testsuite</source>
         <translation>&amp;Testsuite starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="600"/>
+        <location filename="../Project.py" line="606"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation>Startet die Testsuite für Anwendungen oder die Site</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="602"/>
+        <location filename="../Project.py" line="608"/>
         <source>&lt;b&gt;Run Testsuite&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Testsuite starten&lt;/b&gt;&lt;p&gt;Startet die Testsuite für Anwendungen oder die Site.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="626"/>
+        <location filename="../Project.py" line="632"/>
         <source>Run Testserver</source>
         <translation>Testserver starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="626"/>
+        <location filename="../Project.py" line="632"/>
         <source>Run Test&amp;server</source>
         <translation>Test&amp;server starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="631"/>
+        <location filename="../Project.py" line="637"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation>Startet einen Entwicklungsserver mit Daten aus einer Liste von Fixtures</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="633"/>
+        <location filename="../Project.py" line="639"/>
         <source>&lt;b&gt;Run Testserver&lt;/b&gt;&lt;p&gt;Run a development server with data from a set of fixtures.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Testserver starten&lt;/b&gt;&lt;p&gt;Startet einen Entwicklungsserver mit Daten aus einer Liste von Fixtures.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2751"/>
+        <location filename="../Project.py" line="2758"/>
         <source>The Django test server could not be started.</source>
         <translation>Der Django Testserver konnte nicht gestartet werden.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="249"/>
+        <location filename="../Project.py" line="255"/>
         <source>Help</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="249"/>
+        <location filename="../Project.py" line="255"/>
         <source>&amp;Help</source>
         <translation>&amp;Hilfe</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="254"/>
+        <location filename="../Project.py" line="260"/>
         <source>Shows the Django help index</source>
         <translation>Zeigt den Django Hilfe Index an</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="256"/>
+        <location filename="../Project.py" line="262"/>
         <source>&lt;b&gt;Help&lt;/b&gt;&lt;p&gt;Shows the Django help index page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hilfe&lt;/b&gt;&lt;p&gt;Zeigt den Django Hilfe Index an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1040"/>
+        <location filename="../Project.py" line="1046"/>
         <source>New template...</source>
         <translation>Neues Template...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1049"/>
+        <location filename="../Project.py" line="1055"/>
         <source>Update all catalogs</source>
         <translation>Alle Kataloge aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1052"/>
+        <location filename="../Project.py" line="1058"/>
         <source>Update selected catalogs</source>
         <translation>Ausgewählte Kataloge aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1063"/>
+        <location filename="../Project.py" line="1069"/>
         <source>Compile all catalogs</source>
         <translation>Alle Kataloge übersetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1066"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Compile selected catalogs</source>
         <translation>Ausgewählte Kataloge übersetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2920"/>
+        <location filename="../Project.py" line="2927"/>
         <source>Initializing message catalog for &apos;{0}&apos;</source>
         <translation>Initialisiere Textkatalog für &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3179"/>
+        <location filename="../Project.py" line="3186"/>
         <source>No current site selected or no site created yet. Aborting...</source>
         <translation>Keine aktuelle Site ausgewählt oder noch keine Site erzeugt. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2940"/>
+        <location filename="../Project.py" line="2947"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation>
 Textkatalog erfolgreich initialisiert.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3052"/>
+        <location filename="../Project.py" line="3059"/>
         <source>Updating message catalogs</source>
         <translation>Aktualisiere Textkataloge</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3143"/>
+        <location filename="../Project.py" line="3150"/>
         <source>No locales detected. Aborting...</source>
         <translation>Keine Sprachen erkannt. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3103"/>
+        <location filename="../Project.py" line="3110"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation>
 Textkataloge erfolgreich aktualisiert.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3169"/>
+        <location filename="../Project.py" line="3176"/>
         <source>Compiling message catalogs</source>
         <translation>Übersetze Textkataloge</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3186"/>
+        <location filename="../Project.py" line="3193"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation>
 Textkataloge erfolgreich übersetzt.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1056"/>
+        <location filename="../Project.py" line="1062"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation>Alle Kataloge aktualisieren (mit veralteten)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1059"/>
+        <location filename="../Project.py" line="1065"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation>Ausgewählte Kataloge aktualisieren (mit veralteten)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1789"/>
+        <location filename="../Project.py" line="1797"/>
         <source>Start Global Django Application</source>
         <translation>Globale Django Anwendung beginnen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1789"/>
+        <location filename="../Project.py" line="1797"/>
         <source>Enter the name of the new global Django application.</source>
         <translation>Gib den Namen der neuen globalen Django Anwendung ein.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1811"/>
+        <location filename="../Project.py" line="1819"/>
         <source>Start Local Django Application</source>
         <translation>Lokale Django Anwendung beginnen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1811"/>
+        <location filename="../Project.py" line="1819"/>
         <source>Enter the name of the new local Django application.</source>
         <translation>Gib den Namen der neuen lokalen Django Anwendung ein.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3084"/>
+        <location filename="../Project.py" line="3091"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation>Aktualisiere Textkataloge (veraltete Texte behalten)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2781"/>
+        <location filename="../Project.py" line="2788"/>
         <source>Change Password</source>
         <translation>Kennwort ändern</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="645"/>
+        <location filename="../Project.py" line="651"/>
         <source>Change &amp;Password</source>
         <translation>&amp;Kennwort ändern</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="650"/>
+        <location filename="../Project.py" line="656"/>
         <source>Change the password of a user</source>
         <translation>Ändert das Kennwort eines Nutzers</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="652"/>
+        <location filename="../Project.py" line="658"/>
         <source>&lt;b&gt;Change Password&lt;/b&gt;&lt;p&gt;Change the password of a user of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kennwort ändern&lt;/b&gt;&lt;p&gt;Ändert das Kennwort eines Nutzers des Django Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="659"/>
+        <location filename="../Project.py" line="665"/>
         <source>Create Superuser</source>
         <translation>Superuser anlegen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="659"/>
+        <location filename="../Project.py" line="665"/>
         <source>Create &amp;Superuser</source>
         <translation>&amp;Superuser anlegen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="664"/>
+        <location filename="../Project.py" line="670"/>
         <source>Create a superuser account</source>
         <translation>Legt eine Superuser Kennung an</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="666"/>
+        <location filename="../Project.py" line="672"/>
         <source>&lt;b&gt;Create Superuser&lt;/b&gt;&lt;p&gt;Create a superuser account for the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Superuser anlegen&lt;/b&gt;&lt;p&gt;Legt eine Superuser Kennung für das Django Projekt an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2839"/>
+        <location filename="../Project.py" line="2846"/>
         <source>Clear Sessions</source>
         <translation>Sessions löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="677"/>
+        <location filename="../Project.py" line="683"/>
         <source>Clear &amp;Sessions</source>
         <translation>&amp;Sessions löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="682"/>
+        <location filename="../Project.py" line="688"/>
         <source>Clear expired sessions</source>
         <translation>Löscht abgelaufene Sessions</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="684"/>
+        <location filename="../Project.py" line="690"/>
         <source>&lt;b&gt;Clear Sessions&lt;/b&gt;&lt;p&gt;Clear expired sessions of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sessions löschen&lt;/b&gt;&lt;p&gt;Löscht abgelaufene Sessions des Django Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="966"/>
+        <location filename="../Project.py" line="972"/>
         <source>&amp;Authorization</source>
         <translation>&amp;Authorisierung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="983"/>
+        <location filename="../Project.py" line="989"/>
         <source>&amp;Session</source>
         <translation>&amp;Session</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2781"/>
+        <location filename="../Project.py" line="2788"/>
         <source>Enter the name of the user:</source>
         <translation>Gib den Namen des Nutzers ein:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2851"/>
+        <location filename="../Project.py" line="2858"/>
         <source>Expired sessions cleared successfully.</source>
         <translation>Abgelaufene Sessions erfolgreich gelöscht.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1447"/>
         <source>&lt;p&gt;Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;/p&gt;&lt;p&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Version:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;URL:&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;{1}&quot;&gt;{1}&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Django ist ein Python Web-Framework, das eine schnelle Entwicklung und ein klares, pragmatisches Design fördert.&lt;/p&gt;&lt;p&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Version:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;URL:&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;{1}&quot;&gt;{1}&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1760"/>
+        <location filename="../Project.py" line="1768"/>
         <source>&lt;p&gt;The &lt;b&gt;django-admin.py&lt;/b&gt; script is not in the path. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das &lt;b&gt;django-admin.py&lt;/b&gt; Skript ist nicht im Pfad. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1025"/>
+        <location filename="../Project.py" line="1031"/>
         <source>Open with {0}</source>
         <translation>Mit {0} öffnen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3215"/>
+        <location filename="../Project.py" line="3222"/>
         <source>The translations editor process ({0}) could not be started.</source>
         <translation>Der Prozess für den Übersetzungseditor ({0}) konnte nicht gestartet werden.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1166"/>
         <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt; Problem: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die neue Formulardatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden.&lt;br&gt;Problem: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2200"/>
+        <location filename="../Project.py" line="2208"/>
         <source>Drop Indexes</source>
         <translation>Indices löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="446"/>
+        <location filename="../Project.py" line="452"/>
         <source>&amp;Drop Indexes</source>
         <translation>&amp;Indices löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="451"/>
+        <location filename="../Project.py" line="457"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation>Zeigt die DROP INDEX SQL Befehle für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="454"/>
+        <location filename="../Project.py" line="460"/>
         <source>&lt;b&gt;Drop Indexes&lt;/b&gt;&lt;p&gt;Prints the DROP INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Indices löschen&lt;/b&gt;&lt;p&gt;Zeigt die DROP INDEX SQL Befehle für eine oder mehrere Anwendungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="695"/>
+        <location filename="../Project.py" line="701"/>
         <source>Show Migrations</source>
         <translation>Migrationen anzeigen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="695"/>
+        <location filename="../Project.py" line="701"/>
         <source>&amp;Show Migrations</source>
         <translation>Migrationen an&amp;zeigen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="700"/>
+        <location filename="../Project.py" line="706"/>
         <source>Show a list of available migrations</source>
         <translation>Zeigt eine Liste verfügbarer Migrationen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="702"/>
+        <location filename="../Project.py" line="708"/>
         <source>&lt;b&gt;Show Migrations&lt;/b&gt;&lt;p&gt;This shows a list of available migrations of the Django project and their status.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Migrationen anzeigen&lt;/b&gt;&lt;p&gt;Dies zeigt eine Liste der verfügbaren Migrationen des Django Projektes und ihren Status.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="710"/>
+        <location filename="../Project.py" line="716"/>
         <source>Show Migrations Plan</source>
         <translation>Migrationsplan anzeigen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="710"/>
+        <location filename="../Project.py" line="716"/>
         <source>Show Migrations &amp;Plan</source>
         <translation>Migrations&amp;plan anzeigen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="715"/>
+        <location filename="../Project.py" line="721"/>
         <source>Show a list with the migrations plan</source>
         <translation>Zeigt eine Liste mit dem Migrationsplan</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="717"/>
+        <location filename="../Project.py" line="723"/>
         <source>&lt;b&gt;Show Migrations Plan&lt;/b&gt;&lt;p&gt;This shows a list with the migrations plan of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Migrationsplan anzeigen&lt;/b&gt;&lt;p&gt;Dies zeigt eine Liste mit dem Migrationplans des Django Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="902"/>
+        <location filename="../Project.py" line="908"/>
         <source>&amp;Migrations</source>
         <translation>&amp;Migrationen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="725"/>
+        <location filename="../Project.py" line="731"/>
         <source>Apply All Migrations</source>
         <translation>Alle Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="725"/>
+        <location filename="../Project.py" line="731"/>
         <source>&amp;Apply All Migrations</source>
         <translation>Alle Migrationen &amp;anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="730"/>
+        <location filename="../Project.py" line="736"/>
         <source>Apply all available migrations</source>
         <translation>Alle verfügbaren Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="732"/>
+        <location filename="../Project.py" line="738"/>
         <source>&lt;b&gt;Apply All Migrations&lt;/b&gt;&lt;p&gt;This applies all migrations of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alle Migrationen anwenden&lt;/b&gt;&lt;p&gt;Dies wendet alle Migrationen des Django Projektes an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2310"/>
+        <location filename="../Project.py" line="2318"/>
         <source>Apply Selected Migrations</source>
         <translation>Ausgewählte Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="744"/>
+        <location filename="../Project.py" line="750"/>
         <source>Apply selected migrations</source>
         <translation>Ausgewählte Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="746"/>
+        <location filename="../Project.py" line="752"/>
         <source>&lt;b&gt;Apply Selected Migrations&lt;/b&gt;&lt;p&gt;This applies selected migrations of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ausgewählte Migrationen anwenden&lt;/b&gt;&lt;p&gt;Dies wendet ausgewählte Migrationen des Django Projektes an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2377"/>
         <source>Unapply Migrations</source>
         <translation>Migrationen rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="755"/>
+        <location filename="../Project.py" line="761"/>
         <source>&amp;Unapply Migrations</source>
         <translation>Migrationen &amp;rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="760"/>
+        <location filename="../Project.py" line="766"/>
         <source>Unapply all migrations for an app</source>
         <translation>Alle Migrationen einer Anwendung rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="762"/>
+        <location filename="../Project.py" line="768"/>
         <source>&lt;b&gt;Unapply Migrations&lt;/b&gt;&lt;p&gt;This unapplies all migrations for an app of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Migrationen rückgängig machen&lt;/b&gt;&lt;p&gt;Dies macht alle Migrationen einer Anwendung des Django Projektes rückgängig.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2446"/>
+        <location filename="../Project.py" line="2454"/>
         <source>Make Migrations</source>
         <translation>Migrationen generieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="770"/>
+        <location filename="../Project.py" line="776"/>
         <source>&amp;Make Migrations</source>
         <translation>Migrationen &amp;generieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="775"/>
+        <location filename="../Project.py" line="781"/>
         <source>Generate migrations for the project</source>
         <translation>Generiert Migrationen für das Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="777"/>
+        <location filename="../Project.py" line="783"/>
         <source>&lt;b&gt;Make Migrations&lt;/b&gt;&lt;p&gt;This generates migrations for the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Migrationen generieren&lt;/b&gt;&lt;p&gt;Dies generiert Migrationen für das Django Projekt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2477"/>
+        <location filename="../Project.py" line="2484"/>
         <source>No migrations available.</source>
         <translation>Keine Migrationen verfügbar.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2335"/>
+        <location filename="../Project.py" line="2343"/>
         <source>Apply Migrations</source>
         <translation>Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2377"/>
         <source>Select an application:</source>
         <translation>Wähle eine Anwendung aus:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2490"/>
+        <location filename="../Project.py" line="2497"/>
         <source>Squash Migrations</source>
         <translation>Migrationen kürzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="784"/>
+        <location filename="../Project.py" line="790"/>
         <source>S&amp;quash Migrations</source>
         <translation>Migrationen &amp;kürzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="789"/>
+        <location filename="../Project.py" line="795"/>
         <source>Squash migrations of an application of the project</source>
         <translation>Migrationen einer Anwendung des Projektes zusammenfassen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="791"/>
+        <location filename="../Project.py" line="797"/>
         <source>&lt;b&gt;Squash Migrations&lt;/b&gt;&lt;p&gt;This squashes migrations of an application of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Migrationen kürzen&lt;/b&gt;&lt;p&gt;Dies fasst Migrationen einer Anwendung des Django Projektes zusammen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="497"/>
+        <location filename="../Project.py" line="503"/>
         <source>Apply Migration</source>
         <translation>Migration anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="497"/>
+        <location filename="../Project.py" line="503"/>
         <source>&amp;Apply Migration</source>
         <translation>Migration &amp;anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="502"/>
+        <location filename="../Project.py" line="508"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation>Zeigt die SQL Befehle, um eine Migration einer Anwendung auszuführen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="505"/>
+        <location filename="../Project.py" line="511"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Migration anwenden&lt;/b&gt;&lt;p&gt;Zeigt die SQL Befehle, um eine Migration einer Anwendung auszuführen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="514"/>
+        <location filename="../Project.py" line="520"/>
         <source>Unapply Migration</source>
         <translation>Migration rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="514"/>
+        <location filename="../Project.py" line="520"/>
         <source>&amp;Unapply Migration</source>
         <translation>Migration &amp;rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="519"/>
+        <location filename="../Project.py" line="525"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation>Zeigt die SQL Befehle, um eine Migration einer Anwendung rückgängig zu machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="522"/>
+        <location filename="../Project.py" line="528"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Migration rückgängig machen&lt;/b&gt;&lt;p&gt;Zeigt die SQL Befehle, um eine Migration einer Anwendung rückgängig zu machen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2238"/>
+        <location filename="../Project.py" line="2246"/>
         <source>SQL Migrate</source>
         <translation>SQL Migrate</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3260"/>
+        <location filename="../Project.py" line="3267"/>
         <source>Check Project</source>
         <translation>Projekt prüfen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="290"/>
+        <location filename="../Project.py" line="296"/>
         <source>Inspects the Django project for common problems</source>
         <translation>Prüft das Django Projekt auf übliche Probleme</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="292"/>
+        <location filename="../Project.py" line="298"/>
         <source>&lt;b&gt;Check Project&lt;/b&gt;&lt;p&gt;This inspects the Django project for common problems.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Projekt prüfen&lt;/b&gt;&lt;p&gt;Dies prüft das Django Projekt auf übliche Probleme.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="609"/>
+        <location filename="../Project.py" line="615"/>
         <source>Run Testsuite (-Wall)</source>
         <translation>Testsuite starten (-Wall)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="614"/>
+        <location filename="../Project.py" line="620"/>
         <source>Run the test suite for applications or the whole site with activated deprecation warnings</source>
         <translation>Startet die Testsuite für Anwendungen oder die Site mit Aktivierung von Deprecation Warnungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="617"/>
+        <location filename="../Project.py" line="623"/>
         <source>&lt;b&gt;Run Testsuite (-Wall)&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site with activated deprecation warnings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Testsuite starten (-Wall)&lt;/b&gt;&lt;p&gt;Startet die Testsuite für Anwendungen oder die Site mit Aktivierung von Deprecation Warnungen.&lt;/p&gt;</translation>
     </message>
@@ -1694,14 +1734,9 @@
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="413"/>
+        <location filename="../../PluginProjectDjango.py" line="389"/>
         <source>Django</source>
         <translation>Django</translation>
     </message>
-    <message>
-        <location filename="../../PluginProjectDjango.py" line="180"/>
-        <source>eric6 version is too old, {0}, {1} or newer needed.</source>
-        <translation>Die eric6 Version ist zu alt. Es wird {0}, {1} oder neuer benötigt.</translation>
-    </message>
 </context>
 </TS>
diff -r 6e39332e4a36 -r 7e2351e4d729 ProjectDjango/i18n/django_empty.ts
--- a/ProjectDjango/i18n/django_empty.ts	Sun Apr 23 17:20:47 2017 +0200
+++ b/ProjectDjango/i18n/django_empty.ts	Thu Apr 27 19:35:14 2017 +0200
@@ -56,27 +56,27 @@
 <context>
     <name>DjangoDialog</name>
     <message>
-        <location filename="../DjangoDialog.py" line="181"/>
+        <location filename="../DjangoDialog.py" line="189"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="181"/>
+        <location filename="../DjangoDialog.py" line="189"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="266"/>
+        <location filename="../DjangoDialog.py" line="282"/>
         <source>Select data file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="287"/>
+        <location filename="../DjangoDialog.py" line="303"/>
         <source>Error saving data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="287"/>
+        <location filename="../DjangoDialog.py" line="303"/>
         <source>&lt;p&gt;The data could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86,15 +86,55 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.ui" line="35"/>
+        <location filename="../DjangoDialog.ui" line="29"/>
         <source>Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.ui" line="63"/>
+        <location filename="../DjangoDialog.ui" line="66"/>
         <source>Errors</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="103"/>
+        <source>Input</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="128"/>
+        <source>&amp;Send</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="131"/>
+        <source>Alt+S</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="145"/>
+        <source>Select to switch the input field to password mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="148"/>
+        <source>&amp;Password Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="151"/>
+        <source>Alt+P</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="125"/>
+        <source>Press to send the input to the manage.py process</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="138"/>
+        <source>Enter data to be sent to the manage.py process</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DjangoDumpdataDataDialog</name>
@@ -555,1135 +595,1135 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="123"/>
+        <location filename="../Project.py" line="129"/>
         <source>Current Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="128"/>
+        <location filename="../Project.py" line="134"/>
         <source>Selects the current project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="130"/>
+        <location filename="../Project.py" line="136"/>
         <source>&lt;b&gt;Current Project&lt;/b&gt;&lt;p&gt;Selects the current project. Used for multi-project Django projects to switch between the projects.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="143"/>
+        <location filename="../Project.py" line="149"/>
         <source>Start Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="143"/>
+        <location filename="../Project.py" line="149"/>
         <source>Start &amp;Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="148"/>
+        <location filename="../Project.py" line="154"/>
         <source>Starts a new Django project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="150"/>
+        <location filename="../Project.py" line="156"/>
         <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using &quot;django-admin.py startproject&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="158"/>
+        <location filename="../Project.py" line="164"/>
         <source>Start Application (global)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="158"/>
+        <location filename="../Project.py" line="164"/>
         <source>Start Application (&amp;global)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="163"/>
+        <location filename="../Project.py" line="169"/>
         <source>Starts a new global Django application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="165"/>
+        <location filename="../Project.py" line="171"/>
         <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using &quot;django-admin.py startapp&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="174"/>
+        <location filename="../Project.py" line="180"/>
         <source>Start Application (local)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="174"/>
+        <location filename="../Project.py" line="180"/>
         <source>Start Application (&amp;local)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="179"/>
+        <location filename="../Project.py" line="185"/>
         <source>Starts a new local Django application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="181"/>
+        <location filename="../Project.py" line="187"/>
         <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using &quot;manage.py startapp&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="194"/>
+        <location filename="../Project.py" line="200"/>
         <source>Run Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="194"/>
+        <location filename="../Project.py" line="200"/>
         <source>Run &amp;Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="199"/>
+        <location filename="../Project.py" line="205"/>
         <source>Starts the Django Web server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="201"/>
+        <location filename="../Project.py" line="207"/>
         <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using &quot;manage.py runserver&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2019"/>
+        <location filename="../Project.py" line="2027"/>
         <source>Run Web-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="209"/>
+        <location filename="../Project.py" line="215"/>
         <source>Run &amp;Web-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="214"/>
+        <location filename="../Project.py" line="220"/>
         <source>Starts the default Web-Browser with the URL of the Django Web server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="217"/>
+        <location filename="../Project.py" line="223"/>
         <source>&lt;b&gt;Run Web-Browser&lt;/b&gt;&lt;p&gt;Starts the default Web-Browser with the URL of the Django Web server.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2578"/>
+        <location filename="../Project.py" line="2585"/>
         <source>Create Cache Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="229"/>
+        <location filename="../Project.py" line="235"/>
         <source>C&amp;reate Cache Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="234"/>
+        <location filename="../Project.py" line="240"/>
         <source>Creates the tables needed to use the SQL cache backend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="236"/>
+        <location filename="../Project.py" line="242"/>
         <source>&lt;b&gt;Create Cache Tables&lt;/b&gt;&lt;p&gt;Creates the tables needed to use the SQL cache backend.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="249"/>
+        <location filename="../Project.py" line="255"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="249"/>
+        <location filename="../Project.py" line="255"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="254"/>
+        <location filename="../Project.py" line="260"/>
         <source>Shows the Django help index</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="256"/>
+        <location filename="../Project.py" line="262"/>
         <source>&lt;b&gt;Help&lt;/b&gt;&lt;p&gt;Shows the Django help index page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1447"/>
         <source>About Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="267"/>
+        <location filename="../Project.py" line="273"/>
         <source>About D&amp;jango</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="272"/>
+        <location filename="../Project.py" line="278"/>
         <source>Shows some information about Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="274"/>
+        <location filename="../Project.py" line="280"/>
         <source>&lt;b&gt;About Django&lt;/b&gt;&lt;p&gt;Shows some information about Django.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="311"/>
+        <location filename="../Project.py" line="317"/>
         <source>Introspect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="311"/>
+        <location filename="../Project.py" line="317"/>
         <source>&amp;Introspect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="316"/>
+        <location filename="../Project.py" line="322"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="319"/>
+        <location filename="../Project.py" line="325"/>
         <source>&lt;b&gt;Introspect&lt;/b&gt;&lt;p&gt;Introspects the database tables and outputs a Django model module.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="327"/>
+        <location filename="../Project.py" line="333"/>
         <source>Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="327"/>
+        <location filename="../Project.py" line="333"/>
         <source>&amp;Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="332"/>
+        <location filename="../Project.py" line="338"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="335"/>
+        <location filename="../Project.py" line="341"/>
         <source>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Returns all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="343"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start Client Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="343"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start &amp;Client Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="348"/>
+        <location filename="../Project.py" line="354"/>
         <source>Starts a console window for the database client</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="350"/>
+        <location filename="../Project.py" line="356"/>
         <source>&lt;b&gt;Start Client Console&lt;/b&gt;&lt;p&gt;Starts a console window for the database client.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2155"/>
+        <location filename="../Project.py" line="2163"/>
         <source>Create Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="361"/>
+        <location filename="../Project.py" line="367"/>
         <source>Create &amp;Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="366"/>
+        <location filename="../Project.py" line="372"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="369"/>
+        <location filename="../Project.py" line="375"/>
         <source>&lt;b&gt;Create Tables&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2164"/>
+        <location filename="../Project.py" line="2172"/>
         <source>Create Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="378"/>
+        <location filename="../Project.py" line="384"/>
         <source>Create &amp;Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="383"/>
+        <location filename="../Project.py" line="389"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="386"/>
+        <location filename="../Project.py" line="392"/>
         <source>&lt;b&gt;Create Indexes&lt;/b&gt;&lt;p&gt;Prints the CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2173"/>
+        <location filename="../Project.py" line="2181"/>
         <source>Create Everything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="395"/>
+        <location filename="../Project.py" line="401"/>
         <source>Create &amp;Everything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="400"/>
+        <location filename="../Project.py" line="406"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="403"/>
+        <location filename="../Project.py" line="409"/>
         <source>&lt;b&gt;Create Everything&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2182"/>
+        <location filename="../Project.py" line="2190"/>
         <source>Custom Statements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="412"/>
+        <location filename="../Project.py" line="418"/>
         <source>&amp;Custom Statements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="417"/>
+        <location filename="../Project.py" line="423"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="420"/>
+        <location filename="../Project.py" line="426"/>
         <source>&lt;b&gt;Custom Statements&lt;/b&gt;&lt;p&gt;Prints the custom table modifying SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2191"/>
+        <location filename="../Project.py" line="2199"/>
         <source>Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="429"/>
+        <location filename="../Project.py" line="435"/>
         <source>&amp;Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="434"/>
+        <location filename="../Project.py" line="440"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="437"/>
+        <location filename="../Project.py" line="443"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2200"/>
+        <location filename="../Project.py" line="2208"/>
         <source>Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="446"/>
+        <location filename="../Project.py" line="452"/>
         <source>&amp;Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="451"/>
+        <location filename="../Project.py" line="457"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="454"/>
+        <location filename="../Project.py" line="460"/>
         <source>&lt;b&gt;Drop Indexes&lt;/b&gt;&lt;p&gt;Prints the DROP INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2207"/>
+        <location filename="../Project.py" line="2215"/>
         <source>Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="463"/>
+        <location filename="../Project.py" line="469"/>
         <source>&amp;Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="468"/>
+        <location filename="../Project.py" line="474"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="471"/>
+        <location filename="../Project.py" line="477"/>
         <source>&lt;b&gt;Flush Database&lt;/b&gt;&lt;p&gt;Prints a list of statements to return all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2214"/>
+        <location filename="../Project.py" line="2222"/>
         <source>Reset Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="480"/>
+        <location filename="../Project.py" line="486"/>
         <source>Reset &amp;Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="485"/>
+        <location filename="../Project.py" line="491"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="488"/>
+        <location filename="../Project.py" line="494"/>
         <source>&lt;b&gt;Reset Sequences&lt;/b&gt;&lt;p&gt;Prints the SQL statements for resetting sequences for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2522"/>
+        <location filename="../Project.py" line="2529"/>
         <source>Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="535"/>
+        <location filename="../Project.py" line="541"/>
         <source>&amp;Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="540"/>
+        <location filename="../Project.py" line="546"/>
         <source>Shows the modification made to the settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="542"/>
+        <location filename="../Project.py" line="548"/>
         <source>&lt;b&gt;Diff Settings&lt;/b&gt;&lt;p&gt;Shows the modification made to the settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="549"/>
+        <location filename="../Project.py" line="555"/>
         <source>Start Python Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="549"/>
+        <location filename="../Project.py" line="555"/>
         <source>Start &amp;Python Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="554"/>
+        <location filename="../Project.py" line="560"/>
         <source>Starts a Python interactive interpreter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="556"/>
+        <location filename="../Project.py" line="562"/>
         <source>&lt;b&gt;Start Python Console&lt;/b&gt;&lt;p&gt;Starts a Python interactive interpreter.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2615"/>
+        <location filename="../Project.py" line="2622"/>
         <source>Dump Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="567"/>
+        <location filename="../Project.py" line="573"/>
         <source>&amp;Dump Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="572"/>
+        <location filename="../Project.py" line="578"/>
         <source>Dump the database data to a fixture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="574"/>
+        <location filename="../Project.py" line="580"/>
         <source>&lt;b&gt;Dump Data&lt;/b&gt;&lt;p&gt;Dump the database data to a fixture.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2654"/>
+        <location filename="../Project.py" line="2661"/>
         <source>Load Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="581"/>
+        <location filename="../Project.py" line="587"/>
         <source>&amp;Load Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="586"/>
+        <location filename="../Project.py" line="592"/>
         <source>Load data from fixture files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="588"/>
+        <location filename="../Project.py" line="594"/>
         <source>&lt;b&gt;Load Data&lt;/b&gt;&lt;p&gt;Load data from fixture files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="595"/>
+        <location filename="../Project.py" line="601"/>
         <source>Run Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="595"/>
+        <location filename="../Project.py" line="601"/>
         <source>Run &amp;Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="600"/>
+        <location filename="../Project.py" line="606"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="602"/>
+        <location filename="../Project.py" line="608"/>
         <source>&lt;b&gt;Run Testsuite&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="626"/>
+        <location filename="../Project.py" line="632"/>
         <source>Run Testserver</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="626"/>
+        <location filename="../Project.py" line="632"/>
         <source>Run Test&amp;server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="631"/>
+        <location filename="../Project.py" line="637"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="633"/>
+        <location filename="../Project.py" line="639"/>
         <source>&lt;b&gt;Run Testserver&lt;/b&gt;&lt;p&gt;Run a development server with data from a set of fixtures.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2781"/>
+        <location filename="../Project.py" line="2788"/>
         <source>Change Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="645"/>
+        <location filename="../Project.py" line="651"/>
         <source>Change &amp;Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="650"/>
+        <location filename="../Project.py" line="656"/>
         <source>Change the password of a user</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="652"/>
+        <location filename="../Project.py" line="658"/>
         <source>&lt;b&gt;Change Password&lt;/b&gt;&lt;p&gt;Change the password of a user of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="659"/>
+        <location filename="../Project.py" line="665"/>
         <source>Create Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="659"/>
+        <location filename="../Project.py" line="665"/>
         <source>Create &amp;Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="664"/>
+        <location filename="../Project.py" line="670"/>
         <source>Create a superuser account</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="666"/>
+        <location filename="../Project.py" line="672"/>
         <source>&lt;b&gt;Create Superuser&lt;/b&gt;&lt;p&gt;Create a superuser account for the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2839"/>
+        <location filename="../Project.py" line="2846"/>
         <source>Clear Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="677"/>
+        <location filename="../Project.py" line="683"/>
         <source>Clear &amp;Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="682"/>
+        <location filename="../Project.py" line="688"/>
         <source>Clear expired sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="684"/>
+        <location filename="../Project.py" line="690"/>
         <source>&lt;b&gt;Clear Sessions&lt;/b&gt;&lt;p&gt;Clear expired sessions of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="695"/>
+        <location filename="../Project.py" line="701"/>
         <source>Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="695"/>
+        <location filename="../Project.py" line="701"/>
         <source>&amp;Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="700"/>
+        <location filename="../Project.py" line="706"/>
         <source>Show a list of available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="702"/>
+        <location filename="../Project.py" line="708"/>
         <source>&lt;b&gt;Show Migrations&lt;/b&gt;&lt;p&gt;This shows a list of available migrations of the Django project and their status.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="710"/>
+        <location filename="../Project.py" line="716"/>
         <source>Show Migrations Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="710"/>
+        <location filename="../Project.py" line="716"/>
         <source>Show Migrations &amp;Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="715"/>
+        <location filename="../Project.py" line="721"/>
         <source>Show a list with the migrations plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="717"/>
+        <location filename="../Project.py" line="723"/>
         <source>&lt;b&gt;Show Migrations Plan&lt;/b&gt;&lt;p&gt;This shows a list with the migrations plan of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="808"/>
+        <location filename="../Project.py" line="814"/>
         <source>D&amp;jango</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="850"/>
+        <location filename="../Project.py" line="856"/>
         <source>&amp;Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="872"/>
+        <location filename="../Project.py" line="878"/>
         <source>Show &amp;SQL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="902"/>
+        <location filename="../Project.py" line="908"/>
         <source>&amp;Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="927"/>
+        <location filename="../Project.py" line="933"/>
         <source>&amp;Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="945"/>
+        <location filename="../Project.py" line="951"/>
         <source>T&amp;esting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="966"/>
+        <location filename="../Project.py" line="972"/>
         <source>&amp;Authorization</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="983"/>
+        <location filename="../Project.py" line="989"/>
         <source>&amp;Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1025"/>
+        <location filename="../Project.py" line="1031"/>
         <source>Open with {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1040"/>
+        <location filename="../Project.py" line="1046"/>
         <source>New template...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1049"/>
+        <location filename="../Project.py" line="1055"/>
         <source>Update all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1052"/>
+        <location filename="../Project.py" line="1058"/>
         <source>Update selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1056"/>
+        <location filename="../Project.py" line="1062"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1059"/>
+        <location filename="../Project.py" line="1065"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1063"/>
+        <location filename="../Project.py" line="1069"/>
         <source>Compile all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1066"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Compile selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1166"/>
         <source>New Form</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1127"/>
+        <location filename="../Project.py" line="1133"/>
         <source>The file already exists! Overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1166"/>
         <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt; Problem: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1447"/>
         <source>&lt;p&gt;Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;/p&gt;&lt;p&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Version:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;URL:&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;{1}&quot;&gt;{1}&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1518"/>
         <source>Select Applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1518"/>
         <source>Enter the list of applications separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1896"/>
+        <location filename="../Project.py" line="1904"/>
         <source>Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1636"/>
+        <location filename="../Project.py" line="1644"/>
         <source>Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1638"/>
+        <location filename="../Project.py" line="1646"/>
         <source>Start Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1638"/>
+        <location filename="../Project.py" line="1646"/>
         <source>Select if this project should be a Django Project or Application.&lt;br /&gt;Select the empty entry for none.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1715"/>
+        <location filename="../Project.py" line="1723"/>
         <source>Start Django Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1760"/>
+        <location filename="../Project.py" line="1768"/>
         <source>&lt;p&gt;The &lt;b&gt;django-admin.py&lt;/b&gt; script is not in the path. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1691"/>
+        <location filename="../Project.py" line="1699"/>
         <source>Django project created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1715"/>
+        <location filename="../Project.py" line="1723"/>
         <source>Enter the name of the new Django project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1743"/>
+        <location filename="../Project.py" line="1751"/>
         <source>Start Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1777"/>
+        <location filename="../Project.py" line="1785"/>
         <source>Django application created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1789"/>
+        <location filename="../Project.py" line="1797"/>
         <source>Start Global Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1789"/>
+        <location filename="../Project.py" line="1797"/>
         <source>Enter the name of the new global Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1811"/>
+        <location filename="../Project.py" line="1819"/>
         <source>Start Local Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1811"/>
+        <location filename="../Project.py" line="1819"/>
         <source>Enter the name of the new local Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1860"/>
+        <location filename="../Project.py" line="1868"/>
         <source>Select Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1860"/>
+        <location filename="../Project.py" line="1868"/>
         <source>Select the Django project to work with.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1894"/>
+        <location filename="../Project.py" line="1902"/>
         <source>None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1899"/>
+        <location filename="../Project.py" line="1907"/>
         <source>&amp;Current Django project ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3215"/>
+        <location filename="../Project.py" line="3222"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1973"/>
+        <location filename="../Project.py" line="1981"/>
         <source>The Django server could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2019"/>
+        <location filename="../Project.py" line="2027"/>
         <source>Could not start the web-browser for the url &quot;{0}&quot;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2824"/>
+        <location filename="../Project.py" line="2831"/>
         <source>The Django process could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2036"/>
+        <location filename="../Project.py" line="2044"/>
         <source>Introspect Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2065"/>
+        <location filename="../Project.py" line="2073"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2077"/>
+        <location filename="../Project.py" line="2085"/>
         <source>Database tables flushed successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2256"/>
+        <location filename="../Project.py" line="2264"/>
         <source>SQL Files (*.sql)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2585"/>
+        <location filename="../Project.py" line="2592"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2600"/>
+        <location filename="../Project.py" line="2607"/>
         <source>Cache tables created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2638"/>
+        <location filename="../Project.py" line="2645"/>
         <source>JSON Files (*.json)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2640"/>
+        <location filename="../Project.py" line="2647"/>
         <source>XML Files (*.xml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2642"/>
+        <location filename="../Project.py" line="2649"/>
         <source>YAML Files (*.yaml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2751"/>
+        <location filename="../Project.py" line="2758"/>
         <source>The Django test server could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2781"/>
+        <location filename="../Project.py" line="2788"/>
         <source>Enter the name of the user:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2851"/>
+        <location filename="../Project.py" line="2858"/>
         <source>Expired sessions cleared successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2920"/>
+        <location filename="../Project.py" line="2927"/>
         <source>Initializing message catalog for &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3179"/>
+        <location filename="../Project.py" line="3186"/>
         <source>No current site selected or no site created yet. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2940"/>
+        <location filename="../Project.py" line="2947"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3052"/>
+        <location filename="../Project.py" line="3059"/>
         <source>Updating message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3143"/>
+        <location filename="../Project.py" line="3150"/>
         <source>No locales detected. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3103"/>
+        <location filename="../Project.py" line="3110"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3084"/>
+        <location filename="../Project.py" line="3091"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3169"/>
+        <location filename="../Project.py" line="3176"/>
         <source>Compiling message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3186"/>
+        <location filename="../Project.py" line="3193"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3215"/>
+        <location filename="../Project.py" line="3222"/>
         <source>The translations editor process ({0}) could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="725"/>
+        <location filename="../Project.py" line="731"/>
         <source>Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="725"/>
+        <location filename="../Project.py" line="731"/>
         <source>&amp;Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="730"/>
+        <location filename="../Project.py" line="736"/>
         <source>Apply all available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="732"/>
+        <location filename="../Project.py" line="738"/>
         <source>&lt;b&gt;Apply All Migrations&lt;/b&gt;&lt;p&gt;This applies all migrations of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2310"/>
+        <location filename="../Project.py" line="2318"/>
         <source>Apply Selected Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="744"/>
+        <location filename="../Project.py" line="750"/>
         <source>Apply selected migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="746"/>
+        <location filename="../Project.py" line="752"/>
         <source>&lt;b&gt;Apply Selected Migrations&lt;/b&gt;&lt;p&gt;This applies selected migrations of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2377"/>
         <source>Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="755"/>
+        <location filename="../Project.py" line="761"/>
         <source>&amp;Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="760"/>
+        <location filename="../Project.py" line="766"/>
         <source>Unapply all migrations for an app</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="762"/>
+        <location filename="../Project.py" line="768"/>
         <source>&lt;b&gt;Unapply Migrations&lt;/b&gt;&lt;p&gt;This unapplies all migrations for an app of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2446"/>
+        <location filename="../Project.py" line="2454"/>
         <source>Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="770"/>
+        <location filename="../Project.py" line="776"/>
         <source>&amp;Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="775"/>
+        <location filename="../Project.py" line="781"/>
         <source>Generate migrations for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="777"/>
+        <location filename="../Project.py" line="783"/>
         <source>&lt;b&gt;Make Migrations&lt;/b&gt;&lt;p&gt;This generates migrations for the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2477"/>
+        <location filename="../Project.py" line="2484"/>
         <source>No migrations available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2335"/>
+        <location filename="../Project.py" line="2343"/>
         <source>Apply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2377"/>
         <source>Select an application:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2490"/>
+        <location filename="../Project.py" line="2497"/>
         <source>Squash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="784"/>
+        <location filename="../Project.py" line="790"/>
         <source>S&amp;quash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="789"/>
+        <location filename="../Project.py" line="795"/>
         <source>Squash migrations of an application of the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="791"/>
+        <location filename="../Project.py" line="797"/>
         <source>&lt;b&gt;Squash Migrations&lt;/b&gt;&lt;p&gt;This squashes migrations of an application of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="497"/>
+        <location filename="../Project.py" line="503"/>
         <source>Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="497"/>
+        <location filename="../Project.py" line="503"/>
         <source>&amp;Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="502"/>
+        <location filename="../Project.py" line="508"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="505"/>
+        <location filename="../Project.py" line="511"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="514"/>
+        <location filename="../Project.py" line="520"/>
         <source>Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="514"/>
+        <location filename="../Project.py" line="520"/>
         <source>&amp;Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="519"/>
+        <location filename="../Project.py" line="525"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="522"/>
+        <location filename="../Project.py" line="528"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2238"/>
+        <location filename="../Project.py" line="2246"/>
         <source>SQL Migrate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3260"/>
+        <location filename="../Project.py" line="3267"/>
         <source>Check Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="290"/>
+        <location filename="../Project.py" line="296"/>
         <source>Inspects the Django project for common problems</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="292"/>
+        <location filename="../Project.py" line="298"/>
         <source>&lt;b&gt;Check Project&lt;/b&gt;&lt;p&gt;This inspects the Django project for common problems.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="609"/>
+        <location filename="../Project.py" line="615"/>
         <source>Run Testsuite (-Wall)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="614"/>
+        <location filename="../Project.py" line="620"/>
         <source>Run the test suite for applications or the whole site with activated deprecation warnings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="617"/>
+        <location filename="../Project.py" line="623"/>
         <source>&lt;b&gt;Run Testsuite (-Wall)&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site with activated deprecation warnings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1691,14 +1731,9 @@
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="413"/>
+        <location filename="../../PluginProjectDjango.py" line="389"/>
         <source>Django</source>
         <translation type="unfinished"></translation>
     </message>
-    <message>
-        <location filename="../../PluginProjectDjango.py" line="180"/>
-        <source>eric6 version is too old, {0}, {1} or newer needed.</source>
-        <translation type="unfinished"></translation>
-    </message>
 </context>
 </TS>
diff -r 6e39332e4a36 -r 7e2351e4d729 ProjectDjango/i18n/django_en.ts
--- a/ProjectDjango/i18n/django_en.ts	Sun Apr 23 17:20:47 2017 +0200
+++ b/ProjectDjango/i18n/django_en.ts	Thu Apr 27 19:35:14 2017 +0200
@@ -61,40 +61,80 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.ui" line="35"/>
+        <location filename="../DjangoDialog.ui" line="29"/>
         <source>Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.ui" line="63"/>
+        <location filename="../DjangoDialog.ui" line="66"/>
         <source>Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="181"/>
+        <location filename="../DjangoDialog.py" line="189"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="181"/>
+        <location filename="../DjangoDialog.py" line="189"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="266"/>
+        <location filename="../DjangoDialog.py" line="282"/>
         <source>Select data file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="287"/>
+        <location filename="../DjangoDialog.py" line="303"/>
         <source>Error saving data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="287"/>
+        <location filename="../DjangoDialog.py" line="303"/>
         <source>&lt;p&gt;The data could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="103"/>
+        <source>Input</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="128"/>
+        <source>&amp;Send</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="131"/>
+        <source>Alt+S</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="145"/>
+        <source>Select to switch the input field to password mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="148"/>
+        <source>&amp;Password Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="151"/>
+        <source>Alt+P</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="125"/>
+        <source>Press to send the input to the manage.py process</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="138"/>
+        <source>Enter data to be sent to the manage.py process</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DjangoDumpdataDataDialog</name>
@@ -555,1135 +595,1135 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="123"/>
+        <location filename="../Project.py" line="129"/>
         <source>Current Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="128"/>
+        <location filename="../Project.py" line="134"/>
         <source>Selects the current project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="130"/>
+        <location filename="../Project.py" line="136"/>
         <source>&lt;b&gt;Current Project&lt;/b&gt;&lt;p&gt;Selects the current project. Used for multi-project Django projects to switch between the projects.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="143"/>
+        <location filename="../Project.py" line="149"/>
         <source>Start Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="143"/>
+        <location filename="../Project.py" line="149"/>
         <source>Start &amp;Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="148"/>
+        <location filename="../Project.py" line="154"/>
         <source>Starts a new Django project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="150"/>
+        <location filename="../Project.py" line="156"/>
         <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using &quot;django-admin.py startproject&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="158"/>
+        <location filename="../Project.py" line="164"/>
         <source>Start Application (global)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="158"/>
+        <location filename="../Project.py" line="164"/>
         <source>Start Application (&amp;global)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="163"/>
+        <location filename="../Project.py" line="169"/>
         <source>Starts a new global Django application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="165"/>
+        <location filename="../Project.py" line="171"/>
         <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using &quot;django-admin.py startapp&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="174"/>
+        <location filename="../Project.py" line="180"/>
         <source>Start Application (local)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="174"/>
+        <location filename="../Project.py" line="180"/>
         <source>Start Application (&amp;local)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="179"/>
+        <location filename="../Project.py" line="185"/>
         <source>Starts a new local Django application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="181"/>
+        <location filename="../Project.py" line="187"/>
         <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using &quot;manage.py startapp&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="194"/>
+        <location filename="../Project.py" line="200"/>
         <source>Run Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="194"/>
+        <location filename="../Project.py" line="200"/>
         <source>Run &amp;Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="199"/>
+        <location filename="../Project.py" line="205"/>
         <source>Starts the Django Web server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="201"/>
+        <location filename="../Project.py" line="207"/>
         <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using &quot;manage.py runserver&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2019"/>
+        <location filename="../Project.py" line="2027"/>
         <source>Run Web-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="209"/>
+        <location filename="../Project.py" line="215"/>
         <source>Run &amp;Web-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="214"/>
+        <location filename="../Project.py" line="220"/>
         <source>Starts the default Web-Browser with the URL of the Django Web server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="217"/>
+        <location filename="../Project.py" line="223"/>
         <source>&lt;b&gt;Run Web-Browser&lt;/b&gt;&lt;p&gt;Starts the default Web-Browser with the URL of the Django Web server.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2578"/>
+        <location filename="../Project.py" line="2585"/>
         <source>Create Cache Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="229"/>
+        <location filename="../Project.py" line="235"/>
         <source>C&amp;reate Cache Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="234"/>
+        <location filename="../Project.py" line="240"/>
         <source>Creates the tables needed to use the SQL cache backend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="236"/>
+        <location filename="../Project.py" line="242"/>
         <source>&lt;b&gt;Create Cache Tables&lt;/b&gt;&lt;p&gt;Creates the tables needed to use the SQL cache backend.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="249"/>
+        <location filename="../Project.py" line="255"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="249"/>
+        <location filename="../Project.py" line="255"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="254"/>
+        <location filename="../Project.py" line="260"/>
         <source>Shows the Django help index</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="256"/>
+        <location filename="../Project.py" line="262"/>
         <source>&lt;b&gt;Help&lt;/b&gt;&lt;p&gt;Shows the Django help index page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1447"/>
         <source>About Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="267"/>
+        <location filename="../Project.py" line="273"/>
         <source>About D&amp;jango</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="272"/>
+        <location filename="../Project.py" line="278"/>
         <source>Shows some information about Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="274"/>
+        <location filename="../Project.py" line="280"/>
         <source>&lt;b&gt;About Django&lt;/b&gt;&lt;p&gt;Shows some information about Django.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="311"/>
+        <location filename="../Project.py" line="317"/>
         <source>Introspect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="311"/>
+        <location filename="../Project.py" line="317"/>
         <source>&amp;Introspect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="316"/>
+        <location filename="../Project.py" line="322"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="319"/>
+        <location filename="../Project.py" line="325"/>
         <source>&lt;b&gt;Introspect&lt;/b&gt;&lt;p&gt;Introspects the database tables and outputs a Django model module.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="327"/>
+        <location filename="../Project.py" line="333"/>
         <source>Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="327"/>
+        <location filename="../Project.py" line="333"/>
         <source>&amp;Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="332"/>
+        <location filename="../Project.py" line="338"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="335"/>
+        <location filename="../Project.py" line="341"/>
         <source>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Returns all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="343"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start Client Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="343"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start &amp;Client Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="348"/>
+        <location filename="../Project.py" line="354"/>
         <source>Starts a console window for the database client</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="350"/>
+        <location filename="../Project.py" line="356"/>
         <source>&lt;b&gt;Start Client Console&lt;/b&gt;&lt;p&gt;Starts a console window for the database client.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2155"/>
+        <location filename="../Project.py" line="2163"/>
         <source>Create Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="361"/>
+        <location filename="../Project.py" line="367"/>
         <source>Create &amp;Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="366"/>
+        <location filename="../Project.py" line="372"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="369"/>
+        <location filename="../Project.py" line="375"/>
         <source>&lt;b&gt;Create Tables&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2164"/>
+        <location filename="../Project.py" line="2172"/>
         <source>Create Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="378"/>
+        <location filename="../Project.py" line="384"/>
         <source>Create &amp;Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="383"/>
+        <location filename="../Project.py" line="389"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="386"/>
+        <location filename="../Project.py" line="392"/>
         <source>&lt;b&gt;Create Indexes&lt;/b&gt;&lt;p&gt;Prints the CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2173"/>
+        <location filename="../Project.py" line="2181"/>
         <source>Create Everything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="395"/>
+        <location filename="../Project.py" line="401"/>
         <source>Create &amp;Everything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="400"/>
+        <location filename="../Project.py" line="406"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="403"/>
+        <location filename="../Project.py" line="409"/>
         <source>&lt;b&gt;Create Everything&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2182"/>
+        <location filename="../Project.py" line="2190"/>
         <source>Custom Statements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="412"/>
+        <location filename="../Project.py" line="418"/>
         <source>&amp;Custom Statements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="417"/>
+        <location filename="../Project.py" line="423"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="420"/>
+        <location filename="../Project.py" line="426"/>
         <source>&lt;b&gt;Custom Statements&lt;/b&gt;&lt;p&gt;Prints the custom table modifying SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2191"/>
+        <location filename="../Project.py" line="2199"/>
         <source>Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="429"/>
+        <location filename="../Project.py" line="435"/>
         <source>&amp;Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="434"/>
+        <location filename="../Project.py" line="440"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="437"/>
+        <location filename="../Project.py" line="443"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2207"/>
+        <location filename="../Project.py" line="2215"/>
         <source>Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="463"/>
+        <location filename="../Project.py" line="469"/>
         <source>&amp;Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="468"/>
+        <location filename="../Project.py" line="474"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="471"/>
+        <location filename="../Project.py" line="477"/>
         <source>&lt;b&gt;Flush Database&lt;/b&gt;&lt;p&gt;Prints a list of statements to return all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2214"/>
+        <location filename="../Project.py" line="2222"/>
         <source>Reset Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="480"/>
+        <location filename="../Project.py" line="486"/>
         <source>Reset &amp;Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="485"/>
+        <location filename="../Project.py" line="491"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="488"/>
+        <location filename="../Project.py" line="494"/>
         <source>&lt;b&gt;Reset Sequences&lt;/b&gt;&lt;p&gt;Prints the SQL statements for resetting sequences for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2522"/>
+        <location filename="../Project.py" line="2529"/>
         <source>Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="535"/>
+        <location filename="../Project.py" line="541"/>
         <source>&amp;Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="540"/>
+        <location filename="../Project.py" line="546"/>
         <source>Shows the modification made to the settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="542"/>
+        <location filename="../Project.py" line="548"/>
         <source>&lt;b&gt;Diff Settings&lt;/b&gt;&lt;p&gt;Shows the modification made to the settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="549"/>
+        <location filename="../Project.py" line="555"/>
         <source>Start Python Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="549"/>
+        <location filename="../Project.py" line="555"/>
         <source>Start &amp;Python Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="554"/>
+        <location filename="../Project.py" line="560"/>
         <source>Starts a Python interactive interpreter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="556"/>
+        <location filename="../Project.py" line="562"/>
         <source>&lt;b&gt;Start Python Console&lt;/b&gt;&lt;p&gt;Starts a Python interactive interpreter.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2615"/>
+        <location filename="../Project.py" line="2622"/>
         <source>Dump Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="567"/>
+        <location filename="../Project.py" line="573"/>
         <source>&amp;Dump Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="572"/>
+        <location filename="../Project.py" line="578"/>
         <source>Dump the database data to a fixture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="574"/>
+        <location filename="../Project.py" line="580"/>
         <source>&lt;b&gt;Dump Data&lt;/b&gt;&lt;p&gt;Dump the database data to a fixture.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2654"/>
+        <location filename="../Project.py" line="2661"/>
         <source>Load Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="581"/>
+        <location filename="../Project.py" line="587"/>
         <source>&amp;Load Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="586"/>
+        <location filename="../Project.py" line="592"/>
         <source>Load data from fixture files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="588"/>
+        <location filename="../Project.py" line="594"/>
         <source>&lt;b&gt;Load Data&lt;/b&gt;&lt;p&gt;Load data from fixture files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="595"/>
+        <location filename="../Project.py" line="601"/>
         <source>Run Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="595"/>
+        <location filename="../Project.py" line="601"/>
         <source>Run &amp;Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="600"/>
+        <location filename="../Project.py" line="606"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="602"/>
+        <location filename="../Project.py" line="608"/>
         <source>&lt;b&gt;Run Testsuite&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="626"/>
+        <location filename="../Project.py" line="632"/>
         <source>Run Testserver</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="626"/>
+        <location filename="../Project.py" line="632"/>
         <source>Run Test&amp;server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="631"/>
+        <location filename="../Project.py" line="637"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="633"/>
+        <location filename="../Project.py" line="639"/>
         <source>&lt;b&gt;Run Testserver&lt;/b&gt;&lt;p&gt;Run a development server with data from a set of fixtures.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="808"/>
+        <location filename="../Project.py" line="814"/>
         <source>D&amp;jango</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="850"/>
+        <location filename="../Project.py" line="856"/>
         <source>&amp;Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="872"/>
+        <location filename="../Project.py" line="878"/>
         <source>Show &amp;SQL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="927"/>
+        <location filename="../Project.py" line="933"/>
         <source>&amp;Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="945"/>
+        <location filename="../Project.py" line="951"/>
         <source>T&amp;esting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1040"/>
+        <location filename="../Project.py" line="1046"/>
         <source>New template...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1049"/>
+        <location filename="../Project.py" line="1055"/>
         <source>Update all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1052"/>
+        <location filename="../Project.py" line="1058"/>
         <source>Update selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1056"/>
+        <location filename="../Project.py" line="1062"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1059"/>
+        <location filename="../Project.py" line="1065"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1063"/>
+        <location filename="../Project.py" line="1069"/>
         <source>Compile all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1066"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Compile selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1166"/>
         <source>New Form</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1127"/>
+        <location filename="../Project.py" line="1133"/>
         <source>The file already exists! Overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1518"/>
         <source>Select Applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1518"/>
         <source>Enter the list of applications separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1896"/>
+        <location filename="../Project.py" line="1904"/>
         <source>Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1636"/>
+        <location filename="../Project.py" line="1644"/>
         <source>Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1638"/>
+        <location filename="../Project.py" line="1646"/>
         <source>Start Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1638"/>
+        <location filename="../Project.py" line="1646"/>
         <source>Select if this project should be a Django Project or Application.&lt;br /&gt;Select the empty entry for none.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1715"/>
+        <location filename="../Project.py" line="1723"/>
         <source>Start Django Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1691"/>
+        <location filename="../Project.py" line="1699"/>
         <source>Django project created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1715"/>
+        <location filename="../Project.py" line="1723"/>
         <source>Enter the name of the new Django project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1743"/>
+        <location filename="../Project.py" line="1751"/>
         <source>Start Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1777"/>
+        <location filename="../Project.py" line="1785"/>
         <source>Django application created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1789"/>
+        <location filename="../Project.py" line="1797"/>
         <source>Start Global Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1789"/>
+        <location filename="../Project.py" line="1797"/>
         <source>Enter the name of the new global Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1811"/>
+        <location filename="../Project.py" line="1819"/>
         <source>Start Local Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1811"/>
+        <location filename="../Project.py" line="1819"/>
         <source>Enter the name of the new local Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1860"/>
+        <location filename="../Project.py" line="1868"/>
         <source>Select Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1860"/>
+        <location filename="../Project.py" line="1868"/>
         <source>Select the Django project to work with.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1894"/>
+        <location filename="../Project.py" line="1902"/>
         <source>None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1899"/>
+        <location filename="../Project.py" line="1907"/>
         <source>&amp;Current Django project ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3215"/>
+        <location filename="../Project.py" line="3222"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1973"/>
+        <location filename="../Project.py" line="1981"/>
         <source>The Django server could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2019"/>
+        <location filename="../Project.py" line="2027"/>
         <source>Could not start the web-browser for the url &quot;{0}&quot;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2824"/>
+        <location filename="../Project.py" line="2831"/>
         <source>The Django process could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2036"/>
+        <location filename="../Project.py" line="2044"/>
         <source>Introspect Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2065"/>
+        <location filename="../Project.py" line="2073"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2077"/>
+        <location filename="../Project.py" line="2085"/>
         <source>Database tables flushed successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2256"/>
+        <location filename="../Project.py" line="2264"/>
         <source>SQL Files (*.sql)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2585"/>
+        <location filename="../Project.py" line="2592"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2600"/>
+        <location filename="../Project.py" line="2607"/>
         <source>Cache tables created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2638"/>
+        <location filename="../Project.py" line="2645"/>
         <source>JSON Files (*.json)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2640"/>
+        <location filename="../Project.py" line="2647"/>
         <source>XML Files (*.xml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2642"/>
+        <location filename="../Project.py" line="2649"/>
         <source>YAML Files (*.yaml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2751"/>
+        <location filename="../Project.py" line="2758"/>
         <source>The Django test server could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2920"/>
+        <location filename="../Project.py" line="2927"/>
         <source>Initializing message catalog for &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3179"/>
+        <location filename="../Project.py" line="3186"/>
         <source>No current site selected or no site created yet. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2940"/>
+        <location filename="../Project.py" line="2947"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3052"/>
+        <location filename="../Project.py" line="3059"/>
         <source>Updating message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3143"/>
+        <location filename="../Project.py" line="3150"/>
         <source>No locales detected. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3103"/>
+        <location filename="../Project.py" line="3110"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3084"/>
+        <location filename="../Project.py" line="3091"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3169"/>
+        <location filename="../Project.py" line="3176"/>
         <source>Compiling message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3186"/>
+        <location filename="../Project.py" line="3193"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2781"/>
+        <location filename="../Project.py" line="2788"/>
         <source>Change Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="645"/>
+        <location filename="../Project.py" line="651"/>
         <source>Change &amp;Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="650"/>
+        <location filename="../Project.py" line="656"/>
         <source>Change the password of a user</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="652"/>
+        <location filename="../Project.py" line="658"/>
         <source>&lt;b&gt;Change Password&lt;/b&gt;&lt;p&gt;Change the password of a user of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="659"/>
+        <location filename="../Project.py" line="665"/>
         <source>Create Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="659"/>
+        <location filename="../Project.py" line="665"/>
         <source>Create &amp;Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="664"/>
+        <location filename="../Project.py" line="670"/>
         <source>Create a superuser account</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="666"/>
+        <location filename="../Project.py" line="672"/>
         <source>&lt;b&gt;Create Superuser&lt;/b&gt;&lt;p&gt;Create a superuser account for the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2839"/>
+        <location filename="../Project.py" line="2846"/>
         <source>Clear Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="677"/>
+        <location filename="../Project.py" line="683"/>
         <source>Clear &amp;Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="682"/>
+        <location filename="../Project.py" line="688"/>
         <source>Clear expired sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="684"/>
+        <location filename="../Project.py" line="690"/>
         <source>&lt;b&gt;Clear Sessions&lt;/b&gt;&lt;p&gt;Clear expired sessions of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="966"/>
+        <location filename="../Project.py" line="972"/>
         <source>&amp;Authorization</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="983"/>
+        <location filename="../Project.py" line="989"/>
         <source>&amp;Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2781"/>
+        <location filename="../Project.py" line="2788"/>
         <source>Enter the name of the user:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2851"/>
+        <location filename="../Project.py" line="2858"/>
         <source>Expired sessions cleared successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1447"/>
         <source>&lt;p&gt;Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;/p&gt;&lt;p&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Version:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;URL:&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;{1}&quot;&gt;{1}&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1760"/>
+        <location filename="../Project.py" line="1768"/>
         <source>&lt;p&gt;The &lt;b&gt;django-admin.py&lt;/b&gt; script is not in the path. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1025"/>
+        <location filename="../Project.py" line="1031"/>
         <source>Open with {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3215"/>
+        <location filename="../Project.py" line="3222"/>
         <source>The translations editor process ({0}) could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1166"/>
         <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt; Problem: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2200"/>
+        <location filename="../Project.py" line="2208"/>
         <source>Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="446"/>
+        <location filename="../Project.py" line="452"/>
         <source>&amp;Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="451"/>
+        <location filename="../Project.py" line="457"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="454"/>
+        <location filename="../Project.py" line="460"/>
         <source>&lt;b&gt;Drop Indexes&lt;/b&gt;&lt;p&gt;Prints the DROP INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="695"/>
+        <location filename="../Project.py" line="701"/>
         <source>Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="695"/>
+        <location filename="../Project.py" line="701"/>
         <source>&amp;Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="700"/>
+        <location filename="../Project.py" line="706"/>
         <source>Show a list of available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="702"/>
+        <location filename="../Project.py" line="708"/>
         <source>&lt;b&gt;Show Migrations&lt;/b&gt;&lt;p&gt;This shows a list of available migrations of the Django project and their status.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="710"/>
+        <location filename="../Project.py" line="716"/>
         <source>Show Migrations Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="710"/>
+        <location filename="../Project.py" line="716"/>
         <source>Show Migrations &amp;Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="715"/>
+        <location filename="../Project.py" line="721"/>
         <source>Show a list with the migrations plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="717"/>
+        <location filename="../Project.py" line="723"/>
         <source>&lt;b&gt;Show Migrations Plan&lt;/b&gt;&lt;p&gt;This shows a list with the migrations plan of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="902"/>
+        <location filename="../Project.py" line="908"/>
         <source>&amp;Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="725"/>
+        <location filename="../Project.py" line="731"/>
         <source>Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="725"/>
+        <location filename="../Project.py" line="731"/>
         <source>&amp;Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="730"/>
+        <location filename="../Project.py" line="736"/>
         <source>Apply all available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="732"/>
+        <location filename="../Project.py" line="738"/>
         <source>&lt;b&gt;Apply All Migrations&lt;/b&gt;&lt;p&gt;This applies all migrations of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2310"/>
+        <location filename="../Project.py" line="2318"/>
         <source>Apply Selected Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="744"/>
+        <location filename="../Project.py" line="750"/>
         <source>Apply selected migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="746"/>
+        <location filename="../Project.py" line="752"/>
         <source>&lt;b&gt;Apply Selected Migrations&lt;/b&gt;&lt;p&gt;This applies selected migrations of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2377"/>
         <source>Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="755"/>
+        <location filename="../Project.py" line="761"/>
         <source>&amp;Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="760"/>
+        <location filename="../Project.py" line="766"/>
         <source>Unapply all migrations for an app</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="762"/>
+        <location filename="../Project.py" line="768"/>
         <source>&lt;b&gt;Unapply Migrations&lt;/b&gt;&lt;p&gt;This unapplies all migrations for an app of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2446"/>
+        <location filename="../Project.py" line="2454"/>
         <source>Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="770"/>
+        <location filename="../Project.py" line="776"/>
         <source>&amp;Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="775"/>
+        <location filename="../Project.py" line="781"/>
         <source>Generate migrations for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="777"/>
+        <location filename="../Project.py" line="783"/>
         <source>&lt;b&gt;Make Migrations&lt;/b&gt;&lt;p&gt;This generates migrations for the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2477"/>
+        <location filename="../Project.py" line="2484"/>
         <source>No migrations available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2335"/>
+        <location filename="../Project.py" line="2343"/>
         <source>Apply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2377"/>
         <source>Select an application:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2490"/>
+        <location filename="../Project.py" line="2497"/>
         <source>Squash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="784"/>
+        <location filename="../Project.py" line="790"/>
         <source>S&amp;quash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="789"/>
+        <location filename="../Project.py" line="795"/>
         <source>Squash migrations of an application of the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="791"/>
+        <location filename="../Project.py" line="797"/>
         <source>&lt;b&gt;Squash Migrations&lt;/b&gt;&lt;p&gt;This squashes migrations of an application of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="497"/>
+        <location filename="../Project.py" line="503"/>
         <source>Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="497"/>
+        <location filename="../Project.py" line="503"/>
         <source>&amp;Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="502"/>
+        <location filename="../Project.py" line="508"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="505"/>
+        <location filename="../Project.py" line="511"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="514"/>
+        <location filename="../Project.py" line="520"/>
         <source>Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="514"/>
+        <location filename="../Project.py" line="520"/>
         <source>&amp;Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="519"/>
+        <location filename="../Project.py" line="525"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="522"/>
+        <location filename="../Project.py" line="528"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2238"/>
+        <location filename="../Project.py" line="2246"/>
         <source>SQL Migrate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3260"/>
+        <location filename="../Project.py" line="3267"/>
         <source>Check Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="290"/>
+        <location filename="../Project.py" line="296"/>
         <source>Inspects the Django project for common problems</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="292"/>
+        <location filename="../Project.py" line="298"/>
         <source>&lt;b&gt;Check Project&lt;/b&gt;&lt;p&gt;This inspects the Django project for common problems.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="609"/>
+        <location filename="../Project.py" line="615"/>
         <source>Run Testsuite (-Wall)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="614"/>
+        <location filename="../Project.py" line="620"/>
         <source>Run the test suite for applications or the whole site with activated deprecation warnings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="617"/>
+        <location filename="../Project.py" line="623"/>
         <source>&lt;b&gt;Run Testsuite (-Wall)&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site with activated deprecation warnings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1691,14 +1731,9 @@
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="413"/>
+        <location filename="../../PluginProjectDjango.py" line="389"/>
         <source>Django</source>
         <translation type="unfinished"></translation>
     </message>
-    <message>
-        <location filename="../../PluginProjectDjango.py" line="180"/>
-        <source>eric6 version is too old, {0}, {1} or newer needed.</source>
-        <translation type="unfinished"></translation>
-    </message>
 </context>
 </TS>
diff -r 6e39332e4a36 -r 7e2351e4d729 ProjectDjango/i18n/django_es.ts
--- a/ProjectDjango/i18n/django_es.ts	Sun Apr 23 17:20:47 2017 +0200
+++ b/ProjectDjango/i18n/django_es.ts	Thu Apr 27 19:35:14 2017 +0200
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="es">
+<!DOCTYPE TS><TS version="2.0" language="es" sourcelanguage="">
 <context>
     <name>DjangoCheckOptionsDialog</name>
     <message>
@@ -62,40 +61,80 @@
         <translation>Django</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.ui" line="35"/>
+        <location filename="../DjangoDialog.ui" line="29"/>
         <source>Output</source>
         <translation>Salida</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.ui" line="63"/>
+        <location filename="../DjangoDialog.ui" line="66"/>
         <source>Errors</source>
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="181"/>
+        <location filename="../DjangoDialog.py" line="189"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="181"/>
+        <location filename="../DjangoDialog.py" line="189"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>El proceso {0} no ha podido ejecutarse. Asegúrese de que está en la ruta de búsqueda.</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="266"/>
+        <location filename="../DjangoDialog.py" line="282"/>
         <source>Select data file</source>
         <translation>Seleccionar archivo de datos</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="287"/>
+        <location filename="../DjangoDialog.py" line="303"/>
         <source>Error saving data</source>
         <translation>Error al guardar datos</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="287"/>
+        <location filename="../DjangoDialog.py" line="303"/>
         <source>&lt;p&gt;The data could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Los datos no han podido ser guardados en &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="103"/>
+        <source>Input</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="128"/>
+        <source>&amp;Send</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="131"/>
+        <source>Alt+S</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="145"/>
+        <source>Select to switch the input field to password mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="148"/>
+        <source>&amp;Password Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="151"/>
+        <source>Alt+P</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="125"/>
+        <source>Press to send the input to the manage.py process</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="138"/>
+        <source>Enter data to be sent to the manage.py process</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DjangoDumpdataDataDialog</name>
@@ -400,17 +439,17 @@
         <translation>Número de listas de aplicaciones recientes:</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="343"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="337"/>
         <source>Django Python Console</source>
         <translation>Consola Python de Django</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="364"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="358"/>
         <source>Select to use plain Python instead of IPython</source>
         <translation>Seleccionar para utilizar Python simple en lugar de IPhyton</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="367"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="361"/>
         <source>Use plain Python instead of IPython</source>
         <translation>Utilizar Python simple en lugar de IPhyton</translation>
     </message>
@@ -445,57 +484,57 @@
         <translation>Python 3</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="305"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="302"/>
         <source>Django Virtual Environment</source>
         <translation>Entorno Virtual Django</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="317"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="314"/>
         <source>Enter the path of the Django virtual environment. Leave empty to not use a virtual environment setup.</source>
         <translation>Introducir la ruta del entorno virtual de Django. Dejar vacío para no utilizar una configuración con entorno virtual.</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="330"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="327"/>
         <source>Select the virtual environment directory via a selection dialog</source>
         <translation>Seleccionar el directorio del entorno virtual vía un diálogo de selección</translation>
     </message>
     <message>
         <location filename="../ConfigurationPage/DjangoPage.ui" line="408"/>
         <source>...</source>
-        <translation>...</translation>
+        <translation type="obsolete">...</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="299"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="296"/>
         <source>Python 2</source>
         <translation>Python 2</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.py" line="144"/>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="156"/>
         <source>Select Virtual Environment for Python 3</source>
         <translation>Seleccionar Entorno Virtual para Python 3</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.py" line="163"/>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="175"/>
         <source>Select Virtual Environment for Python 2</source>
         <translation>Seleccionar Entorno Virtual para Python 2</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.py" line="179"/>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="191"/>
         <source>Translations Editor</source>
         <translation>Editor de Traducciones</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="392"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="386"/>
         <source>Enter the path of an editor to use to do the translations. Leave empty to disable this feature.</source>
         <translation>Introducir la ruta de un editor para hacer las traducciones. Dejar en blanco para deshabilitar esta característica.</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="405"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="399"/>
         <source>Select the translations editor via a file selection dialog</source>
         <translation>Seleccionar el editor de traducciones vía un diálogo de selección de archivos</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.py" line="179"/>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="191"/>
         <source>All Files (*)</source>
         <translation>Todos los Archivos (*)</translation>
     </message>
@@ -561,1158 +600,1158 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="820"/>
+        <location filename="../Project.py" line="814"/>
         <source>D&amp;jango</source>
         <translation>D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1175"/>
+        <location filename="../Project.py" line="1166"/>
         <source>New Form</source>
         <translation>Nuevo Formulario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1142"/>
+        <location filename="../Project.py" line="1133"/>
         <source>The file already exists! Overwrite it?</source>
         <translation>¡El archivo ya existe! ¿Sobreescribirlo?</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="121"/>
+        <location filename="../Project.py" line="129"/>
         <source>Current Project</source>
         <translation>Proyecto actual</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="126"/>
+        <location filename="../Project.py" line="134"/>
         <source>Selects the current project</source>
         <translation>Selecciona el proyecto actual</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="141"/>
+        <location filename="../Project.py" line="149"/>
         <source>Start Project</source>
         <translation>Iniciar Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="141"/>
+        <location filename="../Project.py" line="149"/>
         <source>Start &amp;Project</source>
         <translation>Iniciar &amp;Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="146"/>
+        <location filename="../Project.py" line="154"/>
         <source>Starts a new Django project</source>
         <translation>Inicia un nuevo proyecto Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="148"/>
+        <location filename="../Project.py" line="156"/>
         <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using &quot;django-admin.py startproject&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Iniciar Proyecto&lt;/b&gt;&lt;p&gt;Inicia un nuevo proyecto Django utilizando  &quot;django-admin.py startproject&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="156"/>
+        <location filename="../Project.py" line="164"/>
         <source>Start Application (global)</source>
         <translation>Iniciar Aplicación (global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="156"/>
+        <location filename="../Project.py" line="164"/>
         <source>Start Application (&amp;global)</source>
         <translation>Iniciar Aplicación (&amp;global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="161"/>
+        <location filename="../Project.py" line="169"/>
         <source>Starts a new global Django application</source>
         <translation>Inicia una nueva aplicación global Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="163"/>
+        <location filename="../Project.py" line="171"/>
         <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using &quot;django-admin.py startapp&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Iniciar Aplicación (global)&lt;/b&gt;&lt;p&gt;Inicia una nueva aplicación global Django utilizando &quot;django-admin.py startapp&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="172"/>
+        <location filename="../Project.py" line="180"/>
         <source>Start Application (local)</source>
         <translation>Iniciar Aplicación (local)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="172"/>
+        <location filename="../Project.py" line="180"/>
         <source>Start Application (&amp;local)</source>
         <translation>Iniciar Aplicación (&amp;local)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="177"/>
+        <location filename="../Project.py" line="185"/>
         <source>Starts a new local Django application</source>
         <translation>Inicia una nueva aplicación local Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="179"/>
+        <location filename="../Project.py" line="187"/>
         <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using &quot;manage.py startapp&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Iniciar Aplicación (local)&lt;/b&gt;&lt;p&gt;Inicia una nueva aplicación local Django utilizando &quot;manage.py startapp&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="192"/>
+        <location filename="../Project.py" line="200"/>
         <source>Run Server</source>
         <translation>Ejecutar Servidor</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="192"/>
+        <location filename="../Project.py" line="200"/>
         <source>Run &amp;Server</source>
         <translation>Ejecutar &amp;Servidor</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="197"/>
+        <location filename="../Project.py" line="205"/>
         <source>Starts the Django Web server</source>
         <translation>Inicia el servidor Web Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="199"/>
+        <location filename="../Project.py" line="207"/>
         <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using &quot;manage.py runserver&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Iniciar Servidor&lt;/b&gt;&lt;p&gt;Inicia el servidor Web Django utilizando  &quot;manage.py runserver&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2021"/>
+        <location filename="../Project.py" line="2027"/>
         <source>Run Web-Browser</source>
         <translation>Ejecutar Navegador Web</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="207"/>
+        <location filename="../Project.py" line="215"/>
         <source>Run &amp;Web-Browser</source>
         <translation>Ejecutar Navegador &amp;Web</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="212"/>
+        <location filename="../Project.py" line="220"/>
         <source>Starts the default Web-Browser with the URL of the Django Web server</source>
         <translation>Inicia el Navegador Web por defecto con la URL del servidor Web Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="215"/>
+        <location filename="../Project.py" line="223"/>
         <source>&lt;b&gt;Run Web-Browser&lt;/b&gt;&lt;p&gt;Starts the default Web-Browser with the URL of the Django Web server.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ejecutar Navegador Web&lt;/b&gt;&lt;p&gt;Inicia el Navegador Web  por defecto con la URL del servidor Web Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1454"/>
+        <location filename="../Project.py" line="1447"/>
         <source>About Django</source>
         <translation>Acerca de Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="265"/>
+        <location filename="../Project.py" line="273"/>
         <source>About D&amp;jango</source>
         <translation>Acerca de D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="270"/>
+        <location filename="../Project.py" line="278"/>
         <source>Shows some information about Django</source>
         <translation>Muestra información sobre Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="272"/>
+        <location filename="../Project.py" line="280"/>
         <source>&lt;b&gt;About Django&lt;/b&gt;&lt;p&gt;Shows some information about Django.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Acerca de Django&lt;/b&gt;&lt;p&gt;Muestra información sobre Django.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../Project.py" line="309"/>
         <source>Synchronize</source>
-        <translation>Sincronizar</translation>
+        <translation type="obsolete">Sincronizar</translation>
     </message>
     <message>
         <location filename="../Project.py" line="309"/>
         <source>&amp;Synchronize</source>
-        <translation>&amp;Sincronizar</translation>
+        <translation type="obsolete">&amp;Sincronizar</translation>
     </message>
     <message>
         <location filename="../Project.py" line="314"/>
         <source>Synchronizes the database</source>
-        <translation>Sincroniza la base de datos</translation>
+        <translation type="obsolete">Sincroniza la base de datos</translation>
     </message>
     <message>
         <location filename="../Project.py" line="316"/>
         <source>&lt;b&gt;Synchronize&lt;/b&gt;&lt;p&gt;Synchronizes the database.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Sincronizar&lt;/b&gt;&lt;p&gt;Sincroniza la base de datos.&lt;/p&gt;</translation>
+        <translation type="obsolete">&lt;b&gt;Sincronizar&lt;/b&gt;&lt;p&gt;Sincroniza la base de datos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="862"/>
+        <location filename="../Project.py" line="856"/>
         <source>&amp;Database</source>
         <translation>Base de &amp;Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1898"/>
+        <location filename="../Project.py" line="1904"/>
         <source>Project</source>
         <translation>Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1638"/>
+        <location filename="../Project.py" line="1644"/>
         <source>Application</source>
         <translation>Aplicación</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1640"/>
+        <location filename="../Project.py" line="1646"/>
         <source>Start Django</source>
         <translation>Iniciar Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1640"/>
+        <location filename="../Project.py" line="1646"/>
         <source>Select if this project should be a Django Project or Application.&lt;br /&gt;Select the empty entry for none.</source>
         <translation>Seleccionar si este proyecto debería ser un Proyecto o Aplicación Django.
 &lt;br/&gt;Dejar en blanco para no seleccionar ninguno.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1717"/>
+        <location filename="../Project.py" line="1723"/>
         <source>Start Django Project</source>
         <translation>Iniciar Proyecto Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1693"/>
+        <location filename="../Project.py" line="1699"/>
         <source>Django project created successfully.</source>
         <translation>Proyecto Django creado correctamente.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1717"/>
+        <location filename="../Project.py" line="1723"/>
         <source>Enter the name of the new Django project.</source>
         <translation>Introduzca el nombre del nuevo proyecto Django.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1745"/>
+        <location filename="../Project.py" line="1751"/>
         <source>Start Django Application</source>
         <translation>Iniciar Aplicación Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1779"/>
+        <location filename="../Project.py" line="1785"/>
         <source>Django application created successfully.</source>
         <translation>Aplicación Django creada correctamente.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1862"/>
+        <location filename="../Project.py" line="1868"/>
         <source>Select Project</source>
         <translation>Seleccionar Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1862"/>
+        <location filename="../Project.py" line="1868"/>
         <source>Select the Django project to work with.</source>
         <translation>Seleccionar el proyecto Django con el que trabajar.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1896"/>
+        <location filename="../Project.py" line="1902"/>
         <source>None</source>
         <translation>Ninguno</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3230"/>
+        <location filename="../Project.py" line="3222"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1975"/>
+        <location filename="../Project.py" line="1981"/>
         <source>The Django server could not be started.</source>
         <translation>No se ha podido iniciar el servidor Django.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2021"/>
+        <location filename="../Project.py" line="2027"/>
         <source>Could not start the web-browser for the url &quot;{0}&quot;.</source>
         <translation>No se ha podido iniciar el navegador web para la url &quot;{0}&quot;.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2839"/>
+        <location filename="../Project.py" line="2831"/>
         <source>The Django process could not be started.</source>
         <translation>No se ha podido iniciar el proceso Django.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="128"/>
+        <location filename="../Project.py" line="136"/>
         <source>&lt;b&gt;Current Project&lt;/b&gt;&lt;p&gt;Selects the current project. Used for multi-project Django projects to switch between the projects.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Proyecto Actual&lt;/b&gt;&lt;p&gt;Selecciona el proyecto actual. Se utiliza para cambiar de proyecto en multiproyectos Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2537"/>
+        <location filename="../Project.py" line="2529"/>
         <source>Diff Settings</source>
         <translation>Configuración de Diff</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="547"/>
+        <location filename="../Project.py" line="541"/>
         <source>&amp;Diff Settings</source>
         <translation>Configuración de &amp;Diff</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="552"/>
+        <location filename="../Project.py" line="546"/>
         <source>Shows the modification made to the settings</source>
         <translation>Muestra los cambios hechos a la configuración</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="554"/>
+        <location filename="../Project.py" line="548"/>
         <source>&lt;b&gt;Diff Settings&lt;/b&gt;&lt;p&gt;Shows the modification made to the settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Configuración de Diff&lt;/b&gt;&lt;p&gt;Muestra los cambios hechos a la configuración.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="942"/>
+        <location filename="../Project.py" line="933"/>
         <source>&amp;Tools</source>
         <translation>Herramien&amp;tas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1525"/>
+        <location filename="../Project.py" line="1518"/>
         <source>Select Applications</source>
         <translation>Seleccionar Aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1525"/>
+        <location filename="../Project.py" line="1518"/>
         <source>Enter the list of applications separated by spaces.</source>
         <translation>Introduzca la lista de aplicaciones separadas por espacios.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1901"/>
+        <location filename="../Project.py" line="1907"/>
         <source>&amp;Current Django project ({0})</source>
         <translation>Proyec&amp;to Django actual ({0})</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="561"/>
+        <location filename="../Project.py" line="555"/>
         <source>Start Python Console</source>
         <translation>Iniciar Consola de Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="561"/>
+        <location filename="../Project.py" line="555"/>
         <source>Start &amp;Python Console</source>
         <translation>Iniciar Consola de &amp;Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="566"/>
+        <location filename="../Project.py" line="560"/>
         <source>Starts a Python interactive interpreter</source>
         <translation>Inicia un intérprete interactivo de Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="568"/>
+        <location filename="../Project.py" line="562"/>
         <source>&lt;b&gt;Start Python Console&lt;/b&gt;&lt;p&gt;Starts a Python interactive interpreter.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Iniciar Consola de Python&lt;/b&gt;&lt;p&gt;Inicia un intérprete interactivo de Python.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2593"/>
+        <location filename="../Project.py" line="2585"/>
         <source>Create Cache Tables</source>
         <translation>Crear Tablas de Caché</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="227"/>
+        <location filename="../Project.py" line="235"/>
         <source>C&amp;reate Cache Tables</source>
         <translation>C&amp;rear Tablas de Caché</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="232"/>
+        <location filename="../Project.py" line="240"/>
         <source>Creates the tables needed to use the SQL cache backend</source>
         <translation>Crea las tablas necesarias para utilizar el backend de caché de SQL</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="234"/>
+        <location filename="../Project.py" line="242"/>
         <source>&lt;b&gt;Create Cache Tables&lt;/b&gt;&lt;p&gt;Creates the tables needed to use the SQL cache backend.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Crear Tablas de Caché&lt;/b&gt;&lt;p&gt;Crea las tablas necesarias para utilizar el backend de caché de SQL.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2600"/>
+        <location filename="../Project.py" line="2592"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation>Introduzca los nombres de las tablas de caché separadas por espacios.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2615"/>
+        <location filename="../Project.py" line="2607"/>
         <source>Cache tables created successfully.</source>
         <translation>Tablas de caché creadas con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="323"/>
+        <location filename="../Project.py" line="317"/>
         <source>Introspect</source>
         <translation>Introspección</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="323"/>
+        <location filename="../Project.py" line="317"/>
         <source>&amp;Introspect</source>
         <translation>&amp;Introspección</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="328"/>
+        <location filename="../Project.py" line="322"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation>Realiza introspección de las tablas en la base de datos y devuelve un módulo de modelo de Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="331"/>
+        <location filename="../Project.py" line="325"/>
         <source>&lt;b&gt;Introspect&lt;/b&gt;&lt;p&gt;Introspects the database tables and outputs a Django model module.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Introspección&lt;/b&gt;&lt;p&gt;Realiza introspección de las tablas en la base de datos y devuelve a un módulo de modelo de Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2063"/>
+        <location filename="../Project.py" line="2044"/>
         <source>Introspect Database</source>
         <translation>Introspección de Base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="339"/>
+        <location filename="../Project.py" line="333"/>
         <source>Flush</source>
         <translation>Flush</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="339"/>
+        <location filename="../Project.py" line="333"/>
         <source>&amp;Flush</source>
         <translation>&amp;Flush</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="344"/>
+        <location filename="../Project.py" line="338"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation>Devuelve todas las tablas de la base de datos al estado que tenían al terminar su instalación</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="347"/>
+        <location filename="../Project.py" line="341"/>
         <source>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Returns all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Devuelve todas las tablas de la base de datos al estado que tenían al terminar su instalación.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2222"/>
+        <location filename="../Project.py" line="2215"/>
         <source>Flush Database</source>
         <translation>Hacer Flush de la base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2092"/>
+        <location filename="../Project.py" line="2073"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation>Un flush de la base de datos destruirá todos los datos. ¿Está seguro?</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2104"/>
+        <location filename="../Project.py" line="2085"/>
         <source>Database tables flushed successfully.</source>
         <translation>Se ha realizado una operación flush sobre la base de datos con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="355"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start Client Console</source>
         <translation>Iniciar Consola de Cliente</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="360"/>
+        <location filename="../Project.py" line="354"/>
         <source>Starts a console window for the database client</source>
         <translation>Inicia una ventana de consola para el cliente de base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="362"/>
+        <location filename="../Project.py" line="356"/>
         <source>&lt;b&gt;Start Client Console&lt;/b&gt;&lt;p&gt;Starts a console window for the database client.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Iniciar Consola de Cliente&lt;/b&gt;&lt;p&gt;Inicia una ventana de consola para el cliente de base de datos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="355"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start &amp;Client Console</source>
         <translation>Iniciar Consola de &amp;Cliente</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2180"/>
+        <location filename="../Project.py" line="2163"/>
         <source>Create Tables</source>
         <translation>Crear Tablas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="373"/>
+        <location filename="../Project.py" line="367"/>
         <source>Create &amp;Tables</source>
         <translation>Crear &amp;Tablas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="378"/>
+        <location filename="../Project.py" line="372"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation>Imprime las sentencias SQL CREATE TABLE para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="381"/>
+        <location filename="../Project.py" line="375"/>
         <source>&lt;b&gt;Create Tables&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Crear Tablas&lt;/b&gt;&lt;p&gt;Imprime las sentencias SQL CREATE TABLE para una o más aplicaciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="887"/>
+        <location filename="../Project.py" line="878"/>
         <source>Show &amp;SQL</source>
         <translation>Mostrar &amp;SQL</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2187"/>
+        <location filename="../Project.py" line="2172"/>
         <source>Create Indexes</source>
         <translation>Crear Índices</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="390"/>
+        <location filename="../Project.py" line="384"/>
         <source>Create &amp;Indexes</source>
         <translation>Crear &amp;Índices</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="398"/>
+        <location filename="../Project.py" line="392"/>
         <source>&lt;b&gt;Create Indexes&lt;/b&gt;&lt;p&gt;Prints the CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Crear Índices&lt;/b&gt;&lt;p&gt;Imprime las sentencias SQL CREATE INDEX para una o más aplicaciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2194"/>
+        <location filename="../Project.py" line="2181"/>
         <source>Create Everything</source>
         <translation>Crear Todo</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="407"/>
+        <location filename="../Project.py" line="401"/>
         <source>Create &amp;Everything</source>
         <translation>Cr&amp;ear Todo</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="412"/>
+        <location filename="../Project.py" line="406"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation>Imprime las sentencias SQL CREATE...para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="415"/>
+        <location filename="../Project.py" line="409"/>
         <source>&lt;b&gt;Create Everything&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Crear Todo&lt;/b&gt;&lt;p&gt;Imprime las sentencias SQL CREATE TABLE, SQL personalizado y CREATE INDEX para una o más aplicaciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="395"/>
+        <location filename="../Project.py" line="389"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation>Imprime las sentencias SQL CREATE INDEX para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2201"/>
+        <location filename="../Project.py" line="2190"/>
         <source>Custom Statements</source>
         <translation>Sentencias Personalizadas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="424"/>
+        <location filename="../Project.py" line="418"/>
         <source>&amp;Custom Statements</source>
         <translation>Sentencias &amp;Personalizadas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="429"/>
+        <location filename="../Project.py" line="423"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation>Imprime las sentencias sql personalizadas de modificación de tablas para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="432"/>
+        <location filename="../Project.py" line="426"/>
         <source>&lt;b&gt;Custom Statements&lt;/b&gt;&lt;p&gt;Prints the custom table modifying SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sentencias Personalizadas&lt;/b&gt;&lt;p&gt;Imprime las sentencias sql personalizadas de modificación de tablas para una o más aplicaciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2208"/>
+        <location filename="../Project.py" line="2199"/>
         <source>Drop Tables</source>
         <translation>Borrar Tablas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="441"/>
+        <location filename="../Project.py" line="435"/>
         <source>&amp;Drop Tables</source>
         <translation>&amp;Borrar Tablas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="446"/>
+        <location filename="../Project.py" line="440"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation>Imprime las sentencias SQL DROP TABLE para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="449"/>
+        <location filename="../Project.py" line="443"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Borrar Tablas&lt;/b&gt;&lt;p&gt;Imprime las sentencisa SQL DROP TABLE para una o más aplicaciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="475"/>
+        <location filename="../Project.py" line="469"/>
         <source>&amp;Flush Database</source>
         <translation>Hacer &amp;Flush de la base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="480"/>
+        <location filename="../Project.py" line="474"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation>Imprime una lista de sentencias para retornar todas las tablas de la base de datos al estado que tenían despues de su instalación</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="483"/>
+        <location filename="../Project.py" line="477"/>
         <source>&lt;b&gt;Flush Database&lt;/b&gt;&lt;p&gt;Prints a list of statements to return all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hacer Flush de la base de datos&lt;/b&gt;&lt;p&gt;Imprime una lista de sentencias para retornar todas las tablas de la base de datos al estado que tenían despues de su instalación.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2229"/>
+        <location filename="../Project.py" line="2222"/>
         <source>Reset Sequences</source>
         <translation>Resetear Secuencias</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="492"/>
+        <location filename="../Project.py" line="486"/>
         <source>Reset &amp;Sequences</source>
         <translation>Resetear &amp;Secuencias</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="497"/>
+        <location filename="../Project.py" line="491"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation>Imprime las sentencias SQL para resetear secuencias para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="500"/>
+        <location filename="../Project.py" line="494"/>
         <source>&lt;b&gt;Reset Sequences&lt;/b&gt;&lt;p&gt;Prints the SQL statements for resetting sequences for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Resetear Secuencias&lt;/b&gt;&lt;p&gt;Imprime las sentencias SQL para resetear secuencias para una o más aplicaciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2630"/>
+        <location filename="../Project.py" line="2622"/>
         <source>Dump Data</source>
         <translation>Volcado de Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="579"/>
+        <location filename="../Project.py" line="573"/>
         <source>&amp;Dump Data</source>
         <translation>&amp;Volcado de Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="584"/>
+        <location filename="../Project.py" line="578"/>
         <source>Dump the database data to a fixture</source>
         <translation>Volcado de los datos de una base de datos a una fixtuer</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="586"/>
+        <location filename="../Project.py" line="580"/>
         <source>&lt;b&gt;Dump Data&lt;/b&gt;&lt;p&gt;Dump the database data to a fixture.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Volcado de Datos&lt;/b&gt;&lt;p&gt;Volcado de los datos de una base de datos a una fixtuer.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="960"/>
+        <location filename="../Project.py" line="951"/>
         <source>T&amp;esting</source>
         <translation>T&amp;esting</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2271"/>
+        <location filename="../Project.py" line="2264"/>
         <source>SQL Files (*.sql)</source>
         <translation>Archivos SQL (*.sql)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2653"/>
+        <location filename="../Project.py" line="2645"/>
         <source>JSON Files (*.json)</source>
         <translation>Archivos JSON (*.json)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2655"/>
+        <location filename="../Project.py" line="2647"/>
         <source>XML Files (*.xml)</source>
         <translation>Archivos XML (*.xml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2657"/>
+        <location filename="../Project.py" line="2649"/>
         <source>YAML Files (*.yaml)</source>
         <translation>Archivos YAML (*.yaml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2669"/>
+        <location filename="../Project.py" line="2661"/>
         <source>Load Data</source>
         <translation>Cargar Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="593"/>
+        <location filename="../Project.py" line="587"/>
         <source>&amp;Load Data</source>
         <translation>&amp;Cargar Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="598"/>
+        <location filename="../Project.py" line="592"/>
         <source>Load data from fixture files</source>
         <translation>Cargar datos desde archivos de fixture</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="600"/>
+        <location filename="../Project.py" line="594"/>
         <source>&lt;b&gt;Load Data&lt;/b&gt;&lt;p&gt;Load data from fixture files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cargar Datos&lt;/b&gt;&lt;p&gt;Cargar datos desde archivos de fixture.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="607"/>
+        <location filename="../Project.py" line="601"/>
         <source>Run Testsuite</source>
         <translation>Ejecutar Testsuite</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="607"/>
+        <location filename="../Project.py" line="601"/>
         <source>Run &amp;Testsuite</source>
         <translation>Ejecutar &amp;Testsuite</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="612"/>
+        <location filename="../Project.py" line="606"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation>Ejecutar la suite de tests para aplicaciones en todo el site</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="614"/>
+        <location filename="../Project.py" line="608"/>
         <source>&lt;b&gt;Run Testsuite&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ejecutar Testsuite&lt;/b&gt;&lt;p&gt;Ejecutar la suite de tests para aplicaciones en todo el site.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="638"/>
+        <location filename="../Project.py" line="632"/>
         <source>Run Testserver</source>
         <translation>Ejecutar Testserver</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="638"/>
+        <location filename="../Project.py" line="632"/>
         <source>Run Test&amp;server</source>
         <translation>Ejecutar Test&amp;server</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="643"/>
+        <location filename="../Project.py" line="637"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation>Ejecutar un servidor de desarrollo con datos de un conjunto de fixtures</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="645"/>
+        <location filename="../Project.py" line="639"/>
         <source>&lt;b&gt;Run Testserver&lt;/b&gt;&lt;p&gt;Run a development server with data from a set of fixtures.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ejecutar Testserver&lt;/b&gt;&lt;p&gt;Ejecutar un servidor de desarrollo con datos de un conjunto de fixtures.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2766"/>
+        <location filename="../Project.py" line="2758"/>
         <source>The Django test server could not be started.</source>
         <translation>No se ha podido iniciar el servidor de tests Django.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="247"/>
+        <location filename="../Project.py" line="255"/>
         <source>Help</source>
         <translation>Ayuda</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="247"/>
+        <location filename="../Project.py" line="255"/>
         <source>&amp;Help</source>
         <translation>&amp;Ayuda</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="252"/>
+        <location filename="../Project.py" line="260"/>
         <source>Shows the Django help index</source>
         <translation>Muestra el índice de ayuda de Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="254"/>
+        <location filename="../Project.py" line="262"/>
         <source>&lt;b&gt;Help&lt;/b&gt;&lt;p&gt;Shows the Django help index page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ayuda&lt;/b&gt;&lt;p&gt;Muestra la página de índice de ayuda de Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1055"/>
+        <location filename="../Project.py" line="1046"/>
         <source>New template...</source>
         <translation>Nueva plantilla...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1064"/>
+        <location filename="../Project.py" line="1055"/>
         <source>Update all catalogs</source>
         <translation>Actualizar todos los catálogos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1067"/>
+        <location filename="../Project.py" line="1058"/>
         <source>Update selected catalogs</source>
         <translation>Actualizar los catálogos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1078"/>
+        <location filename="../Project.py" line="1069"/>
         <source>Compile all catalogs</source>
         <translation>Compilar todos los catálogos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1081"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Compile selected catalogs</source>
         <translation>Compilar los catálogos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2935"/>
+        <location filename="../Project.py" line="2927"/>
         <source>Initializing message catalog for &apos;{0}&apos;</source>
         <translation>Inicializando catálogo de mensajes para &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3194"/>
+        <location filename="../Project.py" line="3186"/>
         <source>No current site selected or no site created yet. Aborting...</source>
         <translation>No se ha seleccionado un sitio o no se ha creado un sitio todavía. Abortando...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2955"/>
+        <location filename="../Project.py" line="2947"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation>Catálogo de mensajes iniciado con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3067"/>
+        <location filename="../Project.py" line="3059"/>
         <source>Updating message catalogs</source>
         <translation>Actualizando catálogos de mensajes</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3158"/>
+        <location filename="../Project.py" line="3150"/>
         <source>No locales detected. Aborting...</source>
         <translation>No se ha detectado ningún idioma. Abortando...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3118"/>
+        <location filename="../Project.py" line="3110"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation>
 Catálogos de mensajes actualizados con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3184"/>
+        <location filename="../Project.py" line="3176"/>
         <source>Compiling message catalogs</source>
         <translation>Compilando catálogos de mensajes</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3201"/>
+        <location filename="../Project.py" line="3193"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation>
 Catálogos de mensajes compilados con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1071"/>
+        <location filename="../Project.py" line="1062"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation>Acutalizar todos los catálogos (con obsoletos)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1074"/>
+        <location filename="../Project.py" line="1065"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation>Actualizar los catálogos seleccionados (con obsoletos)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1791"/>
+        <location filename="../Project.py" line="1797"/>
         <source>Start Global Django Application</source>
         <translation>Iniciar Aplicación Global Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1791"/>
+        <location filename="../Project.py" line="1797"/>
         <source>Enter the name of the new global Django application.</source>
         <translation>Introducir el nombre de la nueva aplicación global Django.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1813"/>
+        <location filename="../Project.py" line="1819"/>
         <source>Start Local Django Application</source>
         <translation>Iniciar Aplicación Local Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1813"/>
+        <location filename="../Project.py" line="1819"/>
         <source>Enter the name of the new local Django application.</source>
         <translation>Introducir el nombre de la nueva aplicación local Django.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3099"/>
+        <location filename="../Project.py" line="3091"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation>Actualizando los catálogos de mensajes (conservando mensajes obsoletos)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2796"/>
+        <location filename="../Project.py" line="2788"/>
         <source>Change Password</source>
         <translation>Cambiar Contraseña</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="657"/>
+        <location filename="../Project.py" line="651"/>
         <source>Change &amp;Password</source>
         <translation>Cambiar C&amp;ontraseña</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="662"/>
+        <location filename="../Project.py" line="656"/>
         <source>Change the password of a user</source>
         <translation>Cambiar la contraseña de un usuario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="664"/>
+        <location filename="../Project.py" line="658"/>
         <source>&lt;b&gt;Change Password&lt;/b&gt;&lt;p&gt;Change the password of a user of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cambiar Contraseña&lt;/b&gt;&lt;p&gt;Cambiar la contraseña de un usuario del proyecto Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="671"/>
+        <location filename="../Project.py" line="665"/>
         <source>Create Superuser</source>
         <translation>Crear Superusuario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="671"/>
+        <location filename="../Project.py" line="665"/>
         <source>Create &amp;Superuser</source>
         <translation>Crear &amp;Superusuario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="676"/>
+        <location filename="../Project.py" line="670"/>
         <source>Create a superuser account</source>
         <translation>Crear una cuenta de superusuario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="678"/>
+        <location filename="../Project.py" line="672"/>
         <source>&lt;b&gt;Create Superuser&lt;/b&gt;&lt;p&gt;Create a superuser account for the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Crear Superusuario&lt;/b&gt;&lt;p&gt;Crear una cuenta de superusuario para el proyecto Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2854"/>
+        <location filename="../Project.py" line="2846"/>
         <source>Clear Sessions</source>
         <translation>Limpiar Sesiones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="689"/>
+        <location filename="../Project.py" line="683"/>
         <source>Clear &amp;Sessions</source>
         <translation>Limpiar &amp;Sesiones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="694"/>
+        <location filename="../Project.py" line="688"/>
         <source>Clear expired sessions</source>
         <translation>Limpiar sesiones expiradas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="696"/>
+        <location filename="../Project.py" line="690"/>
         <source>&lt;b&gt;Clear Sessions&lt;/b&gt;&lt;p&gt;Clear expired sessions of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpiar Sesiones&lt;/b&gt;&lt;p&gt;Limpiar sesiones expiradas del proyecto Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="981"/>
+        <location filename="../Project.py" line="972"/>
         <source>&amp;Authorization</source>
         <translation>&amp;Autorización</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="998"/>
+        <location filename="../Project.py" line="989"/>
         <source>&amp;Session</source>
         <translation>&amp;Sesión</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2796"/>
+        <location filename="../Project.py" line="2788"/>
         <source>Enter the name of the user:</source>
         <translation>Introducir el nombre del usuario:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2866"/>
+        <location filename="../Project.py" line="2858"/>
         <source>Expired sessions cleared successfully.</source>
         <translation>Sesiones expiradas limpiadas con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1454"/>
+        <location filename="../Project.py" line="1447"/>
         <source>&lt;p&gt;Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;/p&gt;&lt;p&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Version:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;URL:&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;{1}&quot;&gt;{1}&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Django es un Web framework de alto nivel que fomenta un rápido desarrollo y un diseño limpio y pragmático.&lt;/p&gt;&lt;p&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Versión:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;URL:&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;{1}&quot;&gt;{1}&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1762"/>
+        <location filename="../Project.py" line="1768"/>
         <source>&lt;p&gt;The &lt;b&gt;django-admin.py&lt;/b&gt; script is not in the path. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;El script &lt;b&gt;django-admin.py&lt;/b&gt; no está en la ruta. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1040"/>
+        <location filename="../Project.py" line="1031"/>
         <source>Open with {0}</source>
         <translation>Abrir con {0}</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3230"/>
+        <location filename="../Project.py" line="3222"/>
         <source>The translations editor process ({0}) could not be started.</source>
         <translation>El proceso para el editor de traducciones {0} no ha podido ejecutarse.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1175"/>
+        <location filename="../Project.py" line="1166"/>
         <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt; Problem: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El nuevo archivo de formulario &lt;b&gt;{0}&lt;/b&gt; no ha podido ser creado.&lt;br&gt;Problema: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2215"/>
+        <location filename="../Project.py" line="2208"/>
         <source>Drop Indexes</source>
         <translation>Borrar Índices</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="458"/>
+        <location filename="../Project.py" line="452"/>
         <source>&amp;Drop Indexes</source>
         <translation>Borrar Ín&amp;dices</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="463"/>
+        <location filename="../Project.py" line="457"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation>Imprime las sentencias SQL DROP INDEX para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="466"/>
+        <location filename="../Project.py" line="460"/>
         <source>&lt;b&gt;Drop Indexes&lt;/b&gt;&lt;p&gt;Prints the DROP INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Borrar Índices&lt;/b&gt;&lt;p&gt;Imprime las sentencias SQL DROP INDEX para una o más aplicaciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="707"/>
+        <location filename="../Project.py" line="701"/>
         <source>Show Migrations</source>
         <translation>Mostrar Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="707"/>
+        <location filename="../Project.py" line="701"/>
         <source>&amp;Show Migrations</source>
         <translation>Mo&amp;strar Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="712"/>
+        <location filename="../Project.py" line="706"/>
         <source>Show a list of available migrations</source>
         <translation>Mostrar una lista de migraciones disponibles</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="714"/>
+        <location filename="../Project.py" line="708"/>
         <source>&lt;b&gt;Show Migrations&lt;/b&gt;&lt;p&gt;This shows a list of available migrations of the Django project and their status.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostrar Migraciones&lt;/b&gt;&lt;p&gt;Muestra una lista de migraciones disponibles para el proyecto Django y su estado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="722"/>
+        <location filename="../Project.py" line="716"/>
         <source>Show Migrations Plan</source>
         <translation>Mostrar Plan de Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="722"/>
+        <location filename="../Project.py" line="716"/>
         <source>Show Migrations &amp;Plan</source>
         <translation>Mostrar &amp;Plan de Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="727"/>
+        <location filename="../Project.py" line="721"/>
         <source>Show a list with the migrations plan</source>
         <translation>Mostrar una lista con el plan de migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="729"/>
+        <location filename="../Project.py" line="723"/>
         <source>&lt;b&gt;Show Migrations Plan&lt;/b&gt;&lt;p&gt;This shows a list with the migrations plan of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostrar Plan de Migraciones&lt;/b&gt;&lt;p&gt;Muestra una lista con el plan de migraciones del proyecto Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="917"/>
+        <location filename="../Project.py" line="908"/>
         <source>&amp;Migrations</source>
         <translation>&amp;Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="737"/>
+        <location filename="../Project.py" line="731"/>
         <source>Apply All Migrations</source>
         <translation>Aplicar Todas las Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="737"/>
+        <location filename="../Project.py" line="731"/>
         <source>&amp;Apply All Migrations</source>
         <translation>&amp;Aplicar Todas las Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="742"/>
+        <location filename="../Project.py" line="736"/>
         <source>Apply all available migrations</source>
         <translation>Aplicar todas las migraciones disponibles</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="744"/>
+        <location filename="../Project.py" line="738"/>
         <source>&lt;b&gt;Apply All Migrations&lt;/b&gt;&lt;p&gt;This applies all migrations of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aplicar Todas las Migraciones&lt;/b&gt;&lt;p&gt;Aplica todas las migraciones del proyecto Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2325"/>
+        <location filename="../Project.py" line="2318"/>
         <source>Apply Selected Migrations</source>
         <translation>Aplicar Migraciones Seleccionadas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="756"/>
+        <location filename="../Project.py" line="750"/>
         <source>Apply selected migrations</source>
         <translation>Aplicar migraciones seleccionadas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="758"/>
+        <location filename="../Project.py" line="752"/>
         <source>&lt;b&gt;Apply Selected Migrations&lt;/b&gt;&lt;p&gt;This applies selected migrations of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aplicar Migraciones Seleccionadas&lt;/b&gt;&lt;p&gt;Aplica las migraciones seleccionadas del proyecto Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2384"/>
+        <location filename="../Project.py" line="2377"/>
         <source>Unapply Migrations</source>
         <translation>Deshacer Aplicar Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="767"/>
+        <location filename="../Project.py" line="761"/>
         <source>&amp;Unapply Migrations</source>
         <translation>Des&amp;hacer Aplicar Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="772"/>
+        <location filename="../Project.py" line="766"/>
         <source>Unapply all migrations for an app</source>
         <translation>Deshacer aplicar todas las migraciones para una app</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="774"/>
+        <location filename="../Project.py" line="768"/>
         <source>&lt;b&gt;Unapply Migrations&lt;/b&gt;&lt;p&gt;This unapplies all migrations for an app of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Deshacer Aplicar Migraciones&lt;/b&gt;&lt;p&gt;Deshace aplicar todas las migraciones para una app del proyecto Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2461"/>
+        <location filename="../Project.py" line="2454"/>
         <source>Make Migrations</source>
         <translation>Hacer Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="782"/>
+        <location filename="../Project.py" line="776"/>
         <source>&amp;Make Migrations</source>
         <translation>Hacer &amp;Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="787"/>
+        <location filename="../Project.py" line="781"/>
         <source>Generate migrations for the project</source>
         <translation>Generar migraciones para el proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="789"/>
+        <location filename="../Project.py" line="783"/>
         <source>&lt;b&gt;Make Migrations&lt;/b&gt;&lt;p&gt;This generates migrations for the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hacer Migraciones&lt;/b&gt;&lt;p&gt;Genera las migraciones para el proyecto Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2492"/>
+        <location filename="../Project.py" line="2484"/>
         <source>No migrations available.</source>
         <translation>No hay migraciones disponibles.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2350"/>
+        <location filename="../Project.py" line="2343"/>
         <source>Apply Migrations</source>
         <translation>Aplicar Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2384"/>
+        <location filename="../Project.py" line="2377"/>
         <source>Select an application:</source>
         <translation>Seleccionar una aplicación:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2505"/>
+        <location filename="../Project.py" line="2497"/>
         <source>Squash Migrations</source>
         <translation>Hacer &quot;Squash&quot; de Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="796"/>
+        <location filename="../Project.py" line="790"/>
         <source>S&amp;quash Migrations</source>
         <translation>Hacer &quot;S&amp;quash&quot; de Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="801"/>
+        <location filename="../Project.py" line="795"/>
         <source>Squash migrations of an application of the project</source>
         <translation>Hacer squash de migraciones de una aplicación del proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="803"/>
+        <location filename="../Project.py" line="797"/>
         <source>&lt;b&gt;Squash Migrations&lt;/b&gt;&lt;p&gt;This squashes migrations of an application of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hacer Squash de Migraciones&lt;/b&gt;&lt;p&gt;Hace squash de migraciones de una aplicación del proyecto Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="509"/>
+        <location filename="../Project.py" line="503"/>
         <source>Apply Migration</source>
         <translation>Aplicar Migración</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="509"/>
+        <location filename="../Project.py" line="503"/>
         <source>&amp;Apply Migration</source>
         <translation>&amp;Aplicar Migración</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="514"/>
+        <location filename="../Project.py" line="508"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation>Imprime las sentencias SQL para aplicar una migración de una aplicación</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="517"/>
+        <location filename="../Project.py" line="511"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aplicar Migración&lt;/b&gt;&lt;p&gt;Imprime las sentencias SQL para aplicar una migración de una aplicación.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="526"/>
+        <location filename="../Project.py" line="520"/>
         <source>Unapply Migration</source>
         <translation>Deshacer Aplicar Migración</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="526"/>
+        <location filename="../Project.py" line="520"/>
         <source>&amp;Unapply Migration</source>
         <translation>Des&amp;hacer Aplicar Migración</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="531"/>
+        <location filename="../Project.py" line="525"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation>Imprime las sentencias SQL para deshacer aplicar la migración de una aplicación</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="534"/>
+        <location filename="../Project.py" line="528"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Deshacer aplicar Migración&lt;/b&gt;&lt;p&gt;Imprime las sentencias SQL para deshacer aplicar una migración de una aplicación.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2253"/>
+        <location filename="../Project.py" line="2246"/>
         <source>SQL Migrate</source>
         <translation>SQL Migrate</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3275"/>
+        <location filename="../Project.py" line="3267"/>
         <source>Check Project</source>
         <translation>Comprobar Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="288"/>
+        <location filename="../Project.py" line="296"/>
         <source>Inspects the Django project for common problems</source>
         <translation>Inspecciona el proyecto Django para problemas comunes</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="290"/>
+        <location filename="../Project.py" line="298"/>
         <source>&lt;b&gt;Check Project&lt;/b&gt;&lt;p&gt;This inspects the Django project for common problems.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Comprobar Proyecto&lt;/b&gt;&lt;p&gt;Inspecciona el proyecto Django para problemas comunes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="621"/>
+        <location filename="../Project.py" line="615"/>
         <source>Run Testsuite (-Wall)</source>
         <translation>Ejecutar suite de Tests (-Wall)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="626"/>
+        <location filename="../Project.py" line="620"/>
         <source>Run the test suite for applications or the whole site with activated deprecation warnings</source>
         <translation>Ejecutar suite de tests para aplicaciones o el site completo con advertencias de deprecación activadas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="629"/>
+        <location filename="../Project.py" line="623"/>
         <source>&lt;b&gt;Run Testsuite (-Wall)&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site with activated deprecation warnings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ejecutar suite de Tests (-Wall)&lt;/b&gt;&lt;p&gt;Ejecuta la suite de tests para aplicaciones o el site completo con advertencias de deprecación activadas.&lt;/p&gt;</translation>
     </message>
@@ -1720,14 +1759,14 @@
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="409"/>
+        <location filename="../../PluginProjectDjango.py" line="389"/>
         <source>Django</source>
         <translation>Django</translation>
     </message>
     <message>
         <location filename="../../PluginProjectDjango.py" line="180"/>
         <source>eric6 version is too old, {0}, {1} or newer needed.</source>
-        <translation>La versión de eric6 es demasiado antigua, {0}, {1} o más reciente es necesaria.</translation>
+        <translation type="obsolete">La versión de eric6 es demasiado antigua, {0}, {1} o más reciente es necesaria.</translation>
     </message>
 </context>
 </TS>
diff -r 6e39332e4a36 -r 7e2351e4d729 ProjectDjango/i18n/django_ru.ts
--- a/ProjectDjango/i18n/django_ru.ts	Sun Apr 23 17:20:47 2017 +0200
+++ b/ProjectDjango/i18n/django_ru.ts	Thu Apr 27 19:35:14 2017 +0200
@@ -61,40 +61,80 @@
         <translation>Django</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.ui" line="35"/>
+        <location filename="../DjangoDialog.ui" line="29"/>
         <source>Output</source>
         <translation>Вывод</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.ui" line="63"/>
+        <location filename="../DjangoDialog.ui" line="66"/>
         <source>Errors</source>
         <translation>Ошибки</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="181"/>
+        <location filename="../DjangoDialog.py" line="189"/>
         <source>Process Generation Error</source>
         <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="181"/>
+        <location filename="../DjangoDialog.py" line="189"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Процесс {0} не может быть запущен. Убедитесь, что к нему указан путь доступа.</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="266"/>
+        <location filename="../DjangoDialog.py" line="282"/>
         <source>Select data file</source>
         <translation>Выбор файла данных</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="287"/>
+        <location filename="../DjangoDialog.py" line="303"/>
         <source>Error saving data</source>
         <translation>Ошибка сохранения данных</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="287"/>
+        <location filename="../DjangoDialog.py" line="303"/>
         <source>&lt;p&gt;The data could not be written to &lt;b&gt;{0}&lt;/b&gt;&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="../DjangoDialog.ui" line="103"/>
+        <source>Input</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="128"/>
+        <source>&amp;Send</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="131"/>
+        <source>Alt+S</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="145"/>
+        <source>Select to switch the input field to password mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="148"/>
+        <source>&amp;Password Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="151"/>
+        <source>Alt+P</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="125"/>
+        <source>Press to send the input to the manage.py process</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="138"/>
+        <source>Enter data to be sent to the manage.py process</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DjangoDumpdataDataDialog</name>
@@ -474,7 +514,7 @@
         <translation>Выбор виртуального окружения для Python 2</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="374"/>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="191"/>
         <source>Translations Editor</source>
         <translation>Редактор для перевода</translation>
     </message>
@@ -555,1137 +595,1137 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="808"/>
+        <location filename="../Project.py" line="814"/>
         <source>D&amp;jango</source>
         <translation>D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1166"/>
         <source>New Form</source>
         <translation>Создание новой формы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1127"/>
+        <location filename="../Project.py" line="1133"/>
         <source>The file already exists! Overwrite it?</source>
         <translation>Файл уже существует! Переписать его?</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="123"/>
+        <location filename="../Project.py" line="129"/>
         <source>Current Project</source>
         <translation>Текущий проект</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="128"/>
+        <location filename="../Project.py" line="134"/>
         <source>Selects the current project</source>
         <translation>Выбор текущего проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="143"/>
+        <location filename="../Project.py" line="149"/>
         <source>Start Project</source>
         <translation>Создание нового проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="143"/>
+        <location filename="../Project.py" line="149"/>
         <source>Start &amp;Project</source>
         <translation>Новый &amp;проект</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="148"/>
+        <location filename="../Project.py" line="154"/>
         <source>Starts a new Django project</source>
         <translation>Создание нового Django проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="150"/>
+        <location filename="../Project.py" line="156"/>
         <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using &quot;django-admin.py startproject&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Новый проект&lt;/b&gt;&lt;p&gt;Создание нового Django проекта посредством команды &quot;django-admin.py startproject&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="158"/>
+        <location filename="../Project.py" line="164"/>
         <source>Start Application (global)</source>
         <translation>Создание приложения (global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="158"/>
+        <location filename="../Project.py" line="164"/>
         <source>Start Application (&amp;global)</source>
         <translation>Новое приложение (&amp;global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="163"/>
+        <location filename="../Project.py" line="169"/>
         <source>Starts a new global Django application</source>
         <translation>Создание нового (global) Django приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="165"/>
+        <location filename="../Project.py" line="171"/>
         <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using &quot;django-admin.py startapp&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Старт приложения (global)&lt;/b&gt;&lt;p&gt;Создание нового global Django приложения посредством команды: &quot;django-admin.py startapp&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="174"/>
+        <location filename="../Project.py" line="180"/>
         <source>Start Application (local)</source>
         <translation>Создание приложения (local)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="174"/>
+        <location filename="../Project.py" line="180"/>
         <source>Start Application (&amp;local)</source>
         <translation>Новое приложение (&amp;local)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="179"/>
+        <location filename="../Project.py" line="185"/>
         <source>Starts a new local Django application</source>
         <translation>Создание нового (local) Django приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="181"/>
+        <location filename="../Project.py" line="187"/>
         <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using &quot;manage.py startapp&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Старт приложения (local)&lt;/b&gt;&lt;p&gt;Создание нового local Django приложения посредством команды: &quot;manage.py startapp&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="194"/>
+        <location filename="../Project.py" line="200"/>
         <source>Run Server</source>
         <translation>Сервер разработки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="194"/>
+        <location filename="../Project.py" line="200"/>
         <source>Run &amp;Server</source>
         <translation>&amp;Сервер разработки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="199"/>
+        <location filename="../Project.py" line="205"/>
         <source>Starts the Django Web server</source>
         <translation>Запуск Django Web сервера разработки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="201"/>
+        <location filename="../Project.py" line="207"/>
         <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using &quot;manage.py runserver&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Сервер разработки&lt;/b&gt;&lt;p&gt;Запуск Django Web сервера разработки посредством команды: &quot;manage.py runserver&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2019"/>
+        <location filename="../Project.py" line="2027"/>
         <source>Run Web-Browser</source>
         <translation>Запуск Web-браузера администрирования</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="209"/>
+        <location filename="../Project.py" line="215"/>
         <source>Run &amp;Web-Browser</source>
         <translation>Запуск &amp;Web-браузера</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="214"/>
+        <location filename="../Project.py" line="220"/>
         <source>Starts the default Web-Browser with the URL of the Django Web server</source>
         <translation>Запуск Web-браузера, используемого по умолчанию, с URL Django Web сервера</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="217"/>
+        <location filename="../Project.py" line="223"/>
         <source>&lt;b&gt;Run Web-Browser&lt;/b&gt;&lt;p&gt;Starts the default Web-Browser with the URL of the Django Web server.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Запуск Web-браузера&lt;/b&gt;&lt;p&gt;Запуск Web-браузера, используемого по умолчанию, с адресом Django Web сервера.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1447"/>
         <source>About Django</source>
         <translation>О Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="267"/>
+        <location filename="../Project.py" line="273"/>
         <source>About D&amp;jango</source>
         <translation>О D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="272"/>
+        <location filename="../Project.py" line="278"/>
         <source>Shows some information about Django</source>
         <translation>Отображение информации о Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="274"/>
+        <location filename="../Project.py" line="280"/>
         <source>&lt;b&gt;About Django&lt;/b&gt;&lt;p&gt;Shows some information about Django.&lt;/p&gt;</source>
         <translation>&lt;b&gt;О Django&lt;/b&gt;&lt;p&gt;Отображение информации о Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="850"/>
+        <location filename="../Project.py" line="856"/>
         <source>&amp;Database</source>
         <translation>&amp;База данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1896"/>
+        <location filename="../Project.py" line="1904"/>
         <source>Project</source>
         <translation>Project</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1636"/>
+        <location filename="../Project.py" line="1644"/>
         <source>Application</source>
         <translation>Application</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1638"/>
+        <location filename="../Project.py" line="1646"/>
         <source>Start Django</source>
         <translation>Старт Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1638"/>
+        <location filename="../Project.py" line="1646"/>
         <source>Select if this project should be a Django Project or Application.&lt;br /&gt;Select the empty entry for none.</source>
         <translation>Сделайте соответствующий выбор, если это  будет Django проект или приложение.&lt;br/&gt;Если нет - выберите пустой ввод.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1715"/>
+        <location filename="../Project.py" line="1723"/>
         <source>Start Django Project</source>
         <translation>Создание Django проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1691"/>
+        <location filename="../Project.py" line="1699"/>
         <source>Django project created successfully.</source>
         <translation>Django проект успешно создан.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1715"/>
+        <location filename="../Project.py" line="1723"/>
         <source>Enter the name of the new Django project.</source>
         <translation>Введите имя нового Django проекта.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1743"/>
+        <location filename="../Project.py" line="1751"/>
         <source>Start Django Application</source>
         <translation>Создание Django приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1777"/>
+        <location filename="../Project.py" line="1785"/>
         <source>Django application created successfully.</source>
         <translation>Django приложение успешно создано.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1860"/>
+        <location filename="../Project.py" line="1868"/>
         <source>Select Project</source>
         <translation>Выбор проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1860"/>
+        <location filename="../Project.py" line="1868"/>
         <source>Select the Django project to work with.</source>
         <translation>Выбор Django проекта для работы.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1894"/>
+        <location filename="../Project.py" line="1902"/>
         <source>None</source>
         <translation>none</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3215"/>
+        <location filename="../Project.py" line="3222"/>
         <source>Process Generation Error</source>
         <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1973"/>
+        <location filename="../Project.py" line="1981"/>
         <source>The Django server could not be started.</source>
         <translation>Невозможно запустить Django сервер.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2019"/>
+        <location filename="../Project.py" line="2027"/>
         <source>Could not start the web-browser for the url &quot;{0}&quot;.</source>
         <translation>Невозможно открыть web-браузер с адресом &quot;{0}&quot;.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2824"/>
+        <location filename="../Project.py" line="2831"/>
         <source>The Django process could not be started.</source>
         <translation>Невозможно запустить Django процесс.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="130"/>
+        <location filename="../Project.py" line="136"/>
         <source>&lt;b&gt;Current Project&lt;/b&gt;&lt;p&gt;Selects the current project. Used for multi-project Django projects to switch between the projects.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Текущий проект&lt;/b&gt;&lt;p&gt;Выберите текущий проект. Используется в мультипроекте Django проектов для переключения между ними.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2522"/>
+        <location filename="../Project.py" line="2529"/>
         <source>Diff Settings</source>
         <translation>Отличие текущих параметров от параметров настройки Django по умолчанию</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="535"/>
+        <location filename="../Project.py" line="541"/>
         <source>&amp;Diff Settings</source>
         <translation>&amp;Различия настройки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="540"/>
+        <location filename="../Project.py" line="546"/>
         <source>Shows the modification made to the settings</source>
         <translation>Показ изменений, сделанных в параметрах настройки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="542"/>
+        <location filename="../Project.py" line="548"/>
         <source>&lt;b&gt;Diff Settings&lt;/b&gt;&lt;p&gt;Shows the modification made to the settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Различия настройки&lt;/b&gt;&lt;p&gt;Показ изменений, сделанных в параметрах настройки.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="927"/>
+        <location filename="../Project.py" line="933"/>
         <source>&amp;Tools</source>
         <translation>&amp;Сервис</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1518"/>
         <source>Select Applications</source>
         <translation>Выбор приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1518"/>
         <source>Enter the list of applications separated by spaces.</source>
         <translation>Введите список приложений, разделенных пробелами.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1899"/>
+        <location filename="../Project.py" line="1907"/>
         <source>&amp;Current Django project ({0})</source>
         <translation>Текущий &amp;Django проект ({0})</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="549"/>
+        <location filename="../Project.py" line="555"/>
         <source>Start Python Console</source>
         <translation>Старт консоли Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="549"/>
+        <location filename="../Project.py" line="555"/>
         <source>Start &amp;Python Console</source>
         <translation>Старт консоли &amp;Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="554"/>
+        <location filename="../Project.py" line="560"/>
         <source>Starts a Python interactive interpreter</source>
         <translation>Запуск интерактивного интерпретатора Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="556"/>
+        <location filename="../Project.py" line="562"/>
         <source>&lt;b&gt;Start Python Console&lt;/b&gt;&lt;p&gt;Starts a Python interactive interpreter.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Запуск консоли Python&lt;/b&gt;&lt;p&gt;Запуск интерактивного интерпретатора Python.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2578"/>
+        <location filename="../Project.py" line="2585"/>
         <source>Create Cache Tables</source>
         <translation>Создание кэша таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="229"/>
+        <location filename="../Project.py" line="235"/>
         <source>C&amp;reate Cache Tables</source>
         <translation>С&amp;оздание кэша таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="234"/>
+        <location filename="../Project.py" line="240"/>
         <source>Creates the tables needed to use the SQL cache backend</source>
         <translation>Для создания таблиц необходимо использовать SQL кэш бэкенд</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="236"/>
+        <location filename="../Project.py" line="242"/>
         <source>&lt;b&gt;Create Cache Tables&lt;/b&gt;&lt;p&gt;Creates the tables needed to use the SQL cache backend.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Создание кэша таблиц&lt;/b&gt;&lt;p&gt;Для создания таблиц необходимо использовать  SQL кэш бэкенд.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2585"/>
+        <location filename="../Project.py" line="2592"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation>Введите имена таблиц кэша, разделенных пробелами.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2600"/>
+        <location filename="../Project.py" line="2607"/>
         <source>Cache tables created successfully.</source>
         <translation>Кэш таблиц создан успешно.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="311"/>
+        <location filename="../Project.py" line="317"/>
         <source>Introspect</source>
         <translation>Просматривает базу данных, определяет структуру моделей и выводит их код</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="311"/>
+        <location filename="../Project.py" line="317"/>
         <source>&amp;Introspect</source>
         <translation>&amp;Инспекция</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="316"/>
+        <location filename="../Project.py" line="322"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation>Анализ таблиц базы данных и вывод кода модуля Django моделей</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="319"/>
+        <location filename="../Project.py" line="325"/>
         <source>&lt;b&gt;Introspect&lt;/b&gt;&lt;p&gt;Introspects the database tables and outputs a Django model module.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Анализ таблиц базы данных&lt;/b&gt;&lt;p&gt;Анализ таблиц базы данных, определение структуры и вывод кода модуля Django моделей.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2036"/>
+        <location filename="../Project.py" line="2044"/>
         <source>Introspect Database</source>
         <translation>Анализ таблиц базы данных и генерация кода модуля Django моделей</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="327"/>
+        <location filename="../Project.py" line="333"/>
         <source>Flush</source>
         <translation>Очистка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="327"/>
+        <location filename="../Project.py" line="333"/>
         <source>&amp;Flush</source>
         <translation>&amp;Очистка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="332"/>
+        <location filename="../Project.py" line="338"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation>Возвращает все таблицы базы данных к состоянию на момент инсталяции базы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="335"/>
+        <location filename="../Project.py" line="341"/>
         <source>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Returns all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Очистка&lt;/b&gt;&lt;p&gt;Возврат всех таблиц базы данных к состоянию на момент инсталяции базы.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2207"/>
+        <location filename="../Project.py" line="2215"/>
         <source>Flush Database</source>
         <translation>Очистка базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2065"/>
+        <location filename="../Project.py" line="2073"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation>Очистка  базы данных приведет к уничтожению всех данных. Вы действительно этого хотите?</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2077"/>
+        <location filename="../Project.py" line="2085"/>
         <source>Database tables flushed successfully.</source>
         <translation>Таблицы базы данных успешно очищены.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="343"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start Client Console</source>
         <translation>Запуск консоли клиента</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="348"/>
+        <location filename="../Project.py" line="354"/>
         <source>Starts a console window for the database client</source>
         <translation>Запуск окна консоли для клиента базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="350"/>
+        <location filename="../Project.py" line="356"/>
         <source>&lt;b&gt;Start Client Console&lt;/b&gt;&lt;p&gt;Starts a console window for the database client.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Запуск консоли клиента&lt;/b&gt;&lt;p&gt;Запуск окна консоли для клиента базы данных.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="343"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start &amp;Client Console</source>
         <translation>Старт консоли &amp;клиента</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2155"/>
+        <location filename="../Project.py" line="2163"/>
         <source>Create Tables</source>
         <translation>Создание таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="361"/>
+        <location filename="../Project.py" line="367"/>
         <source>Create &amp;Tables</source>
         <translation>Создать &amp;таблицы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="366"/>
+        <location filename="../Project.py" line="372"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation>Выводит SQL операторы CREATE TABLE для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="369"/>
+        <location filename="../Project.py" line="375"/>
         <source>&lt;b&gt;Create Tables&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Создание таблиц&lt;/b&gt;&lt;p&gt;Вывод SQL операторов CREATE TABLE для одного или нескольких приложений.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="872"/>
+        <location filename="../Project.py" line="878"/>
         <source>Show &amp;SQL</source>
         <translation>&amp;SQL</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2164"/>
+        <location filename="../Project.py" line="2172"/>
         <source>Create Indexes</source>
         <translation>Создание индексов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="378"/>
+        <location filename="../Project.py" line="384"/>
         <source>Create &amp;Indexes</source>
         <translation>Создать &amp;индексы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="386"/>
+        <location filename="../Project.py" line="392"/>
         <source>&lt;b&gt;Create Indexes&lt;/b&gt;&lt;p&gt;Prints the CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Создание индексов&lt;/b&gt;&lt;p&gt;Вывод SQL операторов CREATE INDEX для одного или нескольких приложений.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2173"/>
+        <location filename="../Project.py" line="2181"/>
         <source>Create Everything</source>
         <translation>Создать все</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="395"/>
+        <location filename="../Project.py" line="401"/>
         <source>Create &amp;Everything</source>
         <translation>Создать &amp;все</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="400"/>
+        <location filename="../Project.py" line="406"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation>Выводит SQL операторы CREATE ... для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="403"/>
+        <location filename="../Project.py" line="409"/>
         <source>&lt;b&gt;Create Everything&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Создать все&lt;/b&gt;&lt;p&gt;Вывод комбинации SQL операторов CREATE TABLE, CREATE INDEX и пользовательских SQL запросов для одного или нескольких приложений.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="383"/>
+        <location filename="../Project.py" line="389"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation>Выводит SQL операторы CREATE INDEX для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2182"/>
+        <location filename="../Project.py" line="2190"/>
         <source>Custom Statements</source>
         <translation>Пользовательские запросы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="412"/>
+        <location filename="../Project.py" line="418"/>
         <source>&amp;Custom Statements</source>
         <translation>&amp;Пользовательские запросы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="417"/>
+        <location filename="../Project.py" line="423"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation>Выводит дополнительную таблицу, модифицированную  SQL запросами, для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="420"/>
+        <location filename="../Project.py" line="426"/>
         <source>&lt;b&gt;Custom Statements&lt;/b&gt;&lt;p&gt;Prints the custom table modifying SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Пользовательские запросы&lt;/b&gt;&lt;p&gt;Вывод дополнительной таблицы, модифицированной SQL запросами. для одного или нескольких приложений.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2191"/>
+        <location filename="../Project.py" line="2199"/>
         <source>Drop Tables</source>
         <translation>Удаление таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="429"/>
+        <location filename="../Project.py" line="435"/>
         <source>&amp;Drop Tables</source>
         <translation>&amp;Удаление таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="434"/>
+        <location filename="../Project.py" line="440"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation>Выводит SQL операторы DROP TABLE для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="437"/>
+        <location filename="../Project.py" line="443"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Удаление таблиц&lt;/b&gt;&lt;p&gt;Вывод SQL операторов DROP TABLE для одного или нескольких приложений.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="463"/>
+        <location filename="../Project.py" line="469"/>
         <source>&amp;Flush Database</source>
         <translation>&amp;Очистка базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="468"/>
+        <location filename="../Project.py" line="474"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation>Выводит список SQL операторов для возврата всех таблиц базы данных к состоянию на момент ее инсталяции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="471"/>
+        <location filename="../Project.py" line="477"/>
         <source>&lt;b&gt;Flush Database&lt;/b&gt;&lt;p&gt;Prints a list of statements to return all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Очистка базы данных&lt;/b&gt;&lt;p&gt;Вывод списка SQL операторов для возврата всех таблиц  базы данных к состоянию на момент ее инсталяции.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2214"/>
+        <location filename="../Project.py" line="2222"/>
         <source>Reset Sequences</source>
         <translation>Сброс цепочки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="480"/>
+        <location filename="../Project.py" line="486"/>
         <source>Reset &amp;Sequences</source>
         <translation>Сброс &amp;цепочки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="485"/>
+        <location filename="../Project.py" line="491"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation>Выводит SQL операторы для сброса последовательности для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="488"/>
+        <location filename="../Project.py" line="494"/>
         <source>&lt;b&gt;Reset Sequences&lt;/b&gt;&lt;p&gt;Prints the SQL statements for resetting sequences for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Сброс цепочки&lt;/b&gt;&lt;p&gt;Вывод SQL операторов для сброса последовательности для одного или нескольких приложений.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2615"/>
+        <location filename="../Project.py" line="2622"/>
         <source>Dump Data</source>
         <translation>Выводит текущие данные из базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="567"/>
+        <location filename="../Project.py" line="573"/>
         <source>&amp;Dump Data</source>
         <translation>&amp;Выгрузка данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="572"/>
+        <location filename="../Project.py" line="578"/>
         <source>Dump the database data to a fixture</source>
         <translation>Выводит данные базы данных в файлы оснастки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="574"/>
+        <location filename="../Project.py" line="580"/>
         <source>&lt;b&gt;Dump Data&lt;/b&gt;&lt;p&gt;Dump the database data to a fixture.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Выгрузка данных&lt;/b&gt;&lt;p&gt;Выгружает текущие данные базы данных в файлы оснастки.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="945"/>
+        <location filename="../Project.py" line="951"/>
         <source>T&amp;esting</source>
         <translation>Т&amp;естирование</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2256"/>
+        <location filename="../Project.py" line="2264"/>
         <source>SQL Files (*.sql)</source>
         <translation>SQL Files (*.sql)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2638"/>
+        <location filename="../Project.py" line="2645"/>
         <source>JSON Files (*.json)</source>
         <translation>JSON Files (*.json)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2640"/>
+        <location filename="../Project.py" line="2647"/>
         <source>XML Files (*.xml)</source>
         <translation>XML Files (*.xml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2642"/>
+        <location filename="../Project.py" line="2649"/>
         <source>YAML Files (*.yaml)</source>
         <translation>YAML Files (*.yaml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2654"/>
+        <location filename="../Project.py" line="2661"/>
         <source>Load Data</source>
         <translation>Загрузка данных в базу данных из файлов оснастки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="581"/>
+        <location filename="../Project.py" line="587"/>
         <source>&amp;Load Data</source>
         <translation>&amp;Загрузка данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="586"/>
+        <location filename="../Project.py" line="592"/>
         <source>Load data from fixture files</source>
         <translation>Загрузка начальных данных из файлов оснастки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="588"/>
+        <location filename="../Project.py" line="594"/>
         <source>&lt;b&gt;Load Data&lt;/b&gt;&lt;p&gt;Load data from fixture files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Загрузка данных&lt;/b&gt;&lt;p&gt;Загрузка начальных данных в базу данных из файлов оснастки.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="595"/>
+        <location filename="../Project.py" line="601"/>
         <source>Run Testsuite</source>
         <translation>Выполнить набор тестов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="595"/>
+        <location filename="../Project.py" line="601"/>
         <source>Run &amp;Testsuite</source>
         <translation>Выполнить набор &amp;тестов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="600"/>
+        <location filename="../Project.py" line="606"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation>Выполнение набора тестов для приложения или для всего сайта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="602"/>
+        <location filename="../Project.py" line="608"/>
         <source>&lt;b&gt;Run Testsuite&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Выполнить набор тестов&lt;/b&gt;&lt;p&gt;Выполнение набора тестов для приложения или всего сайта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="626"/>
+        <location filename="../Project.py" line="632"/>
         <source>Run Testserver</source>
         <translation>Запуск сервера тестов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="626"/>
+        <location filename="../Project.py" line="632"/>
         <source>Run Test&amp;server</source>
         <translation>Запуск сервера &amp;тестов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="631"/>
+        <location filename="../Project.py" line="637"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation>Запуск сервера разработки с данными из набора оснастки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="633"/>
+        <location filename="../Project.py" line="639"/>
         <source>&lt;b&gt;Run Testserver&lt;/b&gt;&lt;p&gt;Run a development server with data from a set of fixtures.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Запуск сервера тестов&lt;/b&gt;&lt;p&gt;Запуск сервера разработки с данными из набора оснастки.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2751"/>
+        <location filename="../Project.py" line="2758"/>
         <source>The Django test server could not be started.</source>
         <translation>Невозможно запустить Django сервер тестов.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="249"/>
+        <location filename="../Project.py" line="255"/>
         <source>Help</source>
         <translation>Справка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="249"/>
+        <location filename="../Project.py" line="255"/>
         <source>&amp;Help</source>
         <translation>&amp;Справка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="254"/>
+        <location filename="../Project.py" line="260"/>
         <source>Shows the Django help index</source>
         <translation>Показ индекса справки Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="256"/>
+        <location filename="../Project.py" line="262"/>
         <source>&lt;b&gt;Help&lt;/b&gt;&lt;p&gt;Shows the Django help index page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Справка&lt;/b&gt;&lt;p&gt;Показ страницы индексов справки  Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1040"/>
+        <location filename="../Project.py" line="1046"/>
         <source>New template...</source>
         <translation>Новый шаблон...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1049"/>
+        <location filename="../Project.py" line="1055"/>
         <source>Update all catalogs</source>
         <translation>Обновить все каталоги</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1052"/>
+        <location filename="../Project.py" line="1058"/>
         <source>Update selected catalogs</source>
         <translation>Обновить выбранные каталоги</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1063"/>
+        <location filename="../Project.py" line="1069"/>
         <source>Compile all catalogs</source>
         <translation>Компиляция всех каталогов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1066"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Compile selected catalogs</source>
         <translation>Компиляция выбранных каталогов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2920"/>
+        <location filename="../Project.py" line="2927"/>
         <source>Initializing message catalog for &apos;{0}&apos;</source>
         <translation>Инициализация каталога сообщений для &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3179"/>
+        <location filename="../Project.py" line="3186"/>
         <source>No current site selected or no site created yet. Aborting...</source>
         <translation>Текущий сайт не выбран или еще не создан. Прерывание выполнения...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3052"/>
+        <location filename="../Project.py" line="3059"/>
         <source>Updating message catalogs</source>
         <translation>Обновление каталогов сообщений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3143"/>
+        <location filename="../Project.py" line="3150"/>
         <source>No locales detected. Aborting...</source>
         <translation>Локали не найдены. Прерывание выполнения...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3103"/>
+        <location filename="../Project.py" line="3110"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation>
 Каталоги сообщений успешно обновлены.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3169"/>
+        <location filename="../Project.py" line="3176"/>
         <source>Compiling message catalogs</source>
         <translation>Компиляция каталогов сообщений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3186"/>
+        <location filename="../Project.py" line="3193"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation>Каталоги сообщений успешно компилированы.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1056"/>
+        <location filename="../Project.py" line="1062"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation>Обновить все каталоги (с устаревшими)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1059"/>
+        <location filename="../Project.py" line="1065"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation>Обновить выбранные каталоги (с устаревшими)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1789"/>
+        <location filename="../Project.py" line="1797"/>
         <source>Start Global Django Application</source>
         <translation>Выполнение Django global приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1789"/>
+        <location filename="../Project.py" line="1797"/>
         <source>Enter the name of the new global Django application.</source>
         <translation>Введите имя нового Djangо global приложения. </translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1811"/>
+        <location filename="../Project.py" line="1819"/>
         <source>Start Local Django Application</source>
         <translation>Выполнение Django local приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1811"/>
+        <location filename="../Project.py" line="1819"/>
         <source>Enter the name of the new local Django application.</source>
         <translation>Введите имя нового Django local приложения. </translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3084"/>
+        <location filename="../Project.py" line="3091"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation>Обновление каталогов сообщений (с сохранением устаревших сообщений)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2781"/>
+        <location filename="../Project.py" line="2788"/>
         <source>Change Password</source>
         <translation>Смена пароля</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="645"/>
+        <location filename="../Project.py" line="651"/>
         <source>Change &amp;Password</source>
         <translation>Смена &amp;пароля</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="650"/>
+        <location filename="../Project.py" line="656"/>
         <source>Change the password of a user</source>
         <translation>Смена пароля пользователя</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="652"/>
+        <location filename="../Project.py" line="658"/>
         <source>&lt;b&gt;Change Password&lt;/b&gt;&lt;p&gt;Change the password of a user of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Смена пароля&lt;/b&gt;&lt;p&gt;Смена пароля пользователя для Django проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="659"/>
+        <location filename="../Project.py" line="665"/>
         <source>Create Superuser</source>
         <translation>Создание суперпользователя</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="659"/>
+        <location filename="../Project.py" line="665"/>
         <source>Create &amp;Superuser</source>
         <translation>Создать &amp;суперпользователя</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="664"/>
+        <location filename="../Project.py" line="670"/>
         <source>Create a superuser account</source>
         <translation>Создать аккаунт суперпользователя</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="666"/>
+        <location filename="../Project.py" line="672"/>
         <source>&lt;b&gt;Create Superuser&lt;/b&gt;&lt;p&gt;Create a superuser account for the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Создание суперпользователя&lt;/b&gt;&lt;p&gt;Создание аккаунта суперпользователя для Django проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2839"/>
+        <location filename="../Project.py" line="2846"/>
         <source>Clear Sessions</source>
         <translation>Очистка сессии</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="677"/>
+        <location filename="../Project.py" line="683"/>
         <source>Clear &amp;Sessions</source>
         <translation>Очистка &amp;сессии</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="682"/>
+        <location filename="../Project.py" line="688"/>
         <source>Clear expired sessions</source>
         <translation>Очистка истекших сессий</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="684"/>
+        <location filename="../Project.py" line="690"/>
         <source>&lt;b&gt;Clear Sessions&lt;/b&gt;&lt;p&gt;Clear expired sessions of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Очистка сессий&lt;/b&gt;&lt;p&gt;Очистка истекших сессий Django проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="966"/>
+        <location filename="../Project.py" line="972"/>
         <source>&amp;Authorization</source>
         <translation>&amp;Авторизация</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="983"/>
+        <location filename="../Project.py" line="989"/>
         <source>&amp;Session</source>
         <translation>&amp;Сессия</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2781"/>
+        <location filename="../Project.py" line="2788"/>
         <source>Enter the name of the user:</source>
         <translation>Введите имя пользователя:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2851"/>
+        <location filename="../Project.py" line="2858"/>
         <source>Expired sessions cleared successfully.</source>
         <translation>Истекшая сессия успешно очищена.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1447"/>
         <source>&lt;p&gt;Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;/p&gt;&lt;p&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Version:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;URL:&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;{1}&quot;&gt;{1}&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Django это высокоуровневый веб фреймворк созданный на Python, воодушевляющий к развитому, чистому и практичному дизайну.&lt;/p&gt;&lt;p&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Версия:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;URL:&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;{1}&quot;&gt;{1}&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1760"/>
+        <location filename="../Project.py" line="1768"/>
         <source>&lt;p&gt;The &lt;b&gt;django-admin.py&lt;/b&gt; script is not in the path. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Скрипт &lt;b&gt;django-admin.py&lt;/b&gt; не найден в путях доступа. Прерывание...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1025"/>
+        <location filename="../Project.py" line="1031"/>
         <source>Open with {0}</source>
         <translation>Открыть с помощью {0}</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3215"/>
+        <location filename="../Project.py" line="3222"/>
         <source>The translations editor process ({0}) could not be started.</source>
         <translation>Невозможен запуск редактора переводов ({0}).</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1166"/>
         <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt; Problem: {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.py" line="2940"/>
+        <location filename="../Project.py" line="2947"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation>
 Каталог сообщений успешно инициализирован.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2200"/>
+        <location filename="../Project.py" line="2208"/>
         <source>Drop Indexes</source>
         <translation>Удалить индексы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="446"/>
+        <location filename="../Project.py" line="452"/>
         <source>&amp;Drop Indexes</source>
         <translation>&amp;Удалить индексы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="451"/>
+        <location filename="../Project.py" line="457"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation>Выводит SQL операторы DROP INDEX для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="454"/>
+        <location filename="../Project.py" line="460"/>
         <source>&lt;b&gt;Drop Indexes&lt;/b&gt;&lt;p&gt;Prints the DROP INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Удалить индексы&lt;/b&gt;&lt;p&gt;Выводит SQL операторы DROP INDEX для одного или нескольких приложений.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="695"/>
+        <location filename="../Project.py" line="701"/>
         <source>Show Migrations</source>
         <translation>Показать миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="695"/>
+        <location filename="../Project.py" line="701"/>
         <source>&amp;Show Migrations</source>
         <translation>&amp;Показать миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="700"/>
+        <location filename="../Project.py" line="706"/>
         <source>Show a list of available migrations</source>
         <translation>Отображение списка доступных миграций</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="702"/>
+        <location filename="../Project.py" line="708"/>
         <source>&lt;b&gt;Show Migrations&lt;/b&gt;&lt;p&gt;This shows a list of available migrations of the Django project and their status.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Показать миграции&lt;/b&gt;&lt;p&gt;Отображение списка доступных миграций Django-проекта и их статуса.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="710"/>
+        <location filename="../Project.py" line="716"/>
         <source>Show Migrations Plan</source>
         <translation>Показать план миграций</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="710"/>
+        <location filename="../Project.py" line="716"/>
         <source>Show Migrations &amp;Plan</source>
         <translation>Показать &amp;план миграций</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="715"/>
+        <location filename="../Project.py" line="721"/>
         <source>Show a list with the migrations plan</source>
         <translation>Отображение плана выполнения миграций</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="717"/>
+        <location filename="../Project.py" line="723"/>
         <source>&lt;b&gt;Show Migrations Plan&lt;/b&gt;&lt;p&gt;This shows a list with the migrations plan of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Показать план миграций&lt;/b&gt;&lt;p&gt;Отображение плана выполнения миграций Django-проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="902"/>
+        <location filename="../Project.py" line="908"/>
         <source>&amp;Migrations</source>
         <translation>&amp;Миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="725"/>
+        <location filename="../Project.py" line="731"/>
         <source>Apply All Migrations</source>
         <translation>Применить все миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="725"/>
+        <location filename="../Project.py" line="731"/>
         <source>&amp;Apply All Migrations</source>
         <translation>&amp;Применить все миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="730"/>
+        <location filename="../Project.py" line="736"/>
         <source>Apply all available migrations</source>
         <translation>Применить все доступные миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="732"/>
+        <location filename="../Project.py" line="738"/>
         <source>&lt;b&gt;Apply All Migrations&lt;/b&gt;&lt;p&gt;This applies all migrations of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Применить все миграции&lt;/b&gt;&lt;p&gt;Касается всех миграций Django проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2310"/>
+        <location filename="../Project.py" line="2318"/>
         <source>Apply Selected Migrations</source>
         <translation>Применить выбранные миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="744"/>
+        <location filename="../Project.py" line="750"/>
         <source>Apply selected migrations</source>
         <translation>Применить выбранные миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="746"/>
+        <location filename="../Project.py" line="752"/>
         <source>&lt;b&gt;Apply Selected Migrations&lt;/b&gt;&lt;p&gt;This applies selected migrations of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Применить выбранные миграции&lt;/b&gt;&lt;p&gt;Касается выбранных миграций Django проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2377"/>
         <source>Unapply Migrations</source>
         <translation>Откатить миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="755"/>
+        <location filename="../Project.py" line="761"/>
         <source>&amp;Unapply Migrations</source>
         <translation>&amp;Откатить миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="760"/>
+        <location filename="../Project.py" line="766"/>
         <source>Unapply all migrations for an app</source>
         <translation>Откат всех миграций для приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="762"/>
+        <location filename="../Project.py" line="768"/>
         <source>&lt;b&gt;Unapply Migrations&lt;/b&gt;&lt;p&gt;This unapplies all migrations for an app of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Откатить миграции&lt;/b&gt;&lt;p&gt;Откат всех миграций для приложений Django проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2446"/>
+        <location filename="../Project.py" line="2454"/>
         <source>Make Migrations</source>
         <translation>Создать миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="770"/>
+        <location filename="../Project.py" line="776"/>
         <source>&amp;Make Migrations</source>
         <translation>&amp;Создать миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="775"/>
+        <location filename="../Project.py" line="781"/>
         <source>Generate migrations for the project</source>
         <translation>Создание миграций для проекта на основе изменений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="777"/>
+        <location filename="../Project.py" line="783"/>
         <source>&lt;b&gt;Make Migrations&lt;/b&gt;&lt;p&gt;This generates migrations for the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Создать миграции&lt;/b&gt;&lt;p&gt;Создание миграций для Django прокта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2477"/>
+        <location filename="../Project.py" line="2484"/>
         <source>No migrations available.</source>
         <translation>Нет доступных миграций.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2335"/>
+        <location filename="../Project.py" line="2343"/>
         <source>Apply Migrations</source>
         <translation>Применить миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2377"/>
         <source>Select an application:</source>
         <translation>Выберите приложение:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2490"/>
+        <location filename="../Project.py" line="2497"/>
         <source>Squash Migrations</source>
         <translation>Объединить миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="784"/>
+        <location filename="../Project.py" line="790"/>
         <source>S&amp;quash Migrations</source>
         <translation>О&amp;бъединить миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="789"/>
+        <location filename="../Project.py" line="795"/>
         <source>Squash migrations of an application of the project</source>
         <translation>Объединение миграций приложения Django-проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="791"/>
+        <location filename="../Project.py" line="797"/>
         <source>&lt;b&gt;Squash Migrations&lt;/b&gt;&lt;p&gt;This squashes migrations of an application of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Объединить миграции&lt;/b&gt;&lt;p&gt;Объединение миграций приложения Django-проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="497"/>
+        <location filename="../Project.py" line="503"/>
         <source>Apply Migration</source>
         <translation>Применить миграцию</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="497"/>
+        <location filename="../Project.py" line="503"/>
         <source>&amp;Apply Migration</source>
         <translation>&amp;Применить миграцию</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="502"/>
+        <location filename="../Project.py" line="508"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation>Выводит SQL запросы для выполнения миграции приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="505"/>
+        <location filename="../Project.py" line="511"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Применить миграцию&lt;/b&gt;&lt;p&gt;Выводит SQL запросы для выполнения миграции приложения.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="514"/>
+        <location filename="../Project.py" line="520"/>
         <source>Unapply Migration</source>
         <translation>Откатить миграцию</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="514"/>
+        <location filename="../Project.py" line="520"/>
         <source>&amp;Unapply Migration</source>
         <translation>&amp;Откатить миграцию</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="519"/>
+        <location filename="../Project.py" line="525"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation>Выводит SQL запросы для отката миграции приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="522"/>
+        <location filename="../Project.py" line="528"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Откатить миграцию&lt;/b&gt;&lt;p&gt;Выводит SQL запросы для отката миграции приложения.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2238"/>
+        <location filename="../Project.py" line="2246"/>
         <source>SQL Migrate</source>
         <translation>SQL миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3260"/>
+        <location filename="../Project.py" line="3267"/>
         <source>Check Project</source>
         <translation>Проверить проект</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="290"/>
+        <location filename="../Project.py" line="296"/>
         <source>Inspects the Django project for common problems</source>
         <translation>Инспекция общераспространенных проблем Django проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="292"/>
+        <location filename="../Project.py" line="298"/>
         <source>&lt;b&gt;Check Project&lt;/b&gt;&lt;p&gt;This inspects the Django project for common problems.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Проверить проект&lt;/b&gt;&lt;p&gt;Инспекция общераспространенных проблем Django проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="609"/>
+        <location filename="../Project.py" line="615"/>
         <source>Run Testsuite (-Wall)</source>
         <translation>Выполнить набор тестов (-Wall)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="614"/>
+        <location filename="../Project.py" line="620"/>
         <source>Run the test suite for applications or the whole site with activated deprecation warnings</source>
         <translation>Выполнить набор тестов для приложений или всего сайта с включенными предупреждениями о устаревшем API</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="617"/>
+        <location filename="../Project.py" line="623"/>
         <source>&lt;b&gt;Run Testsuite (-Wall)&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site with activated deprecation warnings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Выполнить набор тестов (-Wall)&lt;/b&gt;&lt;p&gt;Выполнение набора тестов для приложений или всего сайта с включенными предупреждениями о устаревшем API.&lt;/p&gt;</translation>
     </message>
@@ -1693,14 +1733,14 @@
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="413"/>
+        <location filename="../../PluginProjectDjango.py" line="389"/>
         <source>Django</source>
         <translation>Django</translation>
     </message>
     <message>
         <location filename="../../PluginProjectDjango.py" line="180"/>
         <source>eric6 version is too old, {0}, {1} or newer needed.</source>
-        <translation>версия eric6 слишком старая, необходима {0}, {1} или более поздняя.</translation>
+        <translation type="obsolete">версия eric6 слишком старая, необходима {0}, {1} или более поздняя.</translation>
     </message>
 </context>
 </TS>
diff -r 6e39332e4a36 -r 7e2351e4d729 ProjectDjango/i18n/django_tr.ts
--- a/ProjectDjango/i18n/django_tr.ts	Sun Apr 23 17:20:47 2017 +0200
+++ b/ProjectDjango/i18n/django_tr.ts	Thu Apr 27 19:35:14 2017 +0200
@@ -61,40 +61,80 @@
         <translation>Django(jango)</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.ui" line="35"/>
+        <location filename="../DjangoDialog.ui" line="29"/>
         <source>Output</source>
         <translation>Çıktı</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.ui" line="63"/>
+        <location filename="../DjangoDialog.ui" line="66"/>
         <source>Errors</source>
         <translation>Hatalar</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="181"/>
+        <location filename="../DjangoDialog.py" line="189"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="181"/>
+        <location filename="../DjangoDialog.py" line="189"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>{0} işlemi başlatılamadı.Büyük ihtimalle, problem arama yolunda.</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="266"/>
+        <location filename="../DjangoDialog.py" line="282"/>
         <source>Select data file</source>
         <translation>Veri dosyasını seç</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="287"/>
+        <location filename="../DjangoDialog.py" line="303"/>
         <source>Error saving data</source>
         <translation>Veri kaydedilirken hata</translation>
     </message>
     <message>
-        <location filename="../DjangoDialog.py" line="287"/>
+        <location filename="../DjangoDialog.py" line="303"/>
         <source>&lt;p&gt;The data could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="103"/>
+        <source>Input</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="128"/>
+        <source>&amp;Send</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="131"/>
+        <source>Alt+S</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="145"/>
+        <source>Select to switch the input field to password mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="148"/>
+        <source>&amp;Password Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="151"/>
+        <source>Alt+P</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="125"/>
+        <source>Press to send the input to the manage.py process</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoDialog.ui" line="138"/>
+        <source>Enter data to be sent to the manage.py process</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>DjangoDumpdataDataDialog</name>
@@ -399,17 +439,17 @@
         <translation>Hatırlanacak geçmiş uygulamaların sayısı:</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="343"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="337"/>
         <source>Django Python Console</source>
         <translation>Django Python Uçbirimi</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="364"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="358"/>
         <source>Select to use plain Python instead of IPython</source>
         <translation>IPython yerine düz Python kullanmayı seç</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="367"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="361"/>
         <source>Use plain Python instead of IPython</source>
         <translation>IPython yerine düz Python kullan</translation>
     </message>
@@ -444,57 +484,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="305"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="302"/>
         <source>Django Virtual Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="317"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="314"/>
         <source>Enter the path of the Django virtual environment. Leave empty to not use a virtual environment setup.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="330"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="327"/>
         <source>Select the virtual environment directory via a selection dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ConfigurationPage/DjangoPage.ui" line="408"/>
         <source>...</source>
-        <translation type="unfinished">...</translation>
+        <translation type="obsolete">...</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="299"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="296"/>
         <source>Python 2</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.py" line="144"/>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="156"/>
         <source>Select Virtual Environment for Python 3</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.py" line="163"/>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="175"/>
         <source>Select Virtual Environment for Python 2</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.py" line="179"/>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="191"/>
         <source>Translations Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="392"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="386"/>
         <source>Enter the path of an editor to use to do the translations. Leave empty to disable this feature.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="405"/>
+        <location filename="../ConfigurationPage/DjangoPage.ui" line="399"/>
         <source>Select the translations editor via a file selection dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.py" line="179"/>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="191"/>
         <source>All Files (*)</source>
         <translation type="unfinished">Tüm Dosyalar (*)</translation>
     </message>
@@ -560,1155 +600,1150 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="121"/>
+        <location filename="../Project.py" line="129"/>
         <source>Current Project</source>
         <translation>Geçerli Proje</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="126"/>
+        <location filename="../Project.py" line="134"/>
         <source>Selects the current project</source>
         <translation>geçerli projeyi seç</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="128"/>
+        <location filename="../Project.py" line="136"/>
         <source>&lt;b&gt;Current Project&lt;/b&gt;&lt;p&gt;Selects the current project. Used for multi-project Django projects to switch between the projects.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="141"/>
+        <location filename="../Project.py" line="149"/>
         <source>Start Project</source>
         <translation>Projeyi Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="141"/>
+        <location filename="../Project.py" line="149"/>
         <source>Start &amp;Project</source>
         <translation>&amp;Projeyi Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="146"/>
+        <location filename="../Project.py" line="154"/>
         <source>Starts a new Django project</source>
         <translation>Yeni bir django projesi başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="148"/>
+        <location filename="../Project.py" line="156"/>
         <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using &quot;django-admin.py startproject&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Projeyi Başlat&lt;/b&gt;&lt;p&gt;Yeni bir django projesini  &quot;django-admin.py startproject&quot; kullanarak başlat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="156"/>
+        <location filename="../Project.py" line="164"/>
         <source>Start Application (global)</source>
         <translation>Uygulayı başlat (küresel)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="156"/>
+        <location filename="../Project.py" line="164"/>
         <source>Start Application (&amp;global)</source>
         <translation>Uy&amp;gulamayı Başlat (Küresel)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="161"/>
+        <location filename="../Project.py" line="169"/>
         <source>Starts a new global Django application</source>
         <translation>Yeni bir küresel Django uygulaması başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="163"/>
+        <location filename="../Project.py" line="171"/>
         <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using &quot;django-admin.py startapp&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="172"/>
+        <location filename="../Project.py" line="180"/>
         <source>Start Application (local)</source>
         <translation>Uygulamayı Başlat (yerel)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="172"/>
+        <location filename="../Project.py" line="180"/>
         <source>Start Application (&amp;local)</source>
         <translation>Uygulamayı Başlat (yere&amp;l)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="177"/>
+        <location filename="../Project.py" line="185"/>
         <source>Starts a new local Django application</source>
         <translation>Yeni bir Django uygulaması başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="179"/>
+        <location filename="../Project.py" line="187"/>
         <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using &quot;manage.py startapp&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="192"/>
+        <location filename="../Project.py" line="200"/>
         <source>Run Server</source>
         <translation>Sunucuyu Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="192"/>
+        <location filename="../Project.py" line="200"/>
         <source>Run &amp;Server</source>
         <translation>&amp;Sunucuyu Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="197"/>
+        <location filename="../Project.py" line="205"/>
         <source>Starts the Django Web server</source>
         <translation>Django Web sunucusunu başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="199"/>
+        <location filename="../Project.py" line="207"/>
         <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using &quot;manage.py runserver&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2021"/>
+        <location filename="../Project.py" line="2027"/>
         <source>Run Web-Browser</source>
         <translation>Web-Gözatıcısını Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="207"/>
+        <location filename="../Project.py" line="215"/>
         <source>Run &amp;Web-Browser</source>
         <translation>&amp;Web-Gözatıcısını Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="212"/>
+        <location filename="../Project.py" line="220"/>
         <source>Starts the default Web-Browser with the URL of the Django Web server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="215"/>
+        <location filename="../Project.py" line="223"/>
         <source>&lt;b&gt;Run Web-Browser&lt;/b&gt;&lt;p&gt;Starts the default Web-Browser with the URL of the Django Web server.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2593"/>
+        <location filename="../Project.py" line="2585"/>
         <source>Create Cache Tables</source>
         <translation type="unfinished">Gizli Tabloları Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="227"/>
+        <location filename="../Project.py" line="235"/>
         <source>C&amp;reate Cache Tables</source>
         <translation type="unfinished">Gizli Tabloları Olu&amp;ştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="232"/>
+        <location filename="../Project.py" line="240"/>
         <source>Creates the tables needed to use the SQL cache backend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="234"/>
+        <location filename="../Project.py" line="242"/>
         <source>&lt;b&gt;Create Cache Tables&lt;/b&gt;&lt;p&gt;Creates the tables needed to use the SQL cache backend.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1454"/>
+        <location filename="../Project.py" line="1447"/>
         <source>About Django</source>
         <translation>Django Hakkında</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="265"/>
+        <location filename="../Project.py" line="273"/>
         <source>About D&amp;jango</source>
         <translation>D&amp;jango Hakkında</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="270"/>
+        <location filename="../Project.py" line="278"/>
         <source>Shows some information about Django</source>
         <translation type="unfinished">Django hakkında  bazı bilgileri göster</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="272"/>
+        <location filename="../Project.py" line="280"/>
         <source>&lt;b&gt;About Django&lt;/b&gt;&lt;p&gt;Shows some information about Django.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project.py" line="309"/>
         <source>Synchronize</source>
-        <translation>Eşzamanlamak</translation>
+        <translation type="obsolete">Eşzamanlamak</translation>
     </message>
     <message>
         <location filename="../Project.py" line="309"/>
         <source>&amp;Synchronize</source>
-        <translation>E&amp;şzamanlamak</translation>
+        <translation type="obsolete">E&amp;şzamanlamak</translation>
     </message>
     <message>
         <location filename="../Project.py" line="314"/>
         <source>Synchronizes the database</source>
-        <translation>Veritabanını eşzamanla</translation>
+        <translation type="obsolete">Veritabanını eşzamanla</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="316"/>
-        <source>&lt;b&gt;Synchronize&lt;/b&gt;&lt;p&gt;Synchronizes the database.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="323"/>
+        <location filename="../Project.py" line="317"/>
         <source>Introspect</source>
         <translation>İçgözlem</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="323"/>
+        <location filename="../Project.py" line="317"/>
         <source>&amp;Introspect</source>
         <translation>&amp;İçgözlem</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="328"/>
+        <location filename="../Project.py" line="322"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="331"/>
+        <location filename="../Project.py" line="325"/>
         <source>&lt;b&gt;Introspect&lt;/b&gt;&lt;p&gt;Introspects the database tables and outputs a Django model module.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="339"/>
+        <location filename="../Project.py" line="333"/>
         <source>Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="339"/>
+        <location filename="../Project.py" line="333"/>
         <source>&amp;Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="344"/>
+        <location filename="../Project.py" line="338"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="347"/>
+        <location filename="../Project.py" line="341"/>
         <source>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Returns all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="355"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start Client Console</source>
         <translation>İstemci Uçbirimini Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="355"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start &amp;Client Console</source>
         <translation>İstem&amp;ci Uçbirimini Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="360"/>
+        <location filename="../Project.py" line="354"/>
         <source>Starts a console window for the database client</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="362"/>
+        <location filename="../Project.py" line="356"/>
         <source>&lt;b&gt;Start Client Console&lt;/b&gt;&lt;p&gt;Starts a console window for the database client.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2180"/>
+        <location filename="../Project.py" line="2163"/>
         <source>Create Tables</source>
         <translation>Tabloyu Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="373"/>
+        <location filename="../Project.py" line="367"/>
         <source>Create &amp;Tables</source>
         <translation>&amp;Tabloları Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="378"/>
+        <location filename="../Project.py" line="372"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="381"/>
+        <location filename="../Project.py" line="375"/>
         <source>&lt;b&gt;Create Tables&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2187"/>
+        <location filename="../Project.py" line="2172"/>
         <source>Create Indexes</source>
         <translation>Katalogları oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="390"/>
+        <location filename="../Project.py" line="384"/>
         <source>Create &amp;Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="395"/>
+        <location filename="../Project.py" line="389"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="398"/>
+        <location filename="../Project.py" line="392"/>
         <source>&lt;b&gt;Create Indexes&lt;/b&gt;&lt;p&gt;Prints the CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2194"/>
+        <location filename="../Project.py" line="2181"/>
         <source>Create Everything</source>
         <translation>Herşeyi Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="407"/>
+        <location filename="../Project.py" line="401"/>
         <source>Create &amp;Everything</source>
         <translation>H&amp;erşeyi Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="412"/>
+        <location filename="../Project.py" line="406"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="415"/>
+        <location filename="../Project.py" line="409"/>
         <source>&lt;b&gt;Create Everything&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2201"/>
+        <location filename="../Project.py" line="2190"/>
         <source>Custom Statements</source>
         <translation>Özel İfadeler</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="424"/>
+        <location filename="../Project.py" line="418"/>
         <source>&amp;Custom Statements</source>
         <translation>Özel İfade&amp;ler</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="429"/>
+        <location filename="../Project.py" line="423"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="432"/>
+        <location filename="../Project.py" line="426"/>
         <source>&lt;b&gt;Custom Statements&lt;/b&gt;&lt;p&gt;Prints the custom table modifying SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2208"/>
+        <location filename="../Project.py" line="2199"/>
         <source>Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="441"/>
+        <location filename="../Project.py" line="435"/>
         <source>&amp;Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="446"/>
+        <location filename="../Project.py" line="440"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="449"/>
+        <location filename="../Project.py" line="443"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2222"/>
+        <location filename="../Project.py" line="2215"/>
         <source>Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="475"/>
+        <location filename="../Project.py" line="469"/>
         <source>&amp;Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="480"/>
+        <location filename="../Project.py" line="474"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="483"/>
+        <location filename="../Project.py" line="477"/>
         <source>&lt;b&gt;Flush Database&lt;/b&gt;&lt;p&gt;Prints a list of statements to return all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2229"/>
+        <location filename="../Project.py" line="2222"/>
         <source>Reset Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="492"/>
+        <location filename="../Project.py" line="486"/>
         <source>Reset &amp;Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="497"/>
+        <location filename="../Project.py" line="491"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="500"/>
+        <location filename="../Project.py" line="494"/>
         <source>&lt;b&gt;Reset Sequences&lt;/b&gt;&lt;p&gt;Prints the SQL statements for resetting sequences for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2537"/>
+        <location filename="../Project.py" line="2529"/>
         <source>Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="547"/>
+        <location filename="../Project.py" line="541"/>
         <source>&amp;Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="552"/>
+        <location filename="../Project.py" line="546"/>
         <source>Shows the modification made to the settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="554"/>
+        <location filename="../Project.py" line="548"/>
         <source>&lt;b&gt;Diff Settings&lt;/b&gt;&lt;p&gt;Shows the modification made to the settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="561"/>
+        <location filename="../Project.py" line="555"/>
         <source>Start Python Console</source>
         <translation>Python Uçbirimini çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="561"/>
+        <location filename="../Project.py" line="555"/>
         <source>Start &amp;Python Console</source>
         <translation>&amp;Python Uçbinimini başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="566"/>
+        <location filename="../Project.py" line="560"/>
         <source>Starts a Python interactive interpreter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="568"/>
+        <location filename="../Project.py" line="562"/>
         <source>&lt;b&gt;Start Python Console&lt;/b&gt;&lt;p&gt;Starts a Python interactive interpreter.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2630"/>
+        <location filename="../Project.py" line="2622"/>
         <source>Dump Data</source>
         <translation>Boş Veri</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="579"/>
+        <location filename="../Project.py" line="573"/>
         <source>&amp;Dump Data</source>
         <translation>B&amp;oş Veri</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="584"/>
+        <location filename="../Project.py" line="578"/>
         <source>Dump the database data to a fixture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="586"/>
+        <location filename="../Project.py" line="580"/>
         <source>&lt;b&gt;Dump Data&lt;/b&gt;&lt;p&gt;Dump the database data to a fixture.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2669"/>
+        <location filename="../Project.py" line="2661"/>
         <source>Load Data</source>
         <translation>Veriyi Yükle</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="593"/>
+        <location filename="../Project.py" line="587"/>
         <source>&amp;Load Data</source>
         <translation>Veriyi Yük&amp;le</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="598"/>
+        <location filename="../Project.py" line="592"/>
         <source>Load data from fixture files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="600"/>
+        <location filename="../Project.py" line="594"/>
         <source>&lt;b&gt;Load Data&lt;/b&gt;&lt;p&gt;Load data from fixture files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="607"/>
+        <location filename="../Project.py" line="601"/>
         <source>Run Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="607"/>
+        <location filename="../Project.py" line="601"/>
         <source>Run &amp;Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="612"/>
+        <location filename="../Project.py" line="606"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="614"/>
+        <location filename="../Project.py" line="608"/>
         <source>&lt;b&gt;Run Testsuite&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="638"/>
+        <location filename="../Project.py" line="632"/>
         <source>Run Testserver</source>
         <translation>Testsunucusunu Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="638"/>
+        <location filename="../Project.py" line="632"/>
         <source>Run Test&amp;server</source>
         <translation>Test&amp;sunucusunu Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="643"/>
+        <location filename="../Project.py" line="637"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="645"/>
+        <location filename="../Project.py" line="639"/>
         <source>&lt;b&gt;Run Testserver&lt;/b&gt;&lt;p&gt;Run a development server with data from a set of fixtures.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="820"/>
+        <location filename="../Project.py" line="814"/>
         <source>D&amp;jango</source>
         <translation>D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="862"/>
+        <location filename="../Project.py" line="856"/>
         <source>&amp;Database</source>
         <translation>&amp;Veritabanı</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="887"/>
+        <location filename="../Project.py" line="878"/>
         <source>Show &amp;SQL</source>
         <translation>&amp;SQL u göster</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="942"/>
+        <location filename="../Project.py" line="933"/>
         <source>&amp;Tools</source>
         <translation>&amp;Araçlar</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="960"/>
+        <location filename="../Project.py" line="951"/>
         <source>T&amp;esting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1175"/>
+        <location filename="../Project.py" line="1166"/>
         <source>New Form</source>
         <translation>Yeni Form</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1142"/>
+        <location filename="../Project.py" line="1133"/>
         <source>The file already exists! Overwrite it?</source>
         <translation>Bu dosya halihazırda var! Üzerine yazılsın mı?</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1525"/>
+        <location filename="../Project.py" line="1518"/>
         <source>Select Applications</source>
         <translation>Uygulamayı Seç</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1525"/>
+        <location filename="../Project.py" line="1518"/>
         <source>Enter the list of applications separated by spaces.</source>
         <translation>Uygulamaların listesin boşluklarla ayırarak giriniz.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1898"/>
+        <location filename="../Project.py" line="1904"/>
         <source>Project</source>
         <translation>Proje</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1638"/>
+        <location filename="../Project.py" line="1644"/>
         <source>Application</source>
         <translation>Uygulama</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1640"/>
+        <location filename="../Project.py" line="1646"/>
         <source>Start Django</source>
         <translation>Djangoyu Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1640"/>
+        <location filename="../Project.py" line="1646"/>
         <source>Select if this project should be a Django Project or Application.&lt;br /&gt;Select the empty entry for none.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1717"/>
+        <location filename="../Project.py" line="1723"/>
         <source>Start Django Project</source>
         <translation>Django Projesini Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1693"/>
+        <location filename="../Project.py" line="1699"/>
         <source>Django project created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1717"/>
+        <location filename="../Project.py" line="1723"/>
         <source>Enter the name of the new Django project.</source>
         <translation>Yeni Django projesinin adını giriniz.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1745"/>
+        <location filename="../Project.py" line="1751"/>
         <source>Start Django Application</source>
         <translation>Django Uygulamasını Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1779"/>
+        <location filename="../Project.py" line="1785"/>
         <source>Django application created successfully.</source>
         <translation>Django uygulaması başarıyla oluşturuldu.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1862"/>
+        <location filename="../Project.py" line="1868"/>
         <source>Select Project</source>
         <translation>Projeyi Seç</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1862"/>
+        <location filename="../Project.py" line="1868"/>
         <source>Select the Django project to work with.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1896"/>
+        <location filename="../Project.py" line="1902"/>
         <source>None</source>
         <translation>Yok</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1901"/>
+        <location filename="../Project.py" line="1907"/>
         <source>&amp;Current Django project ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3230"/>
+        <location filename="../Project.py" line="3222"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1975"/>
+        <location filename="../Project.py" line="1981"/>
         <source>The Django server could not be started.</source>
         <translation>Django sunucusu başlatılamadı.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2021"/>
+        <location filename="../Project.py" line="2027"/>
         <source>Could not start the web-browser for the url &quot;{0}&quot;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2839"/>
+        <location filename="../Project.py" line="2831"/>
         <source>The Django process could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2063"/>
+        <location filename="../Project.py" line="2044"/>
         <source>Introspect Database</source>
         <translation>Veritabanı İnceleme</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2092"/>
+        <location filename="../Project.py" line="2073"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2104"/>
+        <location filename="../Project.py" line="2085"/>
         <source>Database tables flushed successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2271"/>
+        <location filename="../Project.py" line="2264"/>
         <source>SQL Files (*.sql)</source>
         <translation>SQL Dosyaları (*.sql)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2600"/>
+        <location filename="../Project.py" line="2592"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2615"/>
+        <location filename="../Project.py" line="2607"/>
         <source>Cache tables created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2653"/>
+        <location filename="../Project.py" line="2645"/>
         <source>JSON Files (*.json)</source>
         <translation>JSON Dosyaları (*.json)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2655"/>
+        <location filename="../Project.py" line="2647"/>
         <source>XML Files (*.xml)</source>
         <translation>XML Dosyaları (*.xml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2657"/>
+        <location filename="../Project.py" line="2649"/>
         <source>YAML Files (*.yaml)</source>
         <translation>YAML Dosyaları (*.yaml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2766"/>
+        <location filename="../Project.py" line="2758"/>
         <source>The Django test server could not be started.</source>
         <translation>Django testsunucusu çalıştırılamadı.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="247"/>
+        <location filename="../Project.py" line="255"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="247"/>
+        <location filename="../Project.py" line="255"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="252"/>
+        <location filename="../Project.py" line="260"/>
         <source>Shows the Django help index</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="254"/>
+        <location filename="../Project.py" line="262"/>
         <source>&lt;b&gt;Help&lt;/b&gt;&lt;p&gt;Shows the Django help index page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="1046"/>
+        <source>New template...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="1055"/>
-        <source>New template...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="1064"/>
         <source>Update all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1067"/>
+        <location filename="../Project.py" line="1058"/>
         <source>Update selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1078"/>
+        <location filename="../Project.py" line="1069"/>
         <source>Compile all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1081"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Compile selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2935"/>
+        <location filename="../Project.py" line="2927"/>
         <source>Initializing message catalog for &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3194"/>
+        <location filename="../Project.py" line="3186"/>
         <source>No current site selected or no site created yet. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2955"/>
+        <location filename="../Project.py" line="2947"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3067"/>
+        <location filename="../Project.py" line="3059"/>
         <source>Updating message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3158"/>
+        <location filename="../Project.py" line="3150"/>
         <source>No locales detected. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3118"/>
+        <location filename="../Project.py" line="3110"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3184"/>
+        <location filename="../Project.py" line="3176"/>
         <source>Compiling message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3201"/>
+        <location filename="../Project.py" line="3193"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1071"/>
+        <location filename="../Project.py" line="1062"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1074"/>
+        <location filename="../Project.py" line="1065"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1791"/>
+        <location filename="../Project.py" line="1797"/>
         <source>Start Global Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1791"/>
+        <location filename="../Project.py" line="1797"/>
         <source>Enter the name of the new global Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1813"/>
+        <location filename="../Project.py" line="1819"/>
         <source>Start Local Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1813"/>
+        <location filename="../Project.py" line="1819"/>
         <source>Enter the name of the new local Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3099"/>
+        <location filename="../Project.py" line="3091"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2796"/>
+        <location filename="../Project.py" line="2788"/>
         <source>Change Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="657"/>
+        <location filename="../Project.py" line="651"/>
         <source>Change &amp;Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="662"/>
+        <location filename="../Project.py" line="656"/>
         <source>Change the password of a user</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="664"/>
+        <location filename="../Project.py" line="658"/>
         <source>&lt;b&gt;Change Password&lt;/b&gt;&lt;p&gt;Change the password of a user of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="671"/>
+        <location filename="../Project.py" line="665"/>
         <source>Create Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="671"/>
+        <location filename="../Project.py" line="665"/>
         <source>Create &amp;Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="676"/>
+        <location filename="../Project.py" line="670"/>
         <source>Create a superuser account</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="678"/>
+        <location filename="../Project.py" line="672"/>
         <source>&lt;b&gt;Create Superuser&lt;/b&gt;&lt;p&gt;Create a superuser account for the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2854"/>
+        <location filename="../Project.py" line="2846"/>
         <source>Clear Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="689"/>
+        <location filename="../Project.py" line="683"/>
         <source>Clear &amp;Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="694"/>
+        <location filename="../Project.py" line="688"/>
         <source>Clear expired sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="696"/>
+        <location filename="../Project.py" line="690"/>
         <source>&lt;b&gt;Clear Sessions&lt;/b&gt;&lt;p&gt;Clear expired sessions of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="981"/>
+        <location filename="../Project.py" line="972"/>
         <source>&amp;Authorization</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="998"/>
+        <location filename="../Project.py" line="989"/>
         <source>&amp;Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2796"/>
+        <location filename="../Project.py" line="2788"/>
         <source>Enter the name of the user:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2866"/>
+        <location filename="../Project.py" line="2858"/>
         <source>Expired sessions cleared successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1454"/>
+        <location filename="../Project.py" line="1447"/>
         <source>&lt;p&gt;Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;/p&gt;&lt;p&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Version:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;URL:&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;{1}&quot;&gt;{1}&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1762"/>
+        <location filename="../Project.py" line="1768"/>
         <source>&lt;p&gt;The &lt;b&gt;django-admin.py&lt;/b&gt; script is not in the path. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1040"/>
+        <location filename="../Project.py" line="1031"/>
         <source>Open with {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3230"/>
+        <location filename="../Project.py" line="3222"/>
         <source>The translations editor process ({0}) could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1175"/>
+        <location filename="../Project.py" line="1166"/>
         <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt; Problem: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2215"/>
+        <location filename="../Project.py" line="2208"/>
         <source>Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="458"/>
+        <location filename="../Project.py" line="452"/>
         <source>&amp;Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="463"/>
+        <location filename="../Project.py" line="457"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="466"/>
+        <location filename="../Project.py" line="460"/>
         <source>&lt;b&gt;Drop Indexes&lt;/b&gt;&lt;p&gt;Prints the DROP INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="707"/>
+        <location filename="../Project.py" line="701"/>
         <source>Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="707"/>
+        <location filename="../Project.py" line="701"/>
         <source>&amp;Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="712"/>
+        <location filename="../Project.py" line="706"/>
         <source>Show a list of available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="714"/>
+        <location filename="../Project.py" line="708"/>
         <source>&lt;b&gt;Show Migrations&lt;/b&gt;&lt;p&gt;This shows a list of available migrations of the Django project and their status.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="722"/>
+        <location filename="../Project.py" line="716"/>
         <source>Show Migrations Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="722"/>
+        <location filename="../Project.py" line="716"/>
         <source>Show Migrations &amp;Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="727"/>
+        <location filename="../Project.py" line="721"/>
         <source>Show a list with the migrations plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="729"/>
+        <location filename="../Project.py" line="723"/>
         <source>&lt;b&gt;Show Migrations Plan&lt;/b&gt;&lt;p&gt;This shows a list with the migrations plan of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="917"/>
+        <location filename="../Project.py" line="908"/>
         <source>&amp;Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="737"/>
+        <location filename="../Project.py" line="731"/>
         <source>Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="737"/>
+        <location filename="../Project.py" line="731"/>
         <source>&amp;Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="742"/>
+        <location filename="../Project.py" line="736"/>
         <source>Apply all available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="744"/>
+        <location filename="../Project.py" line="738"/>
         <source>&lt;b&gt;Apply All Migrations&lt;/b&gt;&lt;p&gt;This applies all migrations of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2325"/>
+        <location filename="../Project.py" line="2318"/>
         <source>Apply Selected Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="756"/>
+        <location filename="../Project.py" line="750"/>
         <source>Apply selected migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="758"/>
+        <location filename="../Project.py" line="752"/>
         <source>&lt;b&gt;Apply Selected Migrations&lt;/b&gt;&lt;p&gt;This applies selected migrations of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2384"/>
+        <location filename="../Project.py" line="2377"/>
         <source>Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="767"/>
+        <location filename="../Project.py" line="761"/>
         <source>&amp;Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="772"/>
+        <location filename="../Project.py" line="766"/>
         <source>Unapply all migrations for an app</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="774"/>
+        <location filename="../Project.py" line="768"/>
         <source>&lt;b&gt;Unapply Migrations&lt;/b&gt;&lt;p&gt;This unapplies all migrations for an app of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2461"/>
+        <location filename="../Project.py" line="2454"/>
         <source>Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="782"/>
+        <location filename="../Project.py" line="776"/>
         <source>&amp;Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="787"/>
+        <location filename="../Project.py" line="781"/>
         <source>Generate migrations for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="789"/>
+        <location filename="../Project.py" line="783"/>
         <source>&lt;b&gt;Make Migrations&lt;/b&gt;&lt;p&gt;This generates migrations for the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2492"/>
+        <location filename="../Project.py" line="2484"/>
         <source>No migrations available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2350"/>
+        <location filename="../Project.py" line="2343"/>
         <source>Apply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2384"/>
+        <location filename="../Project.py" line="2377"/>
         <source>Select an application:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2505"/>
+        <location filename="../Project.py" line="2497"/>
         <source>Squash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="796"/>
+        <location filename="../Project.py" line="790"/>
         <source>S&amp;quash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="801"/>
+        <location filename="../Project.py" line="795"/>
         <source>Squash migrations of an application of the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="803"/>
+        <location filename="../Project.py" line="797"/>
         <source>&lt;b&gt;Squash Migrations&lt;/b&gt;&lt;p&gt;This squashes migrations of an application of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="509"/>
+        <location filename="../Project.py" line="503"/>
         <source>Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="509"/>
+        <location filename="../Project.py" line="503"/>
         <source>&amp;Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="514"/>
+        <location filename="../Project.py" line="508"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="517"/>
+        <location filename="../Project.py" line="511"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="526"/>
+        <location filename="../Project.py" line="520"/>
         <source>Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="526"/>
+        <location filename="../Project.py" line="520"/>
         <source>&amp;Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="531"/>
+        <location filename="../Project.py" line="525"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="534"/>
+        <location filename="../Project.py" line="528"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2253"/>
+        <location filename="../Project.py" line="2246"/>
         <source>SQL Migrate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3275"/>
+        <location filename="../Project.py" line="3267"/>
         <source>Check Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="288"/>
+        <location filename="../Project.py" line="296"/>
         <source>Inspects the Django project for common problems</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="290"/>
+        <location filename="../Project.py" line="298"/>
         <source>&lt;b&gt;Check Project&lt;/b&gt;&lt;p&gt;This inspects the Django project for common problems.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="621"/>
+        <location filename="../Project.py" line="615"/>
         <source>Run Testsuite (-Wall)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="626"/>
+        <location filename="../Project.py" line="620"/>
         <source>Run the test suite for applications or the whole site with activated deprecation warnings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="629"/>
+        <location filename="../Project.py" line="623"/>
         <source>&lt;b&gt;Run Testsuite (-Wall)&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site with activated deprecation warnings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1716,14 +1751,14 @@
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="409"/>
+        <location filename="../../PluginProjectDjango.py" line="389"/>
         <source>Django</source>
         <translation>Django(jango)</translation>
     </message>
     <message>
         <location filename="../../PluginProjectDjango.py" line="180"/>
         <source>eric6 version is too old, {0}, {1} or newer needed.</source>
-        <translation type="unfinished">Eric4 sürümü çok eski, {0}, {1} yada daha yenisi gerekiyor. {5 ?} {0}?} {1}?} {6 ?} {0}?} {1}?}</translation>
+        <translation type="obsolete">Eric4 sürümü çok eski, {0}, {1} yada daha yenisi gerekiyor. {5 ?} {0}?} {1}?} {6 ?} {0}?} {1}?}</translation>
     </message>
 </context>
 </TS>

eric ide

mercurial