Added a dialog to enter data for running Django unit tests. release-5.0.10

Sun, 12 Nov 2017 14:56:13 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 12 Nov 2017 14:56:13 +0100
changeset 110
da5ee5012004
parent 109
0f579ef4f7ad
child 111
bb3632d74281

Added a dialog to enter data for running Django unit tests.

ChangeLog file | annotate | diff | comparison | revisions
PKGLIST 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/DjangoTestDataDialog.py file | annotate | diff | comparison | revisions
ProjectDjango/DjangoTestDataDialog.ui file | annotate | diff | comparison | revisions
ProjectDjango/Documentation/source/Plugin_Project_Django.ProjectDjango.DjangoTestDataDialog.html file | annotate | diff | comparison | revisions
ProjectDjango/Documentation/source/Plugin_Project_Django.ProjectDjango.Project.html file | annotate | diff | comparison | revisions
ProjectDjango/Documentation/source/index-Plugin_Project_Django.ProjectDjango.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
--- a/ChangeLog	Sat Nov 04 15:22:22 2017 +0100
+++ b/ChangeLog	Sun Nov 12 14:56:13 2017 +0100
@@ -1,5 +1,8 @@
 ChangeLog
 ---------
+Version 5.0.10:
+- added a dialog to enter data for running Django unit tests
+
 Version 5.0.9:
 - bug fix
 
--- a/PKGLIST	Sat Nov 04 15:22:22 2017 +0100
+++ b/PKGLIST	Sun Nov 12 14:56:13 2017 +0100
@@ -24,6 +24,8 @@
 ProjectDjango/DjangoMigrationsListDialog.ui
 ProjectDjango/DjangoSquashMigrationSelectionDialog.py
 ProjectDjango/DjangoSquashMigrationSelectionDialog.ui
+ProjectDjango/DjangoTestDataDialog.py
+ProjectDjango/DjangoTestDataDialog.ui
 ProjectDjango/Documentation/LICENSE.GPL3
 ProjectDjango/Documentation/help/howto-debug.html
 ProjectDjango/Documentation/help/index.html
--- a/PluginDjango.e4p	Sat Nov 04 15:22:22 2017 +0100
+++ b/PluginDjango.e4p	Sun Nov 12 14:56:13 2017 +0100
@@ -25,6 +25,7 @@
     <Source>ProjectDjango/DjangoMigrationSelectionDialog.py</Source>
     <Source>ProjectDjango/DjangoMigrationsListDialog.py</Source>
     <Source>ProjectDjango/DjangoSquashMigrationSelectionDialog.py</Source>
+    <Source>ProjectDjango/DjangoTestDataDialog.py</Source>
     <Source>ProjectDjango/Project.py</Source>
     <Source>ProjectDjango/__init__.py</Source>
     <Source>__init__.py</Source>
@@ -39,6 +40,7 @@
     <Form>ProjectDjango/DjangoMigrationSelectionDialog.ui</Form>
     <Form>ProjectDjango/DjangoMigrationsListDialog.ui</Form>
     <Form>ProjectDjango/DjangoSquashMigrationSelectionDialog.ui</Form>
+    <Form>ProjectDjango/DjangoTestDataDialog.ui</Form>
   </Forms>
   <Translations>
     <Translation>ProjectDjango/i18n/django_de.qm</Translation>
--- a/PluginProjectDjango.py	Sat Nov 04 15:22:22 2017 +0100
+++ b/PluginProjectDjango.py	Sun Nov 12 14:56:13 2017 +0100
@@ -28,7 +28,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "5.0.9"
+version = "5.0.10"
 className = "ProjectDjangoPlugin"
 packageName = "ProjectDjango"
 shortDescription = "Project support for Django projects."
@@ -134,6 +134,8 @@
             "UseExternalBrowser": False,
             
             "CheckDeployMode": False,
+            
+            "RecentNumberTestData": 10,
         }
         if isWindowsPlatform():
             self.__defaults["ConsoleCommandNoClose"] = "cmd.exe /k"
@@ -345,7 +347,7 @@
         @param key the key of the value to get
         @return the requested setting
         """
-        if key in ["RecentNumberApps"]:
+        if key in ["RecentNumberApps", "RecentNumberTestData"]:
             return int(Preferences.Prefs.settings.value(
                 self.PreferencesKey + "/" + key, self.__defaults[key]))
         elif key in ["UsePlainPythonPy2", "UsePlainPythonPy3", "UseIPv6",
Binary file PluginProjectDjango.zip has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ProjectDjango/DjangoTestDataDialog.py	Sun Nov 12 14:56:13 2017 +0100
@@ -0,0 +1,87 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2017 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing a dialog to enter some data for running tests.
+"""
+
+from PyQt5.QtWidgets import QDialog
+
+from .Ui_DjangoTestDataDialog import Ui_DjangoTestDataDialog
+
+
+class DjangoTestDataDialog(QDialog, Ui_DjangoTestDataDialog):
+    """
+    Class implementing a dialog to enter some data for running tests.
+    """
+    def __init__(self, project, parent=None):
+        """
+        Constructor
+        
+        @param project reference to the Django project object
+        @type Project
+        @param parent reference to the parent widget
+        @type QWidget
+        """
+        super(DjangoTestDataDialog, self).__init__(parent)
+        self.setupUi(self)
+        
+        self.__project = project
+        
+        self.labelsComboBox.addItems(
+            self.__project.getRecentTestData("RecentTestLabels"))
+        self.tagsComboBox.addItems(
+            self.__project.getRecentTestData("RecentTestTags"))
+        self.excludeTagsComboBox.addItems(
+            self.__project.getRecentTestData("RecentTestExcludeTags"))
+        
+        if self.__project.getDjangoVersion() < (1, 10, 0):
+            self.tagsComboBox.setEnabled(False)
+            self.excludeTagsComboBox.setEnabled(False)
+        
+        msh = self.minimumSizeHint()
+        self.resize(max(self.width(), msh.width()), msh.height())
+    
+    def getData(self):
+        """
+        Public method to get the entered data.
+        
+        @return tuple containing a list of test labels, a test file pattern,
+            a list of test tags, a list of test tags to be skipped, a flag
+            indicating to keep the test database and a flag indicating to run
+            the tests in reverse order
+        @rtype tuple of
+            (list of str, str, list of str, list of str, bool, bool)
+        """
+        labelsStr = self.labelsComboBox.currentText()
+        if labelsStr:
+            self.__project.setMostRecentTestData("RecentTestLabels", labelsStr)
+            labels = labelsStr.split()
+        else:
+            labels = []
+        
+        tagsStr = self.labelsComboBox.currentText()
+        if tagsStr:
+            self.__project.setMostRecentTestData("RecentTestTags", tagsStr)
+            tags = tagsStr.split()
+        else:
+            tags = []
+        
+        excludeTagsStr = self.labelsComboBox.currentText()
+        if excludeTagsStr:
+            self.__project.setMostRecentTestData("RecentTestExcludeTags",
+                                                 excludeTagsStr)
+            excludeTags = excludeTagsStr.split()
+        else:
+            excludeTags = []
+        
+        return (
+            labels,
+            self.testFilePatternsEdit.text(),
+            tags,
+            excludeTags,
+            self.keepCheckBox.isChecked(),
+            self.reverseCheckBox.isChecked(),
+        )
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ProjectDjango/DjangoTestDataDialog.ui	Sun Nov 12 14:56:13 2017 +0100
@@ -0,0 +1,164 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>DjangoTestDataDialog</class>
+ <widget class="QDialog" name="DjangoTestDataDialog">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>598</width>
+    <height>232</height>
+   </rect>
+  </property>
+  <property name="windowTitle">
+   <string>Django Test Data</string>
+  </property>
+  <property name="sizeGripEnabled">
+   <bool>true</bool>
+  </property>
+  <layout class="QGridLayout" name="gridLayout">
+   <item row="0" column="0">
+    <widget class="QLabel" name="label">
+     <property name="text">
+      <string>Test Labels:</string>
+     </property>
+    </widget>
+   </item>
+   <item row="0" column="1">
+    <widget class="E5ClearableComboBox" name="labelsComboBox">
+     <property name="toolTip">
+      <string>Enter the tests to be performed separated by space</string>
+     </property>
+     <property name="editable">
+      <bool>true</bool>
+     </property>
+    </widget>
+   </item>
+   <item row="1" column="0">
+    <widget class="QLabel" name="label_2">
+     <property name="text">
+      <string>Test File Pattern:</string>
+     </property>
+    </widget>
+   </item>
+   <item row="1" column="1">
+    <widget class="E5ClearableLineEdit" name="testFilePatternsEdit">
+     <property name="toolTip">
+      <string>Enter the test file pattern</string>
+     </property>
+    </widget>
+   </item>
+   <item row="2" column="0">
+    <widget class="QLabel" name="label_3">
+     <property name="text">
+      <string>Tags:</string>
+     </property>
+    </widget>
+   </item>
+   <item row="2" column="1">
+    <widget class="E5ClearableComboBox" name="tagsComboBox">
+     <property name="toolTip">
+      <string>Enter the test tags to be run separated by space</string>
+     </property>
+     <property name="editable">
+      <bool>true</bool>
+     </property>
+    </widget>
+   </item>
+   <item row="3" column="0">
+    <widget class="QLabel" name="label_4">
+     <property name="text">
+      <string>Exclude Tags:</string>
+     </property>
+    </widget>
+   </item>
+   <item row="3" column="1">
+    <widget class="E5ClearableComboBox" name="excludeTagsComboBox">
+     <property name="toolTip">
+      <string>Enter the test tags to be skipped separated by space</string>
+     </property>
+     <property name="editable">
+      <bool>true</bool>
+     </property>
+    </widget>
+   </item>
+   <item row="4" column="0" colspan="2">
+    <widget class="QCheckBox" name="keepCheckBox">
+     <property name="toolTip">
+      <string>Select to keep the test database</string>
+     </property>
+     <property name="text">
+      <string>Keep Test Database</string>
+     </property>
+    </widget>
+   </item>
+   <item row="5" column="0" colspan="2">
+    <widget class="QCheckBox" name="reverseCheckBox">
+     <property name="toolTip">
+      <string>Select to run the tests in reverse order</string>
+     </property>
+     <property name="text">
+      <string>Run Tests in Reverse Order</string>
+     </property>
+    </widget>
+   </item>
+   <item row="6" column="0" colspan="2">
+    <widget class="QDialogButtonBox" name="buttonBox">
+     <property name="orientation">
+      <enum>Qt::Horizontal</enum>
+     </property>
+     <property name="standardButtons">
+      <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
+     </property>
+    </widget>
+   </item>
+  </layout>
+ </widget>
+ <customwidgets>
+  <customwidget>
+   <class>E5ClearableComboBox</class>
+   <extends>QComboBox</extends>
+   <header>E5Gui/E5ComboBox.h</header>
+  </customwidget>
+  <customwidget>
+   <class>E5ClearableLineEdit</class>
+   <extends>QLineEdit</extends>
+   <header>E5Gui/E5LineEdit.h</header>
+  </customwidget>
+ </customwidgets>
+ <resources/>
+ <connections>
+  <connection>
+   <sender>buttonBox</sender>
+   <signal>accepted()</signal>
+   <receiver>DjangoTestDataDialog</receiver>
+   <slot>accept()</slot>
+   <hints>
+    <hint type="sourcelabel">
+     <x>248</x>
+     <y>254</y>
+    </hint>
+    <hint type="destinationlabel">
+     <x>157</x>
+     <y>274</y>
+    </hint>
+   </hints>
+  </connection>
+  <connection>
+   <sender>buttonBox</sender>
+   <signal>rejected()</signal>
+   <receiver>DjangoTestDataDialog</receiver>
+   <slot>reject()</slot>
+   <hints>
+    <hint type="sourcelabel">
+     <x>316</x>
+     <y>260</y>
+    </hint>
+    <hint type="destinationlabel">
+     <x>286</x>
+     <y>274</y>
+    </hint>
+   </hints>
+  </connection>
+ </connections>
+</ui>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ProjectDjango/Documentation/source/Plugin_Project_Django.ProjectDjango.DjangoTestDataDialog.html	Sun Nov 12 14:56:13 2017 +0100
@@ -0,0 +1,106 @@
+<!DOCTYPE html>
+<html><head>
+<title>Plugin_Project_Django.ProjectDjango.DjangoTestDataDialog</title>
+<meta charset="UTF-8">
+<style>
+body {
+    background: #EDECE6;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #85774A; }
+h2 { color: white; background: #85774A; }
+h3 { color: white; background: #9D936E; }
+h4 { color: white; background: #9D936E; }
+    
+a { color: #BA6D36; }
+
+</style>
+</head>
+<body><a NAME="top" ID="top"></a>
+<h1>Plugin_Project_Django.ProjectDjango.DjangoTestDataDialog</h1>
+<p>
+Module implementing a dialog to enter some data for running tests.
+</p>
+<h3>Global Attributes</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Classes</h3>
+<table>
+<tr>
+<td><a href="#DjangoTestDataDialog">DjangoTestDataDialog</a></td>
+<td>Class implementing a dialog to enter some data for running tests.</td>
+</tr>
+</table>
+<h3>Functions</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<hr /><hr />
+<a NAME="DjangoTestDataDialog" ID="DjangoTestDataDialog"></a>
+<h2>DjangoTestDataDialog</h2>
+<p>
+    Class implementing a dialog to enter some data for running tests.
+</p>
+<h3>Derived from</h3>
+QDialog, Ui_DjangoTestDataDialog
+<h3>Class Attributes</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Class Methods</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Methods</h3>
+<table>
+<tr>
+<td><a href="#DjangoTestDataDialog.__init__">DjangoTestDataDialog</a></td>
+<td>Constructor</td>
+</tr><tr>
+<td><a href="#DjangoTestDataDialog.getData">getData</a></td>
+<td>Public method to get the entered data.</td>
+</tr>
+</table>
+<h3>Static Methods</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<a NAME="DjangoTestDataDialog.__init__" ID="DjangoTestDataDialog.__init__"></a>
+<h4>DjangoTestDataDialog (Constructor)</h4>
+<b>DjangoTestDataDialog</b>(<i>project, parent=None</i>)
+<p>
+        Constructor
+</p><dl>
+<dt><i>project</i> (Project)</dt>
+<dd>
+reference to the Django project object
+</dd><dt><i>parent</i> (QWidget)</dt>
+<dd>
+reference to the parent widget
+</dd>
+</dl><a NAME="DjangoTestDataDialog.getData" ID="DjangoTestDataDialog.getData"></a>
+<h4>DjangoTestDataDialog.getData</h4>
+<b>getData</b>(<i></i>)
+<p>
+        Public method to get the entered data.
+</p><dl>
+<dt>Returns:</dt>
+<dd>
+tuple containing a list of test labels, a test file pattern,
+            a list of test tags, a list of test tags to be skipped, a flag
+            indicating to keep the test database and a flag indicating to run
+            the tests in reverse order
+</dd>
+</dl><dl>
+<dt>Return Type:</dt>
+<dd>
+tuple of
+            (list of str, str, list of str, list of str, bool, bool)
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file
--- a/ProjectDjango/Documentation/source/Plugin_Project_Django.ProjectDjango.Project.html	Sat Nov 04 15:22:22 2017 +0100
+++ b/ProjectDjango/Documentation/source/Plugin_Project_Django.ProjectDjango.Project.html	Sun Nov 12 14:56:13 2017 +0100
@@ -239,6 +239,9 @@
 <td><a href="#Project.__loadRecentApplications">__loadRecentApplications</a></td>
 <td>Private method to load the recently used applications list.</td>
 </tr><tr>
+<td><a href="#Project.__loadRecentTestData">__loadRecentTestData</a></td>
+<td>Private method to load the recently used test data lists.</td>
+</tr><tr>
 <td><a href="#Project.__makeMigrations">__makeMigrations</a></td>
 <td>Private slot to generate migrations for the Django project.</td>
 </tr><tr>
@@ -272,6 +275,9 @@
 <td><a href="#Project.__saveRecentApplications">__saveRecentApplications</a></td>
 <td>Private method to save the list of recently used applications list.</td>
 </tr><tr>
+<td><a href="#Project.__saveRecentTestData">__saveRecentTestData</a></td>
+<td>Private method to save the list of recently used test data.</td>
+</tr><tr>
 <td><a href="#Project.__selectSite">__selectSite</a></td>
 <td>Private method to select a site to work with.</td>
 </tr><tr>
@@ -347,6 +353,9 @@
 <td><a href="#Project.getRecentApplications">getRecentApplications</a></td>
 <td>Public method to get the list of recent applications.</td>
 </tr><tr>
+<td><a href="#Project.getRecentTestData">getRecentTestData</a></td>
+<td>Public method to get the list of recent test data.</td>
+</tr><tr>
 <td><a href="#Project.initActions">initActions</a></td>
 <td>Public method to define the Django actions.</td>
 </tr><tr>
@@ -380,6 +389,9 @@
 <td><a href="#Project.setMostRecentApplication">setMostRecentApplication</a></td>
 <td>Public method to set the most recently used applications entry.</td>
 </tr><tr>
+<td><a href="#Project.setMostRecentTestData">setMostRecentTestData</a></td>
+<td>Public method to set the most recently used test data entry.</td>
+</tr><tr>
 <td><a href="#Project.startProjectOrApplication">startProjectOrApplication</a></td>
 <td>Public slot to start a new Django project or application.</td>
 </tr><tr>
@@ -894,6 +906,11 @@
 <b>__loadRecentApplications</b>(<i></i>)
 <p>
         Private method to load the recently used applications list.
+</p><a NAME="Project.__loadRecentTestData" ID="Project.__loadRecentTestData"></a>
+<h4>Project.__loadRecentTestData</h4>
+<b>__loadRecentTestData</b>(<i></i>)
+<p>
+        Private method to load the recently used test data lists.
 </p><a NAME="Project.__makeMigrations" ID="Project.__makeMigrations"></a>
 <h4>Project.__makeMigrations</h4>
 <b>__makeMigrations</b>(<i></i>)
@@ -970,6 +987,11 @@
 <b>__saveRecentApplications</b>(<i></i>)
 <p>
         Private method to save the list of recently used applications list.
+</p><a NAME="Project.__saveRecentTestData" ID="Project.__saveRecentTestData"></a>
+<h4>Project.__saveRecentTestData</h4>
+<b>__saveRecentTestData</b>(<i></i>)
+<p>
+        Private method to save the list of recently used test data.
 </p><a NAME="Project.__selectSite" ID="Project.__selectSite"></a>
 <h4>Project.__selectSite</h4>
 <b>__selectSite</b>(<i></i>)
@@ -1201,6 +1223,26 @@
 <dd>
 list of recent applications entries (list of strings)
 </dd>
+</dl><a NAME="Project.getRecentTestData" ID="Project.getRecentTestData"></a>
+<h4>Project.getRecentTestData</h4>
+<b>getRecentTestData</b>(<i>key</i>)
+<p>
+        Public method to get the list of recent test data.
+</p><dl>
+<dt><i>key</i> (str)</dt>
+<dd>
+key (name) of the test data to get
+</dd>
+</dl><dl>
+<dt>Returns:</dt>
+<dd>
+list of recent test data entries
+</dd>
+</dl><dl>
+<dt>Return Type:</dt>
+<dd>
+list of str
+</dd>
 </dl><a NAME="Project.initActions" ID="Project.initActions"></a>
 <h4>Project.initActions</h4>
 <b>initActions</b>(<i></i>)
@@ -1296,6 +1338,19 @@
 <dd>
 applications entry (string)
 </dd>
+</dl><a NAME="Project.setMostRecentTestData" ID="Project.setMostRecentTestData"></a>
+<h4>Project.setMostRecentTestData</h4>
+<b>setMostRecentTestData</b>(<i>key, data</i>)
+<p>
+        Public method to set the most recently used test data entry.
+</p><dl>
+<dt><i>key</i> (str)</dt>
+<dd>
+key (name) of the test data to set
+</dd><dt><i>data</i> (str)</dt>
+<dd>
+test data entry to be set
+</dd>
 </dl><a NAME="Project.startProjectOrApplication" ID="Project.startProjectOrApplication"></a>
 <h4>Project.startProjectOrApplication</h4>
 <b>startProjectOrApplication</b>(<i></i>)
--- a/ProjectDjango/Documentation/source/index-Plugin_Project_Django.ProjectDjango.html	Sat Nov 04 15:22:22 2017 +0100
+++ b/ProjectDjango/Documentation/source/index-Plugin_Project_Django.ProjectDjango.html	Sun Nov 12 14:56:13 2017 +0100
@@ -59,6 +59,9 @@
 <td><a href="Plugin_Project_Django.ProjectDjango.DjangoSquashMigrationSelectionDialog.html">DjangoSquashMigrationSelectionDialog</a></td>
 <td>Module implementing a dialog to enter data needed to squash migrations.</td>
 </tr><tr>
+<td><a href="Plugin_Project_Django.ProjectDjango.DjangoTestDataDialog.html">DjangoTestDataDialog</a></td>
+<td>Module implementing a dialog to enter some data for running tests.</td>
+</tr><tr>
 <td><a href="Plugin_Project_Django.ProjectDjango.Project.html">Project</a></td>
 <td>Module implementing the Django project support.</td>
 </tr>
--- a/ProjectDjango/Project.py	Sat Nov 04 15:22:22 2017 +0100
+++ b/ProjectDjango/Project.py	Sun Nov 12 14:56:13 2017 +0100
@@ -97,6 +97,9 @@
     Class implementing the Django project support.
     """
     RecentApplicationsKey = "Django/RecentApplications"
+##    RecentTestLabelsKey = "Django/RecentTestLabels"
+##    RecentTestTagsKey = "Django/RecentTestTags"
+##    RecentTestExcludeTagsKey = "Django/RecentTestExcludeTags"
     
     def __init__(self, plugin, parent=None):
         """
@@ -119,6 +122,13 @@
         
         self.__recentApplications = []
         self.__loadRecentApplications()
+        
+        self.__recentTestData = {
+            "RecentTestLabels": [],
+            "RecentTestTags": [],
+            "RecentTestExcludeTags": [],
+        }
+        self.__loadRecentTestData()
     
     def initActions(self):
         """
@@ -1559,6 +1569,64 @@
                 self.__recentApplications[:maxRecentApps]
         self.__saveRecentApplications()
     
+    def __loadRecentTestData(self):
+        """
+        Private method to load the recently used test data lists.
+        """
+        self.__recentTestData = {
+            "RecentTestLabels": [],
+            "RecentTestTags": [],
+            "RecentTestExcludeTags": [],
+        }
+        Preferences.Prefs.rsettings.sync()
+        maxRecentTestData = self.__plugin.getPreferences(
+            "RecentNumberTestData")
+        for key in self.__recentTestData:
+            recent = Preferences.Prefs.rsettings.value("Django/" + key)
+            if recent is not None:
+                self.__recentTestData[key] = recent[:maxRecentTestData]
+    
+    def __saveRecentTestData(self):
+        """
+        Private method to save the list of recently used test data.
+        """
+        for key in self.__recentTestData:
+            Preferences.Prefs.rsettings.setValue("Django/" + key,
+                                                 self.__recentTestData[key])
+        Preferences.Prefs.rsettings.sync()
+    
+    def getRecentTestData(self, key):
+        """
+        Public method to get the list of recent test data.
+        
+        @param key key (name) of the test data to get
+        @type str
+        @return list of recent test data entries
+        @rtype list of str
+        """
+        self.__loadRecentTestData()
+        return self.__recentTestData[key]
+    
+    def setMostRecentTestData(self, key, data):
+        """
+        Public method to set the most recently used test data entry.
+        
+        @param key key (name) of the test data to set
+        @type str
+        @param data test data entry to be set
+        @type str
+        """
+        if data in self.__recentTestData[key]:
+            self.__recentTestData[key].remove(data)
+        self.__recentTestData[key].insert(0, data)
+        
+        maxRecentTestData = self.__plugin.getPreferences(
+            "RecentNumberTestData")
+        if len(self.__recentTestData[key]) > maxRecentTestData:
+            self.__recentTestData[key] = \
+                self.__recentTestData[key][:maxRecentTestData]
+        self.__saveRecentTestData()
+    
     def getProjectPath(self):
         """
         Public method to get the path of the eric6 project.
@@ -1877,8 +1945,9 @@
         if self.__currentSite is None:
             raise DjangoNoSiteSelectedException
         else:
-            return os.path.join(self.__e5project.getProjectPath(),
+            path = os.path.join(self.__e5project.getProjectPath(),
                                 self.__currentSite)
+            return path
     
     def __setCurrentSite(self, site):
         """
@@ -2688,6 +2757,12 @@
             except DjangoNoSiteSelectedException:
                 return
             
+            from .DjangoTestDataDialog import DjangoTestDataDialog
+            dlg = DjangoTestDataDialog(self, self.__ui)
+            if dlg.exec_() == QDialog.Accepted:
+                labels, pattern, tags, excludeTags, keep, reverse = \
+                    dlg.getData()
+                
             args = Utilities.parseOptionString(consoleCmd)
             args[0] = Utilities.getExecutablePath(args[0])
             args.append(self.__getPythonExecutable())
@@ -2695,7 +2770,20 @@
                 args.append("-Wall")
             args.append("manage.py")
             args.append("test")
-            args += self.__getApplications()
+            if pattern:
+                args.append("--pattern")
+                args.append(pattern)
+            for tag in tags:
+                args.append("--tag")
+                args.append(tag)
+            for tag in excludeTags:
+                args.append("--exclude-tag")
+                args.append(tag)
+            if keep:
+                args.append("--keepdb")
+            if reverse:
+                args.append("--reverse")
+            args.extend(labels)
             
             self.__adjustWorkingDirectory(args, wd)
             started, pid = QProcess.startDetached(args[0], args[1:], wd)
Binary file ProjectDjango/i18n/django_de.qm has changed
--- a/ProjectDjango/i18n/django_de.ts	Sat Nov 04 15:22:22 2017 +0100
+++ b/ProjectDjango/i18n/django_de.ts	Sun Nov 12 14:56:13 2017 +0100
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de">
+<!DOCTYPE TS><TS version="2.0" language="de" sourcelanguage="">
 <context>
     <name>DjangoCheckOptionsDialog</name>
     <message>
@@ -609,1140 +608,1208 @@
     </message>
 </context>
 <context>
+    <name>DjangoTestDataDialog</name>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="14"/>
+        <source>Django Test Data</source>
+        <translation>Django Testdaten</translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="23"/>
+        <source>Test Labels:</source>
+        <translation>Testlabels:</translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="30"/>
+        <source>Enter the tests to be performed separated by space</source>
+        <translation>Gib die auszuführenden Tests durch Leerzeichen getrennt ein</translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="54"/>
+        <source>Tags:</source>
+        <translation>Tags:</translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="61"/>
+        <source>Enter the test tags to be run separated by space</source>
+        <translation>Gib die Tags auszuführender Tests durch Leerzeichen getrennt ein</translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="71"/>
+        <source>Exclude Tags:</source>
+        <translation>Ausnahmetags:</translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="78"/>
+        <source>Enter the test tags to be skipped separated by space</source>
+        <translation>Gib die Tags nicht auszuführender Tests durch Leerzeichen getrennt ein</translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="88"/>
+        <source>Select to keep the test database</source>
+        <translation>Auswählen, um die Testdatenbank nicht zu löschen</translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="91"/>
+        <source>Keep Test Database</source>
+        <translation>Testdatenbank nicht löschen</translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="98"/>
+        <source>Select to run the tests in reverse order</source>
+        <translation>Auswählen, um Tests in umgekehrter Reihenfolge auszuführen</translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="101"/>
+        <source>Run Tests in Reverse Order</source>
+        <translation>Tests in umgekehrter Reihenfolge ausführen</translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="40"/>
+        <source>Test File Pattern:</source>
+        <translation>Dateimuster für Testdateien:</translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="47"/>
+        <source>Enter the test file pattern</source>
+        <translation>Gib ein Dateimuster für die Testdateien ein</translation>
+    </message>
+</context>
+<context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="814"/>
+        <location filename="../Project.py" line="824"/>
         <source>D&amp;jango</source>
         <translation>D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1166"/>
+        <location filename="../Project.py" line="1176"/>
         <source>New Form</source>
         <translation>Neues Formular</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1133"/>
+        <location filename="../Project.py" line="1143"/>
         <source>The file already exists! Overwrite it?</source>
         <translation>Die Datei existiert bereits. Überschreiben?</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="129"/>
+        <location filename="../Project.py" line="139"/>
         <source>Current Project</source>
         <translation>Aktuelles Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="134"/>
+        <location filename="../Project.py" line="144"/>
         <source>Selects the current project</source>
         <translation>Wählt das aktuelle Projekt aus</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="149"/>
+        <location filename="../Project.py" line="159"/>
         <source>Start Project</source>
         <translation>Project starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="149"/>
+        <location filename="../Project.py" line="159"/>
         <source>Start &amp;Project</source>
         <translation>&amp;Project starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="154"/>
+        <location filename="../Project.py" line="164"/>
         <source>Starts a new Django project</source>
         <translation>Startet ein neues Django Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="156"/>
+        <location filename="../Project.py" line="166"/>
         <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="164"/>
+        <location filename="../Project.py" line="174"/>
         <source>Start Application (global)</source>
         <translation>Anwendung starten (global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="164"/>
+        <location filename="../Project.py" line="174"/>
         <source>Start Application (&amp;global)</source>
         <translation>Anwendung starten (&amp;global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="169"/>
+        <location filename="../Project.py" line="179"/>
         <source>Starts a new global Django application</source>
         <translation>Startet eine neue globale Django Anwendung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="171"/>
+        <location filename="../Project.py" line="181"/>
         <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="180"/>
+        <location filename="../Project.py" line="190"/>
         <source>Start Application (local)</source>
         <translation>Anwendung starten (lokal)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="180"/>
+        <location filename="../Project.py" line="190"/>
         <source>Start Application (&amp;local)</source>
         <translation>Anwendung starten (&amp;lokal)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="185"/>
+        <location filename="../Project.py" line="195"/>
         <source>Starts a new local Django application</source>
         <translation>Startet eine neue lokale Django Anwendung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="187"/>
+        <location filename="../Project.py" line="197"/>
         <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="200"/>
+        <location filename="../Project.py" line="210"/>
         <source>Run Server</source>
         <translation>Server starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="200"/>
+        <location filename="../Project.py" line="210"/>
         <source>Run &amp;Server</source>
         <translation>&amp;Server starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="205"/>
+        <location filename="../Project.py" line="215"/>
         <source>Starts the Django Web server</source>
         <translation>Startet den Django Web-Server</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="207"/>
+        <location filename="../Project.py" line="217"/>
         <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="2027"/>
+        <location filename="../Project.py" line="2097"/>
         <source>Run Web-Browser</source>
         <translation>Web-Browser starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="215"/>
+        <location filename="../Project.py" line="225"/>
         <source>Run &amp;Web-Browser</source>
         <translation>Web-&amp;Browser starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="220"/>
+        <location filename="../Project.py" line="230"/>
         <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="223"/>
+        <location filename="../Project.py" line="233"/>
         <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="1447"/>
+        <location filename="../Project.py" line="1457"/>
         <source>About Django</source>
         <translation>Über Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="273"/>
+        <location filename="../Project.py" line="283"/>
         <source>About D&amp;jango</source>
         <translation>Über D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="278"/>
+        <location filename="../Project.py" line="288"/>
         <source>Shows some information about Django</source>
         <translation>Zeigt Informationen über Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="280"/>
+        <location filename="../Project.py" line="290"/>
         <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="856"/>
+        <location filename="../Project.py" line="866"/>
         <source>&amp;Database</source>
         <translation>&amp;Datenbank</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1904"/>
+        <location filename="../Project.py" line="1974"/>
         <source>Project</source>
         <translation>Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1644"/>
+        <location filename="../Project.py" line="1713"/>
         <source>Application</source>
         <translation>Anwendung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1646"/>
+        <location filename="../Project.py" line="1715"/>
         <source>Start Django</source>
         <translation>Django starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1646"/>
+        <location filename="../Project.py" line="1715"/>
         <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="1723"/>
+        <location filename="../Project.py" line="1792"/>
         <source>Start Django Project</source>
         <translation>Django Projekt starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1699"/>
+        <location filename="../Project.py" line="1768"/>
         <source>Django project created successfully.</source>
         <translation>Das Django Projekt wurde erfolgreich erzeugt.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1723"/>
+        <location filename="../Project.py" line="1792"/>
         <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="1751"/>
+        <location filename="../Project.py" line="1820"/>
         <source>Start Django Application</source>
         <translation>Django Anwendung starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1785"/>
+        <location filename="../Project.py" line="1854"/>
         <source>Django application created successfully.</source>
         <translation>Die Django Anwendung wurde erfolgreich erzeugt.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1868"/>
+        <location filename="../Project.py" line="1937"/>
         <source>Select Project</source>
         <translation>Wähle Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1868"/>
+        <location filename="../Project.py" line="1937"/>
         <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="1902"/>
+        <location filename="../Project.py" line="1972"/>
         <source>None</source>
         <translation>keines</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3226"/>
+        <location filename="../Project.py" line="3315"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1981"/>
+        <location filename="../Project.py" line="2051"/>
         <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="2027"/>
+        <location filename="../Project.py" line="2097"/>
         <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="2835"/>
+        <location filename="../Project.py" line="2924"/>
         <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="136"/>
+        <location filename="../Project.py" line="146"/>
         <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="2533"/>
+        <location filename="../Project.py" line="2603"/>
         <source>Diff Settings</source>
         <translation>Settings Unterschiede</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="541"/>
+        <location filename="../Project.py" line="551"/>
         <source>&amp;Diff Settings</source>
         <translation>Settings &amp;Unterschiede</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="546"/>
+        <location filename="../Project.py" line="556"/>
         <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="548"/>
+        <location filename="../Project.py" line="558"/>
         <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="933"/>
+        <location filename="../Project.py" line="943"/>
         <source>&amp;Tools</source>
         <translation>&amp;Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1907"/>
+        <location filename="../Project.py" line="1977"/>
         <source>&amp;Current Django project ({0})</source>
         <translation>&amp;Aktuelles Django Projekt ({0})</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1518"/>
+        <location filename="../Project.py" line="1528"/>
         <source>Select Applications</source>
         <translation>Applikation auswählen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1518"/>
+        <location filename="../Project.py" line="1528"/>
         <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="555"/>
+        <location filename="../Project.py" line="565"/>
         <source>Start Python Console</source>
         <translation>Starte Python Konsole</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="555"/>
+        <location filename="../Project.py" line="565"/>
         <source>Start &amp;Python Console</source>
         <translation>Starte &amp;Python Konsole</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="560"/>
+        <location filename="../Project.py" line="570"/>
         <source>Starts a Python interactive interpreter</source>
         <translation>Startet einen interaktiven Python Interpreter</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="562"/>
+        <location filename="../Project.py" line="572"/>
         <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="2589"/>
+        <location filename="../Project.py" line="2659"/>
         <source>Create Cache Tables</source>
         <translation>Erzeuge Cache Tabellen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="235"/>
+        <location filename="../Project.py" line="245"/>
         <source>C&amp;reate Cache Tables</source>
         <translation>Erzeuge &amp;Cache Tabellen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="240"/>
+        <location filename="../Project.py" line="250"/>
         <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="242"/>
+        <location filename="../Project.py" line="252"/>
         <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="2596"/>
+        <location filename="../Project.py" line="2666"/>
         <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="2611"/>
+        <location filename="../Project.py" line="2681"/>
         <source>Cache tables created successfully.</source>
         <translation>Cache Tabellen erfolgreich erzeugt.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="327"/>
         <source>Introspect</source>
         <translation>Untersuchen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="327"/>
         <source>&amp;Introspect</source>
         <translation>&amp;Untersuchen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="322"/>
+        <location filename="../Project.py" line="332"/>
         <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="325"/>
+        <location filename="../Project.py" line="335"/>
         <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="2044"/>
+        <location filename="../Project.py" line="2114"/>
         <source>Introspect Database</source>
         <translation>Datenbank untersuchen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="343"/>
         <source>Flush</source>
         <translation>Neuinitialisierung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="343"/>
         <source>&amp;Flush</source>
         <translation>&amp;Neuinitialisierung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="338"/>
+        <location filename="../Project.py" line="348"/>
         <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="341"/>
+        <location filename="../Project.py" line="351"/>
         <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="2215"/>
+        <location filename="../Project.py" line="2285"/>
         <source>Flush Database</source>
         <translation>Datenbank neu initialisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2073"/>
+        <location filename="../Project.py" line="2143"/>
         <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="2085"/>
+        <location filename="../Project.py" line="2155"/>
         <source>Database tables flushed successfully.</source>
         <translation>Datenbank erfolgreich neu initialisiert.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="359"/>
         <source>Start Client Console</source>
         <translation>Starte Datenbank Konsole</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="354"/>
+        <location filename="../Project.py" line="364"/>
         <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="356"/>
+        <location filename="../Project.py" line="366"/>
         <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="349"/>
+        <location filename="../Project.py" line="359"/>
         <source>Start &amp;Client Console</source>
         <translation>Starte &amp;Datenbank Konsole</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2163"/>
+        <location filename="../Project.py" line="2233"/>
         <source>Create Tables</source>
         <translation>Tabellen erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="367"/>
+        <location filename="../Project.py" line="377"/>
         <source>Create &amp;Tables</source>
         <translation>&amp;Tabellen erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="372"/>
+        <location filename="../Project.py" line="382"/>
         <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="375"/>
+        <location filename="../Project.py" line="385"/>
         <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="878"/>
+        <location filename="../Project.py" line="888"/>
         <source>Show &amp;SQL</source>
         <translation>Zeige &amp;SQL</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2172"/>
+        <location filename="../Project.py" line="2242"/>
         <source>Create Indexes</source>
         <translation>Indices erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="384"/>
+        <location filename="../Project.py" line="394"/>
         <source>Create &amp;Indexes</source>
         <translation>&amp;Indices erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="392"/>
+        <location filename="../Project.py" line="402"/>
         <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="2181"/>
+        <location filename="../Project.py" line="2251"/>
         <source>Create Everything</source>
         <translation>Alles erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="401"/>
+        <location filename="../Project.py" line="411"/>
         <source>Create &amp;Everything</source>
         <translation>&amp;Alles erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="406"/>
+        <location filename="../Project.py" line="416"/>
         <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="409"/>
+        <location filename="../Project.py" line="419"/>
         <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="389"/>
+        <location filename="../Project.py" line="399"/>
         <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="2190"/>
+        <location filename="../Project.py" line="2260"/>
         <source>Custom Statements</source>
         <translation>Spezifische Befehle</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="418"/>
+        <location filename="../Project.py" line="428"/>
         <source>&amp;Custom Statements</source>
         <translation>&amp;Spezifische Befehle</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="423"/>
+        <location filename="../Project.py" line="433"/>
         <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="426"/>
+        <location filename="../Project.py" line="436"/>
         <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="2199"/>
+        <location filename="../Project.py" line="2269"/>
         <source>Drop Tables</source>
         <translation>Tabellen löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="435"/>
+        <location filename="../Project.py" line="445"/>
         <source>&amp;Drop Tables</source>
         <translation>Tabellen &amp;löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="440"/>
+        <location filename="../Project.py" line="450"/>
         <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="443"/>
+        <location filename="../Project.py" line="453"/>
         <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="469"/>
+        <location filename="../Project.py" line="479"/>
         <source>&amp;Flush Database</source>
         <translation>&amp;Datenbank neu initialisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="474"/>
+        <location filename="../Project.py" line="484"/>
         <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="477"/>
+        <location filename="../Project.py" line="487"/>
         <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="2222"/>
+        <location filename="../Project.py" line="2292"/>
         <source>Reset Sequences</source>
         <translation>Sequenzen zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="486"/>
+        <location filename="../Project.py" line="496"/>
         <source>Reset &amp;Sequences</source>
         <translation>Se&amp;quenzen zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="491"/>
+        <location filename="../Project.py" line="501"/>
         <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="494"/>
+        <location filename="../Project.py" line="504"/>
         <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="2626"/>
+        <location filename="../Project.py" line="2696"/>
         <source>Dump Data</source>
         <translation>Daten sichern</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="573"/>
+        <location filename="../Project.py" line="583"/>
         <source>&amp;Dump Data</source>
         <translation>Daten &amp;sichern</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="578"/>
+        <location filename="../Project.py" line="588"/>
         <source>Dump the database data to a fixture</source>
         <translation>Schreibt die Datenbank in ein Fixture</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="580"/>
+        <location filename="../Project.py" line="590"/>
         <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="951"/>
+        <location filename="../Project.py" line="961"/>
         <source>T&amp;esting</source>
         <translation>&amp;Testen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2264"/>
+        <location filename="../Project.py" line="2334"/>
         <source>SQL Files (*.sql)</source>
         <translation>SQL Dateien (*.sql)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2649"/>
+        <location filename="../Project.py" line="2719"/>
         <source>JSON Files (*.json)</source>
         <translation>JSON Dateien (*.json)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2651"/>
+        <location filename="../Project.py" line="2721"/>
         <source>XML Files (*.xml)</source>
         <translation>XML Dateien (*.xml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2653"/>
+        <location filename="../Project.py" line="2723"/>
         <source>YAML Files (*.yaml)</source>
         <translation>YAML Dateien (*.yaml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2665"/>
+        <location filename="../Project.py" line="2735"/>
         <source>Load Data</source>
         <translation>Daten laden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="587"/>
+        <location filename="../Project.py" line="597"/>
         <source>&amp;Load Data</source>
         <translation>Daten &amp;laden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="592"/>
+        <location filename="../Project.py" line="602"/>
         <source>Load data from fixture files</source>
         <translation>Lädt Daten aus Fixturedateien</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="594"/>
+        <location filename="../Project.py" line="604"/>
         <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="601"/>
+        <location filename="../Project.py" line="611"/>
         <source>Run Testsuite</source>
         <translation>Testsuite starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="601"/>
+        <location filename="../Project.py" line="611"/>
         <source>Run &amp;Testsuite</source>
         <translation>&amp;Testsuite starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="606"/>
+        <location filename="../Project.py" line="616"/>
         <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="608"/>
+        <location filename="../Project.py" line="618"/>
         <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="632"/>
+        <location filename="../Project.py" line="642"/>
         <source>Run Testserver</source>
         <translation>Testserver starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="632"/>
+        <location filename="../Project.py" line="642"/>
         <source>Run Test&amp;server</source>
         <translation>Test&amp;server starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="637"/>
+        <location filename="../Project.py" line="647"/>
         <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="639"/>
+        <location filename="../Project.py" line="649"/>
         <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="2762"/>
+        <location filename="../Project.py" line="2851"/>
         <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="255"/>
+        <location filename="../Project.py" line="265"/>
         <source>Help</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="255"/>
+        <location filename="../Project.py" line="265"/>
         <source>&amp;Help</source>
         <translation>&amp;Hilfe</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="260"/>
+        <location filename="../Project.py" line="270"/>
         <source>Shows the Django help index</source>
         <translation>Zeigt den Django Hilfe Index an</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="262"/>
+        <location filename="../Project.py" line="272"/>
         <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="1046"/>
+        <location filename="../Project.py" line="1056"/>
         <source>New template...</source>
         <translation>Neues Template...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1055"/>
+        <location filename="../Project.py" line="1065"/>
         <source>Update all catalogs</source>
         <translation>Alle Kataloge aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1058"/>
+        <location filename="../Project.py" line="1068"/>
         <source>Update selected catalogs</source>
         <translation>Ausgewählte Kataloge aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1069"/>
+        <location filename="../Project.py" line="1079"/>
         <source>Compile all catalogs</source>
         <translation>Alle Kataloge übersetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1072"/>
+        <location filename="../Project.py" line="1082"/>
         <source>Compile selected catalogs</source>
         <translation>Ausgewählte Kataloge übersetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2931"/>
+        <location filename="../Project.py" line="3020"/>
         <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="3190"/>
+        <location filename="../Project.py" line="3279"/>
         <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="2951"/>
+        <location filename="../Project.py" line="3040"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation>
 Textkatalog erfolgreich initialisiert.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3063"/>
+        <location filename="../Project.py" line="3152"/>
         <source>Updating message catalogs</source>
         <translation>Aktualisiere Textkataloge</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3154"/>
+        <location filename="../Project.py" line="3243"/>
         <source>No locales detected. Aborting...</source>
         <translation>Keine Sprachen erkannt. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3114"/>
+        <location filename="../Project.py" line="3203"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation>
 Textkataloge erfolgreich aktualisiert.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3180"/>
+        <location filename="../Project.py" line="3269"/>
         <source>Compiling message catalogs</source>
         <translation>Übersetze Textkataloge</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3197"/>
+        <location filename="../Project.py" line="3286"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation>
 Textkataloge erfolgreich übersetzt.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1062"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation>Alle Kataloge aktualisieren (mit veralteten)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1065"/>
+        <location filename="../Project.py" line="1075"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation>Ausgewählte Kataloge aktualisieren (mit veralteten)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1797"/>
+        <location filename="../Project.py" line="1866"/>
         <source>Start Global Django Application</source>
         <translation>Globale Django Anwendung beginnen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1797"/>
+        <location filename="../Project.py" line="1866"/>
         <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="1819"/>
+        <location filename="../Project.py" line="1888"/>
         <source>Start Local Django Application</source>
         <translation>Lokale Django Anwendung beginnen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1819"/>
+        <location filename="../Project.py" line="1888"/>
         <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="3095"/>
+        <location filename="../Project.py" line="3184"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation>Aktualisiere Textkataloge (veraltete Texte behalten)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2792"/>
+        <location filename="../Project.py" line="2881"/>
         <source>Change Password</source>
         <translation>Kennwort ändern</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="651"/>
+        <location filename="../Project.py" line="661"/>
         <source>Change &amp;Password</source>
         <translation>&amp;Kennwort ändern</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="656"/>
+        <location filename="../Project.py" line="666"/>
         <source>Change the password of a user</source>
         <translation>Ändert das Kennwort eines Nutzers</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="658"/>
+        <location filename="../Project.py" line="668"/>
         <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="665"/>
+        <location filename="../Project.py" line="675"/>
         <source>Create Superuser</source>
         <translation>Superuser anlegen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="665"/>
+        <location filename="../Project.py" line="675"/>
         <source>Create &amp;Superuser</source>
         <translation>&amp;Superuser anlegen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="670"/>
+        <location filename="../Project.py" line="680"/>
         <source>Create a superuser account</source>
         <translation>Legt eine Superuser Kennung an</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="672"/>
+        <location filename="../Project.py" line="682"/>
         <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="2850"/>
+        <location filename="../Project.py" line="2939"/>
         <source>Clear Sessions</source>
         <translation>Sessions löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="683"/>
+        <location filename="../Project.py" line="693"/>
         <source>Clear &amp;Sessions</source>
         <translation>&amp;Sessions löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="688"/>
+        <location filename="../Project.py" line="698"/>
         <source>Clear expired sessions</source>
         <translation>Löscht abgelaufene Sessions</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="690"/>
+        <location filename="../Project.py" line="700"/>
         <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="972"/>
+        <location filename="../Project.py" line="982"/>
         <source>&amp;Authorization</source>
         <translation>&amp;Authorisierung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="989"/>
+        <location filename="../Project.py" line="999"/>
         <source>&amp;Session</source>
         <translation>&amp;Session</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2792"/>
+        <location filename="../Project.py" line="2881"/>
         <source>Enter the name of the user:</source>
         <translation>Gib den Namen des Nutzers ein:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2862"/>
+        <location filename="../Project.py" line="2951"/>
         <source>Expired sessions cleared successfully.</source>
         <translation>Abgelaufene Sessions erfolgreich gelöscht.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1447"/>
+        <location filename="../Project.py" line="1457"/>
         <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="1768"/>
+        <location filename="../Project.py" line="1837"/>
         <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="1031"/>
+        <location filename="../Project.py" line="1041"/>
         <source>Open with {0}</source>
         <translation>Mit {0} öffnen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3226"/>
+        <location filename="../Project.py" line="3315"/>
         <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="1166"/>
+        <location filename="../Project.py" line="1176"/>
         <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="2208"/>
+        <location filename="../Project.py" line="2278"/>
         <source>Drop Indexes</source>
         <translation>Indices löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="452"/>
+        <location filename="../Project.py" line="462"/>
         <source>&amp;Drop Indexes</source>
         <translation>&amp;Indices löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="457"/>
+        <location filename="../Project.py" line="467"/>
         <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="460"/>
+        <location filename="../Project.py" line="470"/>
         <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="701"/>
+        <location filename="../Project.py" line="711"/>
         <source>Show Migrations</source>
         <translation>Migrationen anzeigen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="701"/>
+        <location filename="../Project.py" line="711"/>
         <source>&amp;Show Migrations</source>
         <translation>Migrationen an&amp;zeigen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="706"/>
+        <location filename="../Project.py" line="716"/>
         <source>Show a list of available migrations</source>
         <translation>Zeigt eine Liste verfügbarer Migrationen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="708"/>
+        <location filename="../Project.py" line="718"/>
         <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="716"/>
+        <location filename="../Project.py" line="726"/>
         <source>Show Migrations Plan</source>
         <translation>Migrationsplan anzeigen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="716"/>
+        <location filename="../Project.py" line="726"/>
         <source>Show Migrations &amp;Plan</source>
         <translation>Migrations&amp;plan anzeigen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="721"/>
+        <location filename="../Project.py" line="731"/>
         <source>Show a list with the migrations plan</source>
         <translation>Zeigt eine Liste mit dem Migrationsplan</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="723"/>
+        <location filename="../Project.py" line="733"/>
         <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="908"/>
+        <location filename="../Project.py" line="918"/>
         <source>&amp;Migrations</source>
         <translation>&amp;Migrationen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="731"/>
+        <location filename="../Project.py" line="741"/>
         <source>Apply All Migrations</source>
         <translation>Alle Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="731"/>
+        <location filename="../Project.py" line="741"/>
         <source>&amp;Apply All Migrations</source>
         <translation>Alle Migrationen &amp;anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="736"/>
+        <location filename="../Project.py" line="746"/>
         <source>Apply all available migrations</source>
         <translation>Alle verfügbaren Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="738"/>
+        <location filename="../Project.py" line="748"/>
         <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="2318"/>
+        <location filename="../Project.py" line="2388"/>
         <source>Apply Selected Migrations</source>
         <translation>Ausgewählte Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="750"/>
+        <location filename="../Project.py" line="760"/>
         <source>Apply selected migrations</source>
         <translation>Ausgewählte Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="752"/>
+        <location filename="../Project.py" line="762"/>
         <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="2377"/>
+        <location filename="../Project.py" line="2447"/>
         <source>Unapply Migrations</source>
         <translation>Migrationen rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="761"/>
+        <location filename="../Project.py" line="771"/>
         <source>&amp;Unapply Migrations</source>
         <translation>Migrationen &amp;rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="766"/>
+        <location filename="../Project.py" line="776"/>
         <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="768"/>
+        <location filename="../Project.py" line="778"/>
         <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="2456"/>
+        <location filename="../Project.py" line="2526"/>
         <source>Make Migrations</source>
         <translation>Migrationen generieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="776"/>
+        <location filename="../Project.py" line="786"/>
         <source>&amp;Make Migrations</source>
         <translation>Migrationen &amp;generieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="781"/>
+        <location filename="../Project.py" line="791"/>
         <source>Generate migrations for the project</source>
         <translation>Generiert Migrationen für das Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="783"/>
+        <location filename="../Project.py" line="793"/>
         <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="2488"/>
+        <location filename="../Project.py" line="2558"/>
         <source>No migrations available.</source>
         <translation>Keine Migrationen verfügbar.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2343"/>
+        <location filename="../Project.py" line="2413"/>
         <source>Apply Migrations</source>
         <translation>Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2377"/>
+        <location filename="../Project.py" line="2447"/>
         <source>Select an application:</source>
         <translation>Wähle eine Anwendung aus:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2501"/>
+        <location filename="../Project.py" line="2571"/>
         <source>Squash Migrations</source>
         <translation>Migrationen kürzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="790"/>
+        <location filename="../Project.py" line="800"/>
         <source>S&amp;quash Migrations</source>
         <translation>Migrationen &amp;kürzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="795"/>
+        <location filename="../Project.py" line="805"/>
         <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="797"/>
+        <location filename="../Project.py" line="807"/>
         <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="503"/>
+        <location filename="../Project.py" line="513"/>
         <source>Apply Migration</source>
         <translation>Migration anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="513"/>
         <source>&amp;Apply Migration</source>
         <translation>Migration &amp;anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="508"/>
+        <location filename="../Project.py" line="518"/>
         <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="511"/>
+        <location filename="../Project.py" line="521"/>
         <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="520"/>
+        <location filename="../Project.py" line="530"/>
         <source>Unapply Migration</source>
         <translation>Migration rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="530"/>
         <source>&amp;Unapply Migration</source>
         <translation>Migration &amp;rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="525"/>
+        <location filename="../Project.py" line="535"/>
         <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="528"/>
+        <location filename="../Project.py" line="538"/>
         <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="2246"/>
+        <location filename="../Project.py" line="2316"/>
         <source>SQL Migrate</source>
         <translation>SQL Migrate</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3271"/>
+        <location filename="../Project.py" line="3360"/>
         <source>Check Project</source>
         <translation>Projekt prüfen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="296"/>
+        <location filename="../Project.py" line="306"/>
         <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="298"/>
+        <location filename="../Project.py" line="308"/>
         <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="615"/>
+        <location filename="../Project.py" line="625"/>
         <source>Run Testsuite (-Wall)</source>
         <translation>Testsuite starten (-Wall)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="620"/>
+        <location filename="../Project.py" line="630"/>
         <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="623"/>
+        <location filename="../Project.py" line="633"/>
         <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>
@@ -1750,7 +1817,7 @@
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="389"/>
+        <location filename="../../PluginProjectDjango.py" line="391"/>
         <source>Django</source>
         <translation>Django</translation>
     </message>
--- a/ProjectDjango/i18n/django_empty.ts	Sat Nov 04 15:22:22 2017 +0100
+++ b/ProjectDjango/i18n/django_empty.ts	Sun Nov 12 14:56:13 2017 +0100
@@ -608,1137 +608,1205 @@
     </message>
 </context>
 <context>
+    <name>DjangoTestDataDialog</name>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="14"/>
+        <source>Django Test Data</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="23"/>
+        <source>Test Labels:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="30"/>
+        <source>Enter the tests to be performed separated by space</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="54"/>
+        <source>Tags:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="61"/>
+        <source>Enter the test tags to be run separated by space</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="71"/>
+        <source>Exclude Tags:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="78"/>
+        <source>Enter the test tags to be skipped separated by space</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="88"/>
+        <source>Select to keep the test database</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="91"/>
+        <source>Keep Test Database</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="98"/>
+        <source>Select to run the tests in reverse order</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="101"/>
+        <source>Run Tests in Reverse Order</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="40"/>
+        <source>Test File Pattern:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="47"/>
+        <source>Enter the test file pattern</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="129"/>
+        <location filename="../Project.py" line="139"/>
         <source>Current Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="134"/>
+        <location filename="../Project.py" line="144"/>
         <source>Selects the current project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="136"/>
+        <location filename="../Project.py" line="146"/>
         <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="149"/>
+        <location filename="../Project.py" line="159"/>
         <source>Start Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="149"/>
+        <location filename="../Project.py" line="159"/>
         <source>Start &amp;Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="154"/>
+        <location filename="../Project.py" line="164"/>
         <source>Starts a new Django project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="156"/>
+        <location filename="../Project.py" line="166"/>
         <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="164"/>
+        <location filename="../Project.py" line="174"/>
         <source>Start Application (global)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="164"/>
+        <location filename="../Project.py" line="174"/>
         <source>Start Application (&amp;global)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="169"/>
+        <location filename="../Project.py" line="179"/>
         <source>Starts a new global Django application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="171"/>
+        <location filename="../Project.py" line="181"/>
         <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="180"/>
+        <location filename="../Project.py" line="190"/>
         <source>Start Application (local)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="180"/>
+        <location filename="../Project.py" line="190"/>
         <source>Start Application (&amp;local)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="185"/>
+        <location filename="../Project.py" line="195"/>
         <source>Starts a new local Django application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="187"/>
+        <location filename="../Project.py" line="197"/>
         <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="200"/>
+        <location filename="../Project.py" line="210"/>
         <source>Run Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="200"/>
+        <location filename="../Project.py" line="210"/>
         <source>Run &amp;Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="205"/>
+        <location filename="../Project.py" line="215"/>
         <source>Starts the Django Web server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="207"/>
+        <location filename="../Project.py" line="217"/>
         <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="2027"/>
+        <location filename="../Project.py" line="2097"/>
         <source>Run Web-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="215"/>
+        <location filename="../Project.py" line="225"/>
         <source>Run &amp;Web-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="220"/>
+        <location filename="../Project.py" line="230"/>
         <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="223"/>
+        <location filename="../Project.py" line="233"/>
         <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="2589"/>
+        <location filename="../Project.py" line="2659"/>
         <source>Create Cache Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="235"/>
+        <location filename="../Project.py" line="245"/>
         <source>C&amp;reate Cache Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="240"/>
+        <location filename="../Project.py" line="250"/>
         <source>Creates the tables needed to use the SQL cache backend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="242"/>
+        <location filename="../Project.py" line="252"/>
         <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="255"/>
+        <location filename="../Project.py" line="265"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="255"/>
+        <location filename="../Project.py" line="265"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="260"/>
+        <location filename="../Project.py" line="270"/>
         <source>Shows the Django help index</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="262"/>
+        <location filename="../Project.py" line="272"/>
         <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="1447"/>
+        <location filename="../Project.py" line="1457"/>
         <source>About Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="273"/>
+        <location filename="../Project.py" line="283"/>
         <source>About D&amp;jango</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="278"/>
+        <location filename="../Project.py" line="288"/>
         <source>Shows some information about Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="280"/>
+        <location filename="../Project.py" line="290"/>
         <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="317"/>
+        <location filename="../Project.py" line="327"/>
         <source>Introspect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="327"/>
         <source>&amp;Introspect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="322"/>
+        <location filename="../Project.py" line="332"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="325"/>
+        <location filename="../Project.py" line="335"/>
         <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="333"/>
+        <location filename="../Project.py" line="343"/>
         <source>Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="343"/>
         <source>&amp;Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="338"/>
+        <location filename="../Project.py" line="348"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="341"/>
+        <location filename="../Project.py" line="351"/>
         <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="349"/>
+        <location filename="../Project.py" line="359"/>
         <source>Start Client Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="359"/>
         <source>Start &amp;Client Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="354"/>
+        <location filename="../Project.py" line="364"/>
         <source>Starts a console window for the database client</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="356"/>
+        <location filename="../Project.py" line="366"/>
         <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="2163"/>
+        <location filename="../Project.py" line="2233"/>
         <source>Create Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="367"/>
+        <location filename="../Project.py" line="377"/>
         <source>Create &amp;Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="372"/>
+        <location filename="../Project.py" line="382"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="375"/>
+        <location filename="../Project.py" line="385"/>
         <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="2172"/>
+        <location filename="../Project.py" line="2242"/>
         <source>Create Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="384"/>
+        <location filename="../Project.py" line="394"/>
         <source>Create &amp;Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="389"/>
+        <location filename="../Project.py" line="399"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="392"/>
+        <location filename="../Project.py" line="402"/>
         <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="2181"/>
+        <location filename="../Project.py" line="2251"/>
         <source>Create Everything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="401"/>
+        <location filename="../Project.py" line="411"/>
         <source>Create &amp;Everything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="406"/>
+        <location filename="../Project.py" line="416"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="409"/>
+        <location filename="../Project.py" line="419"/>
         <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="2190"/>
+        <location filename="../Project.py" line="2260"/>
         <source>Custom Statements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="418"/>
+        <location filename="../Project.py" line="428"/>
         <source>&amp;Custom Statements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="423"/>
+        <location filename="../Project.py" line="433"/>
         <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="426"/>
+        <location filename="../Project.py" line="436"/>
         <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="2199"/>
+        <location filename="../Project.py" line="2269"/>
         <source>Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="435"/>
+        <location filename="../Project.py" line="445"/>
         <source>&amp;Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="440"/>
+        <location filename="../Project.py" line="450"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="443"/>
+        <location filename="../Project.py" line="453"/>
         <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="2208"/>
+        <location filename="../Project.py" line="2278"/>
         <source>Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="452"/>
+        <location filename="../Project.py" line="462"/>
         <source>&amp;Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="457"/>
+        <location filename="../Project.py" line="467"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="460"/>
+        <location filename="../Project.py" line="470"/>
         <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="2215"/>
+        <location filename="../Project.py" line="2285"/>
         <source>Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="469"/>
+        <location filename="../Project.py" line="479"/>
         <source>&amp;Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="474"/>
+        <location filename="../Project.py" line="484"/>
         <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="477"/>
+        <location filename="../Project.py" line="487"/>
         <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="2222"/>
+        <location filename="../Project.py" line="2292"/>
         <source>Reset Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="486"/>
+        <location filename="../Project.py" line="496"/>
         <source>Reset &amp;Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="491"/>
+        <location filename="../Project.py" line="501"/>
         <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="494"/>
+        <location filename="../Project.py" line="504"/>
         <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="2533"/>
+        <location filename="../Project.py" line="2603"/>
         <source>Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="541"/>
+        <location filename="../Project.py" line="551"/>
         <source>&amp;Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="546"/>
+        <location filename="../Project.py" line="556"/>
         <source>Shows the modification made to the settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="548"/>
+        <location filename="../Project.py" line="558"/>
         <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="555"/>
+        <location filename="../Project.py" line="565"/>
         <source>Start Python Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="555"/>
+        <location filename="../Project.py" line="565"/>
         <source>Start &amp;Python Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="560"/>
+        <location filename="../Project.py" line="570"/>
         <source>Starts a Python interactive interpreter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="562"/>
+        <location filename="../Project.py" line="572"/>
         <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="2626"/>
+        <location filename="../Project.py" line="2696"/>
         <source>Dump Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="573"/>
+        <location filename="../Project.py" line="583"/>
         <source>&amp;Dump Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="578"/>
+        <location filename="../Project.py" line="588"/>
         <source>Dump the database data to a fixture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="580"/>
+        <location filename="../Project.py" line="590"/>
         <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="2665"/>
+        <location filename="../Project.py" line="2735"/>
         <source>Load Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="587"/>
+        <location filename="../Project.py" line="597"/>
         <source>&amp;Load Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="592"/>
+        <location filename="../Project.py" line="602"/>
         <source>Load data from fixture files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="594"/>
+        <location filename="../Project.py" line="604"/>
         <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="601"/>
+        <location filename="../Project.py" line="611"/>
         <source>Run Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="601"/>
+        <location filename="../Project.py" line="611"/>
         <source>Run &amp;Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="606"/>
+        <location filename="../Project.py" line="616"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="608"/>
+        <location filename="../Project.py" line="618"/>
         <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="632"/>
+        <location filename="../Project.py" line="642"/>
         <source>Run Testserver</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="632"/>
+        <location filename="../Project.py" line="642"/>
         <source>Run Test&amp;server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="637"/>
+        <location filename="../Project.py" line="647"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="639"/>
+        <location filename="../Project.py" line="649"/>
         <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="2792"/>
+        <location filename="../Project.py" line="2881"/>
         <source>Change Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="651"/>
+        <location filename="../Project.py" line="661"/>
         <source>Change &amp;Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="656"/>
+        <location filename="../Project.py" line="666"/>
         <source>Change the password of a user</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="658"/>
+        <location filename="../Project.py" line="668"/>
         <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="665"/>
+        <location filename="../Project.py" line="675"/>
         <source>Create Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="665"/>
+        <location filename="../Project.py" line="675"/>
         <source>Create &amp;Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="670"/>
+        <location filename="../Project.py" line="680"/>
         <source>Create a superuser account</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="672"/>
+        <location filename="../Project.py" line="682"/>
         <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="2850"/>
+        <location filename="../Project.py" line="2939"/>
         <source>Clear Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="683"/>
+        <location filename="../Project.py" line="693"/>
         <source>Clear &amp;Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="688"/>
+        <location filename="../Project.py" line="698"/>
         <source>Clear expired sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="690"/>
+        <location filename="../Project.py" line="700"/>
         <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="701"/>
+        <location filename="../Project.py" line="711"/>
         <source>Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="701"/>
+        <location filename="../Project.py" line="711"/>
         <source>&amp;Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="706"/>
+        <location filename="../Project.py" line="716"/>
         <source>Show a list of available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="708"/>
+        <location filename="../Project.py" line="718"/>
         <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="716"/>
+        <location filename="../Project.py" line="726"/>
         <source>Show Migrations Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="716"/>
+        <location filename="../Project.py" line="726"/>
         <source>Show Migrations &amp;Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="721"/>
+        <location filename="../Project.py" line="731"/>
         <source>Show a list with the migrations plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="723"/>
+        <location filename="../Project.py" line="733"/>
         <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="814"/>
+        <location filename="../Project.py" line="824"/>
         <source>D&amp;jango</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="856"/>
+        <location filename="../Project.py" line="866"/>
         <source>&amp;Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="878"/>
+        <location filename="../Project.py" line="888"/>
         <source>Show &amp;SQL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="908"/>
+        <location filename="../Project.py" line="918"/>
         <source>&amp;Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="933"/>
+        <location filename="../Project.py" line="943"/>
         <source>&amp;Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="951"/>
+        <location filename="../Project.py" line="961"/>
         <source>T&amp;esting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="972"/>
+        <location filename="../Project.py" line="982"/>
         <source>&amp;Authorization</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="989"/>
+        <location filename="../Project.py" line="999"/>
         <source>&amp;Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1031"/>
+        <location filename="../Project.py" line="1041"/>
         <source>Open with {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1046"/>
+        <location filename="../Project.py" line="1056"/>
         <source>New template...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1055"/>
+        <location filename="../Project.py" line="1065"/>
         <source>Update all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1058"/>
+        <location filename="../Project.py" line="1068"/>
         <source>Update selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1062"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1065"/>
+        <location filename="../Project.py" line="1075"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1069"/>
+        <location filename="../Project.py" line="1079"/>
         <source>Compile all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1072"/>
+        <location filename="../Project.py" line="1082"/>
         <source>Compile selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1166"/>
+        <location filename="../Project.py" line="1176"/>
         <source>New Form</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1133"/>
+        <location filename="../Project.py" line="1143"/>
         <source>The file already exists! Overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1166"/>
+        <location filename="../Project.py" line="1176"/>
         <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="1447"/>
+        <location filename="../Project.py" line="1457"/>
         <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="1518"/>
+        <location filename="../Project.py" line="1528"/>
         <source>Select Applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1518"/>
+        <location filename="../Project.py" line="1528"/>
         <source>Enter the list of applications separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1904"/>
+        <location filename="../Project.py" line="1974"/>
         <source>Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1644"/>
+        <location filename="../Project.py" line="1713"/>
         <source>Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1646"/>
+        <location filename="../Project.py" line="1715"/>
         <source>Start Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1646"/>
+        <location filename="../Project.py" line="1715"/>
         <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="1723"/>
+        <location filename="../Project.py" line="1792"/>
         <source>Start Django Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1768"/>
+        <location filename="../Project.py" line="1837"/>
         <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="1699"/>
+        <location filename="../Project.py" line="1768"/>
         <source>Django project created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1723"/>
+        <location filename="../Project.py" line="1792"/>
         <source>Enter the name of the new Django project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1751"/>
+        <location filename="../Project.py" line="1820"/>
         <source>Start Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1785"/>
+        <location filename="../Project.py" line="1854"/>
         <source>Django application created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1797"/>
+        <location filename="../Project.py" line="1866"/>
         <source>Start Global Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1797"/>
+        <location filename="../Project.py" line="1866"/>
         <source>Enter the name of the new global Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1819"/>
+        <location filename="../Project.py" line="1888"/>
         <source>Start Local Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1819"/>
+        <location filename="../Project.py" line="1888"/>
         <source>Enter the name of the new local Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1868"/>
+        <location filename="../Project.py" line="1937"/>
         <source>Select Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1868"/>
+        <location filename="../Project.py" line="1937"/>
         <source>Select the Django project to work with.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1902"/>
+        <location filename="../Project.py" line="1972"/>
         <source>None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1907"/>
+        <location filename="../Project.py" line="1977"/>
         <source>&amp;Current Django project ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3226"/>
+        <location filename="../Project.py" line="3315"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1981"/>
+        <location filename="../Project.py" line="2051"/>
         <source>The Django server could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2027"/>
+        <location filename="../Project.py" line="2097"/>
         <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="2835"/>
+        <location filename="../Project.py" line="2924"/>
         <source>The Django process could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2044"/>
+        <location filename="../Project.py" line="2114"/>
         <source>Introspect Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2073"/>
+        <location filename="../Project.py" line="2143"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2085"/>
+        <location filename="../Project.py" line="2155"/>
         <source>Database tables flushed successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2264"/>
+        <location filename="../Project.py" line="2334"/>
         <source>SQL Files (*.sql)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2596"/>
+        <location filename="../Project.py" line="2666"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2611"/>
+        <location filename="../Project.py" line="2681"/>
         <source>Cache tables created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2649"/>
+        <location filename="../Project.py" line="2719"/>
         <source>JSON Files (*.json)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2651"/>
+        <location filename="../Project.py" line="2721"/>
         <source>XML Files (*.xml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2653"/>
+        <location filename="../Project.py" line="2723"/>
         <source>YAML Files (*.yaml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2762"/>
+        <location filename="../Project.py" line="2851"/>
         <source>The Django test server could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2792"/>
+        <location filename="../Project.py" line="2881"/>
         <source>Enter the name of the user:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2862"/>
+        <location filename="../Project.py" line="2951"/>
         <source>Expired sessions cleared successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2931"/>
+        <location filename="../Project.py" line="3020"/>
         <source>Initializing message catalog for &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3190"/>
+        <location filename="../Project.py" line="3279"/>
         <source>No current site selected or no site created yet. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2951"/>
+        <location filename="../Project.py" line="3040"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3063"/>
+        <location filename="../Project.py" line="3152"/>
         <source>Updating message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3154"/>
+        <location filename="../Project.py" line="3243"/>
         <source>No locales detected. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3114"/>
+        <location filename="../Project.py" line="3203"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3095"/>
+        <location filename="../Project.py" line="3184"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3180"/>
+        <location filename="../Project.py" line="3269"/>
         <source>Compiling message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3197"/>
+        <location filename="../Project.py" line="3286"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3226"/>
+        <location filename="../Project.py" line="3315"/>
         <source>The translations editor process ({0}) could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="731"/>
+        <location filename="../Project.py" line="741"/>
         <source>Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="731"/>
+        <location filename="../Project.py" line="741"/>
         <source>&amp;Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="736"/>
+        <location filename="../Project.py" line="746"/>
         <source>Apply all available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="738"/>
+        <location filename="../Project.py" line="748"/>
         <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="2318"/>
+        <location filename="../Project.py" line="2388"/>
         <source>Apply Selected Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="750"/>
+        <location filename="../Project.py" line="760"/>
         <source>Apply selected migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="752"/>
+        <location filename="../Project.py" line="762"/>
         <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="2377"/>
+        <location filename="../Project.py" line="2447"/>
         <source>Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="761"/>
+        <location filename="../Project.py" line="771"/>
         <source>&amp;Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="766"/>
+        <location filename="../Project.py" line="776"/>
         <source>Unapply all migrations for an app</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="768"/>
+        <location filename="../Project.py" line="778"/>
         <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="2456"/>
+        <location filename="../Project.py" line="2526"/>
         <source>Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="776"/>
+        <location filename="../Project.py" line="786"/>
         <source>&amp;Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="781"/>
+        <location filename="../Project.py" line="791"/>
         <source>Generate migrations for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="783"/>
+        <location filename="../Project.py" line="793"/>
         <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="2488"/>
+        <location filename="../Project.py" line="2558"/>
         <source>No migrations available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2343"/>
+        <location filename="../Project.py" line="2413"/>
         <source>Apply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2377"/>
+        <location filename="../Project.py" line="2447"/>
         <source>Select an application:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2501"/>
+        <location filename="../Project.py" line="2571"/>
         <source>Squash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="790"/>
+        <location filename="../Project.py" line="800"/>
         <source>S&amp;quash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="795"/>
+        <location filename="../Project.py" line="805"/>
         <source>Squash migrations of an application of the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="797"/>
+        <location filename="../Project.py" line="807"/>
         <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="503"/>
+        <location filename="../Project.py" line="513"/>
         <source>Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="513"/>
         <source>&amp;Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="508"/>
+        <location filename="../Project.py" line="518"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="511"/>
+        <location filename="../Project.py" line="521"/>
         <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="520"/>
+        <location filename="../Project.py" line="530"/>
         <source>Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="530"/>
         <source>&amp;Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="525"/>
+        <location filename="../Project.py" line="535"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="528"/>
+        <location filename="../Project.py" line="538"/>
         <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="2246"/>
+        <location filename="../Project.py" line="2316"/>
         <source>SQL Migrate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3271"/>
+        <location filename="../Project.py" line="3360"/>
         <source>Check Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="296"/>
+        <location filename="../Project.py" line="306"/>
         <source>Inspects the Django project for common problems</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="298"/>
+        <location filename="../Project.py" line="308"/>
         <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="615"/>
+        <location filename="../Project.py" line="625"/>
         <source>Run Testsuite (-Wall)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="620"/>
+        <location filename="../Project.py" line="630"/>
         <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="623"/>
+        <location filename="../Project.py" line="633"/>
         <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>
@@ -1746,7 +1814,7 @@
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="389"/>
+        <location filename="../../PluginProjectDjango.py" line="391"/>
         <source>Django</source>
         <translation type="unfinished"></translation>
     </message>
--- a/ProjectDjango/i18n/django_en.ts	Sat Nov 04 15:22:22 2017 +0100
+++ b/ProjectDjango/i18n/django_en.ts	Sun Nov 12 14:56:13 2017 +0100
@@ -608,1137 +608,1205 @@
     </message>
 </context>
 <context>
+    <name>DjangoTestDataDialog</name>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="14"/>
+        <source>Django Test Data</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="23"/>
+        <source>Test Labels:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="30"/>
+        <source>Enter the tests to be performed separated by space</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="54"/>
+        <source>Tags:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="61"/>
+        <source>Enter the test tags to be run separated by space</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="71"/>
+        <source>Exclude Tags:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="78"/>
+        <source>Enter the test tags to be skipped separated by space</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="88"/>
+        <source>Select to keep the test database</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="91"/>
+        <source>Keep Test Database</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="98"/>
+        <source>Select to run the tests in reverse order</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="101"/>
+        <source>Run Tests in Reverse Order</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="40"/>
+        <source>Test File Pattern:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="47"/>
+        <source>Enter the test file pattern</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="129"/>
+        <location filename="../Project.py" line="139"/>
         <source>Current Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="134"/>
+        <location filename="../Project.py" line="144"/>
         <source>Selects the current project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="136"/>
+        <location filename="../Project.py" line="146"/>
         <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="149"/>
+        <location filename="../Project.py" line="159"/>
         <source>Start Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="149"/>
+        <location filename="../Project.py" line="159"/>
         <source>Start &amp;Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="154"/>
+        <location filename="../Project.py" line="164"/>
         <source>Starts a new Django project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="156"/>
+        <location filename="../Project.py" line="166"/>
         <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="164"/>
+        <location filename="../Project.py" line="174"/>
         <source>Start Application (global)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="164"/>
+        <location filename="../Project.py" line="174"/>
         <source>Start Application (&amp;global)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="169"/>
+        <location filename="../Project.py" line="179"/>
         <source>Starts a new global Django application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="171"/>
+        <location filename="../Project.py" line="181"/>
         <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="180"/>
+        <location filename="../Project.py" line="190"/>
         <source>Start Application (local)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="180"/>
+        <location filename="../Project.py" line="190"/>
         <source>Start Application (&amp;local)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="185"/>
+        <location filename="../Project.py" line="195"/>
         <source>Starts a new local Django application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="187"/>
+        <location filename="../Project.py" line="197"/>
         <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="200"/>
+        <location filename="../Project.py" line="210"/>
         <source>Run Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="200"/>
+        <location filename="../Project.py" line="210"/>
         <source>Run &amp;Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="205"/>
+        <location filename="../Project.py" line="215"/>
         <source>Starts the Django Web server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="207"/>
+        <location filename="../Project.py" line="217"/>
         <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="2027"/>
+        <location filename="../Project.py" line="2097"/>
         <source>Run Web-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="215"/>
+        <location filename="../Project.py" line="225"/>
         <source>Run &amp;Web-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="220"/>
+        <location filename="../Project.py" line="230"/>
         <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="223"/>
+        <location filename="../Project.py" line="233"/>
         <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="2589"/>
+        <location filename="../Project.py" line="2659"/>
         <source>Create Cache Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="235"/>
+        <location filename="../Project.py" line="245"/>
         <source>C&amp;reate Cache Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="240"/>
+        <location filename="../Project.py" line="250"/>
         <source>Creates the tables needed to use the SQL cache backend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="242"/>
+        <location filename="../Project.py" line="252"/>
         <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="255"/>
+        <location filename="../Project.py" line="265"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="255"/>
+        <location filename="../Project.py" line="265"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="260"/>
+        <location filename="../Project.py" line="270"/>
         <source>Shows the Django help index</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="262"/>
+        <location filename="../Project.py" line="272"/>
         <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="1447"/>
+        <location filename="../Project.py" line="1457"/>
         <source>About Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="273"/>
+        <location filename="../Project.py" line="283"/>
         <source>About D&amp;jango</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="278"/>
+        <location filename="../Project.py" line="288"/>
         <source>Shows some information about Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="280"/>
+        <location filename="../Project.py" line="290"/>
         <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="317"/>
+        <location filename="../Project.py" line="327"/>
         <source>Introspect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="327"/>
         <source>&amp;Introspect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="322"/>
+        <location filename="../Project.py" line="332"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="325"/>
+        <location filename="../Project.py" line="335"/>
         <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="333"/>
+        <location filename="../Project.py" line="343"/>
         <source>Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="343"/>
         <source>&amp;Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="338"/>
+        <location filename="../Project.py" line="348"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="341"/>
+        <location filename="../Project.py" line="351"/>
         <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="349"/>
+        <location filename="../Project.py" line="359"/>
         <source>Start Client Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="359"/>
         <source>Start &amp;Client Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="354"/>
+        <location filename="../Project.py" line="364"/>
         <source>Starts a console window for the database client</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="356"/>
+        <location filename="../Project.py" line="366"/>
         <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="2163"/>
+        <location filename="../Project.py" line="2233"/>
         <source>Create Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="367"/>
+        <location filename="../Project.py" line="377"/>
         <source>Create &amp;Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="372"/>
+        <location filename="../Project.py" line="382"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="375"/>
+        <location filename="../Project.py" line="385"/>
         <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="2172"/>
+        <location filename="../Project.py" line="2242"/>
         <source>Create Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="384"/>
+        <location filename="../Project.py" line="394"/>
         <source>Create &amp;Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="389"/>
+        <location filename="../Project.py" line="399"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="392"/>
+        <location filename="../Project.py" line="402"/>
         <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="2181"/>
+        <location filename="../Project.py" line="2251"/>
         <source>Create Everything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="401"/>
+        <location filename="../Project.py" line="411"/>
         <source>Create &amp;Everything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="406"/>
+        <location filename="../Project.py" line="416"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="409"/>
+        <location filename="../Project.py" line="419"/>
         <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="2190"/>
+        <location filename="../Project.py" line="2260"/>
         <source>Custom Statements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="418"/>
+        <location filename="../Project.py" line="428"/>
         <source>&amp;Custom Statements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="423"/>
+        <location filename="../Project.py" line="433"/>
         <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="426"/>
+        <location filename="../Project.py" line="436"/>
         <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="2199"/>
+        <location filename="../Project.py" line="2269"/>
         <source>Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="435"/>
+        <location filename="../Project.py" line="445"/>
         <source>&amp;Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="440"/>
+        <location filename="../Project.py" line="450"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="443"/>
+        <location filename="../Project.py" line="453"/>
         <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="2215"/>
+        <location filename="../Project.py" line="2285"/>
         <source>Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="469"/>
+        <location filename="../Project.py" line="479"/>
         <source>&amp;Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="474"/>
+        <location filename="../Project.py" line="484"/>
         <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="477"/>
+        <location filename="../Project.py" line="487"/>
         <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="2222"/>
+        <location filename="../Project.py" line="2292"/>
         <source>Reset Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="486"/>
+        <location filename="../Project.py" line="496"/>
         <source>Reset &amp;Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="491"/>
+        <location filename="../Project.py" line="501"/>
         <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="494"/>
+        <location filename="../Project.py" line="504"/>
         <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="2533"/>
+        <location filename="../Project.py" line="2603"/>
         <source>Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="541"/>
+        <location filename="../Project.py" line="551"/>
         <source>&amp;Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="546"/>
+        <location filename="../Project.py" line="556"/>
         <source>Shows the modification made to the settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="548"/>
+        <location filename="../Project.py" line="558"/>
         <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="555"/>
+        <location filename="../Project.py" line="565"/>
         <source>Start Python Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="555"/>
+        <location filename="../Project.py" line="565"/>
         <source>Start &amp;Python Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="560"/>
+        <location filename="../Project.py" line="570"/>
         <source>Starts a Python interactive interpreter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="562"/>
+        <location filename="../Project.py" line="572"/>
         <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="2626"/>
+        <location filename="../Project.py" line="2696"/>
         <source>Dump Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="573"/>
+        <location filename="../Project.py" line="583"/>
         <source>&amp;Dump Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="578"/>
+        <location filename="../Project.py" line="588"/>
         <source>Dump the database data to a fixture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="580"/>
+        <location filename="../Project.py" line="590"/>
         <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="2665"/>
+        <location filename="../Project.py" line="2735"/>
         <source>Load Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="587"/>
+        <location filename="../Project.py" line="597"/>
         <source>&amp;Load Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="592"/>
+        <location filename="../Project.py" line="602"/>
         <source>Load data from fixture files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="594"/>
+        <location filename="../Project.py" line="604"/>
         <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="601"/>
+        <location filename="../Project.py" line="611"/>
         <source>Run Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="601"/>
+        <location filename="../Project.py" line="611"/>
         <source>Run &amp;Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="606"/>
+        <location filename="../Project.py" line="616"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="608"/>
+        <location filename="../Project.py" line="618"/>
         <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="632"/>
+        <location filename="../Project.py" line="642"/>
         <source>Run Testserver</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="632"/>
+        <location filename="../Project.py" line="642"/>
         <source>Run Test&amp;server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="637"/>
+        <location filename="../Project.py" line="647"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="639"/>
+        <location filename="../Project.py" line="649"/>
         <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="814"/>
+        <location filename="../Project.py" line="824"/>
         <source>D&amp;jango</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="856"/>
+        <location filename="../Project.py" line="866"/>
         <source>&amp;Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="878"/>
+        <location filename="../Project.py" line="888"/>
         <source>Show &amp;SQL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="933"/>
+        <location filename="../Project.py" line="943"/>
         <source>&amp;Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="951"/>
+        <location filename="../Project.py" line="961"/>
         <source>T&amp;esting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1046"/>
+        <location filename="../Project.py" line="1056"/>
         <source>New template...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1055"/>
+        <location filename="../Project.py" line="1065"/>
         <source>Update all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1058"/>
+        <location filename="../Project.py" line="1068"/>
         <source>Update selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1062"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1065"/>
+        <location filename="../Project.py" line="1075"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1069"/>
+        <location filename="../Project.py" line="1079"/>
         <source>Compile all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1072"/>
+        <location filename="../Project.py" line="1082"/>
         <source>Compile selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1166"/>
+        <location filename="../Project.py" line="1176"/>
         <source>New Form</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1133"/>
+        <location filename="../Project.py" line="1143"/>
         <source>The file already exists! Overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1518"/>
+        <location filename="../Project.py" line="1528"/>
         <source>Select Applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1518"/>
+        <location filename="../Project.py" line="1528"/>
         <source>Enter the list of applications separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1904"/>
+        <location filename="../Project.py" line="1974"/>
         <source>Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1644"/>
+        <location filename="../Project.py" line="1713"/>
         <source>Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1646"/>
+        <location filename="../Project.py" line="1715"/>
         <source>Start Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1646"/>
+        <location filename="../Project.py" line="1715"/>
         <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="1723"/>
+        <location filename="../Project.py" line="1792"/>
         <source>Start Django Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1699"/>
+        <location filename="../Project.py" line="1768"/>
         <source>Django project created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1723"/>
+        <location filename="../Project.py" line="1792"/>
         <source>Enter the name of the new Django project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1751"/>
+        <location filename="../Project.py" line="1820"/>
         <source>Start Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1785"/>
+        <location filename="../Project.py" line="1854"/>
         <source>Django application created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1797"/>
+        <location filename="../Project.py" line="1866"/>
         <source>Start Global Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1797"/>
+        <location filename="../Project.py" line="1866"/>
         <source>Enter the name of the new global Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1819"/>
+        <location filename="../Project.py" line="1888"/>
         <source>Start Local Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1819"/>
+        <location filename="../Project.py" line="1888"/>
         <source>Enter the name of the new local Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1868"/>
+        <location filename="../Project.py" line="1937"/>
         <source>Select Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1868"/>
+        <location filename="../Project.py" line="1937"/>
         <source>Select the Django project to work with.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1902"/>
+        <location filename="../Project.py" line="1972"/>
         <source>None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1907"/>
+        <location filename="../Project.py" line="1977"/>
         <source>&amp;Current Django project ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3226"/>
+        <location filename="../Project.py" line="3315"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1981"/>
+        <location filename="../Project.py" line="2051"/>
         <source>The Django server could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2027"/>
+        <location filename="../Project.py" line="2097"/>
         <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="2835"/>
+        <location filename="../Project.py" line="2924"/>
         <source>The Django process could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2044"/>
+        <location filename="../Project.py" line="2114"/>
         <source>Introspect Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2073"/>
+        <location filename="../Project.py" line="2143"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2085"/>
+        <location filename="../Project.py" line="2155"/>
         <source>Database tables flushed successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2264"/>
+        <location filename="../Project.py" line="2334"/>
         <source>SQL Files (*.sql)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2596"/>
+        <location filename="../Project.py" line="2666"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2611"/>
+        <location filename="../Project.py" line="2681"/>
         <source>Cache tables created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2649"/>
+        <location filename="../Project.py" line="2719"/>
         <source>JSON Files (*.json)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2651"/>
+        <location filename="../Project.py" line="2721"/>
         <source>XML Files (*.xml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2653"/>
+        <location filename="../Project.py" line="2723"/>
         <source>YAML Files (*.yaml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2762"/>
+        <location filename="../Project.py" line="2851"/>
         <source>The Django test server could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2931"/>
+        <location filename="../Project.py" line="3020"/>
         <source>Initializing message catalog for &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3190"/>
+        <location filename="../Project.py" line="3279"/>
         <source>No current site selected or no site created yet. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2951"/>
+        <location filename="../Project.py" line="3040"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3063"/>
+        <location filename="../Project.py" line="3152"/>
         <source>Updating message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3154"/>
+        <location filename="../Project.py" line="3243"/>
         <source>No locales detected. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3114"/>
+        <location filename="../Project.py" line="3203"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3095"/>
+        <location filename="../Project.py" line="3184"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3180"/>
+        <location filename="../Project.py" line="3269"/>
         <source>Compiling message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3197"/>
+        <location filename="../Project.py" line="3286"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2792"/>
+        <location filename="../Project.py" line="2881"/>
         <source>Change Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="651"/>
+        <location filename="../Project.py" line="661"/>
         <source>Change &amp;Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="656"/>
+        <location filename="../Project.py" line="666"/>
         <source>Change the password of a user</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="658"/>
+        <location filename="../Project.py" line="668"/>
         <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="665"/>
+        <location filename="../Project.py" line="675"/>
         <source>Create Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="665"/>
+        <location filename="../Project.py" line="675"/>
         <source>Create &amp;Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="670"/>
+        <location filename="../Project.py" line="680"/>
         <source>Create a superuser account</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="672"/>
+        <location filename="../Project.py" line="682"/>
         <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="2850"/>
+        <location filename="../Project.py" line="2939"/>
         <source>Clear Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="683"/>
+        <location filename="../Project.py" line="693"/>
         <source>Clear &amp;Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="688"/>
+        <location filename="../Project.py" line="698"/>
         <source>Clear expired sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="690"/>
+        <location filename="../Project.py" line="700"/>
         <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="972"/>
+        <location filename="../Project.py" line="982"/>
         <source>&amp;Authorization</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="989"/>
+        <location filename="../Project.py" line="999"/>
         <source>&amp;Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2792"/>
+        <location filename="../Project.py" line="2881"/>
         <source>Enter the name of the user:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2862"/>
+        <location filename="../Project.py" line="2951"/>
         <source>Expired sessions cleared successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1447"/>
+        <location filename="../Project.py" line="1457"/>
         <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="1768"/>
+        <location filename="../Project.py" line="1837"/>
         <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="1031"/>
+        <location filename="../Project.py" line="1041"/>
         <source>Open with {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3226"/>
+        <location filename="../Project.py" line="3315"/>
         <source>The translations editor process ({0}) could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1166"/>
+        <location filename="../Project.py" line="1176"/>
         <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="2208"/>
+        <location filename="../Project.py" line="2278"/>
         <source>Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="452"/>
+        <location filename="../Project.py" line="462"/>
         <source>&amp;Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="457"/>
+        <location filename="../Project.py" line="467"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="460"/>
+        <location filename="../Project.py" line="470"/>
         <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="701"/>
+        <location filename="../Project.py" line="711"/>
         <source>Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="701"/>
+        <location filename="../Project.py" line="711"/>
         <source>&amp;Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <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="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="716"/>
+        <source>Show a list of available migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="718"/>
+        <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="726"/>
         <source>Show Migrations Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="716"/>
+        <location filename="../Project.py" line="726"/>
         <source>Show Migrations &amp;Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <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="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="908"/>
-        <source>&amp;Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="731"/>
-        <source>Apply All Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project.py" line="731"/>
+        <source>Show a list with the migrations plan</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="733"/>
+        <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="918"/>
+        <source>&amp;Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="741"/>
+        <source>Apply All Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="741"/>
         <source>&amp;Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="736"/>
+        <location filename="../Project.py" line="746"/>
         <source>Apply all available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="738"/>
+        <location filename="../Project.py" line="748"/>
         <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="2318"/>
+        <location filename="../Project.py" line="2388"/>
         <source>Apply Selected Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="750"/>
+        <location filename="../Project.py" line="760"/>
         <source>Apply selected migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="752"/>
+        <location filename="../Project.py" line="762"/>
         <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="2377"/>
+        <location filename="../Project.py" line="2447"/>
         <source>Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="761"/>
+        <location filename="../Project.py" line="771"/>
         <source>&amp;Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="766"/>
+        <location filename="../Project.py" line="776"/>
         <source>Unapply all migrations for an app</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="768"/>
+        <location filename="../Project.py" line="778"/>
         <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="2456"/>
+        <location filename="../Project.py" line="2526"/>
         <source>Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="776"/>
+        <location filename="../Project.py" line="786"/>
         <source>&amp;Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="781"/>
+        <location filename="../Project.py" line="791"/>
         <source>Generate migrations for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="783"/>
+        <location filename="../Project.py" line="793"/>
         <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="2488"/>
+        <location filename="../Project.py" line="2558"/>
         <source>No migrations available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2343"/>
+        <location filename="../Project.py" line="2413"/>
         <source>Apply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2377"/>
+        <location filename="../Project.py" line="2447"/>
         <source>Select an application:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2501"/>
+        <location filename="../Project.py" line="2571"/>
         <source>Squash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="790"/>
+        <location filename="../Project.py" line="800"/>
         <source>S&amp;quash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="795"/>
+        <location filename="../Project.py" line="805"/>
         <source>Squash migrations of an application of the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="797"/>
+        <location filename="../Project.py" line="807"/>
         <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="503"/>
+        <location filename="../Project.py" line="513"/>
         <source>Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="513"/>
         <source>&amp;Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="508"/>
+        <location filename="../Project.py" line="518"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="511"/>
+        <location filename="../Project.py" line="521"/>
         <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="520"/>
+        <location filename="../Project.py" line="530"/>
         <source>Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="530"/>
         <source>&amp;Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="525"/>
+        <location filename="../Project.py" line="535"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="528"/>
+        <location filename="../Project.py" line="538"/>
         <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="2246"/>
+        <location filename="../Project.py" line="2316"/>
         <source>SQL Migrate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3271"/>
+        <location filename="../Project.py" line="3360"/>
         <source>Check Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="296"/>
+        <location filename="../Project.py" line="306"/>
         <source>Inspects the Django project for common problems</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="298"/>
+        <location filename="../Project.py" line="308"/>
         <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="615"/>
+        <location filename="../Project.py" line="625"/>
         <source>Run Testsuite (-Wall)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="620"/>
+        <location filename="../Project.py" line="630"/>
         <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="623"/>
+        <location filename="../Project.py" line="633"/>
         <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>
@@ -1746,7 +1814,7 @@
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="389"/>
+        <location filename="../../PluginProjectDjango.py" line="391"/>
         <source>Django</source>
         <translation type="unfinished"></translation>
     </message>
--- a/ProjectDjango/i18n/django_es.ts	Sat Nov 04 15:22:22 2017 +0100
+++ b/ProjectDjango/i18n/django_es.ts	Sun Nov 12 14:56:13 2017 +0100
@@ -613,149 +613,217 @@
     </message>
 </context>
 <context>
+    <name>DjangoTestDataDialog</name>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="14"/>
+        <source>Django Test Data</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="23"/>
+        <source>Test Labels:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="30"/>
+        <source>Enter the tests to be performed separated by space</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="54"/>
+        <source>Tags:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="61"/>
+        <source>Enter the test tags to be run separated by space</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="71"/>
+        <source>Exclude Tags:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="78"/>
+        <source>Enter the test tags to be skipped separated by space</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="88"/>
+        <source>Select to keep the test database</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="91"/>
+        <source>Keep Test Database</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="98"/>
+        <source>Select to run the tests in reverse order</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="101"/>
+        <source>Run Tests in Reverse Order</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="40"/>
+        <source>Test File Pattern:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="47"/>
+        <source>Enter the test file pattern</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="814"/>
+        <location filename="../Project.py" line="824"/>
         <source>D&amp;jango</source>
         <translation>D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1166"/>
+        <location filename="../Project.py" line="1176"/>
         <source>New Form</source>
         <translation>Nuevo Formulario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1133"/>
+        <location filename="../Project.py" line="1143"/>
         <source>The file already exists! Overwrite it?</source>
         <translation>¡El archivo ya existe! ¿Sobreescribirlo?</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="129"/>
+        <location filename="../Project.py" line="139"/>
         <source>Current Project</source>
         <translation>Proyecto actual</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="134"/>
+        <location filename="../Project.py" line="144"/>
         <source>Selects the current project</source>
         <translation>Selecciona el proyecto actual</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="149"/>
+        <location filename="../Project.py" line="159"/>
         <source>Start Project</source>
         <translation>Iniciar Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="149"/>
+        <location filename="../Project.py" line="159"/>
         <source>Start &amp;Project</source>
         <translation>Iniciar &amp;Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="154"/>
+        <location filename="../Project.py" line="164"/>
         <source>Starts a new Django project</source>
         <translation>Inicia un nuevo proyecto Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="156"/>
+        <location filename="../Project.py" line="166"/>
         <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="164"/>
+        <location filename="../Project.py" line="174"/>
         <source>Start Application (global)</source>
         <translation>Iniciar Aplicación (global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="164"/>
+        <location filename="../Project.py" line="174"/>
         <source>Start Application (&amp;global)</source>
         <translation>Iniciar Aplicación (&amp;global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="169"/>
+        <location filename="../Project.py" line="179"/>
         <source>Starts a new global Django application</source>
         <translation>Inicia una nueva aplicación global Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="171"/>
+        <location filename="../Project.py" line="181"/>
         <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="180"/>
+        <location filename="../Project.py" line="190"/>
         <source>Start Application (local)</source>
         <translation>Iniciar Aplicación (local)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="180"/>
+        <location filename="../Project.py" line="190"/>
         <source>Start Application (&amp;local)</source>
         <translation>Iniciar Aplicación (&amp;local)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="185"/>
+        <location filename="../Project.py" line="195"/>
         <source>Starts a new local Django application</source>
         <translation>Inicia una nueva aplicación local Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="187"/>
+        <location filename="../Project.py" line="197"/>
         <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="200"/>
+        <location filename="../Project.py" line="210"/>
         <source>Run Server</source>
         <translation>Ejecutar Servidor</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="200"/>
+        <location filename="../Project.py" line="210"/>
         <source>Run &amp;Server</source>
         <translation>Ejecutar &amp;Servidor</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="205"/>
+        <location filename="../Project.py" line="215"/>
         <source>Starts the Django Web server</source>
         <translation>Inicia el servidor Web Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="207"/>
+        <location filename="../Project.py" line="217"/>
         <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="2027"/>
+        <location filename="../Project.py" line="2097"/>
         <source>Run Web-Browser</source>
         <translation>Ejecutar Navegador Web</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="215"/>
+        <location filename="../Project.py" line="225"/>
         <source>Run &amp;Web-Browser</source>
         <translation>Ejecutar Navegador &amp;Web</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="220"/>
+        <location filename="../Project.py" line="230"/>
         <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="223"/>
+        <location filename="../Project.py" line="233"/>
         <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="1447"/>
+        <location filename="../Project.py" line="1457"/>
         <source>About Django</source>
         <translation>Acerca de Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="273"/>
+        <location filename="../Project.py" line="283"/>
         <source>About D&amp;jango</source>
         <translation>Acerca de D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="278"/>
+        <location filename="../Project.py" line="288"/>
         <source>Shows some information about Django</source>
         <translation>Muestra información sobre Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="280"/>
+        <location filename="../Project.py" line="290"/>
         <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>
@@ -780,993 +848,993 @@
         <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="856"/>
+        <location filename="../Project.py" line="866"/>
         <source>&amp;Database</source>
         <translation>Base de &amp;Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1904"/>
+        <location filename="../Project.py" line="1974"/>
         <source>Project</source>
         <translation>Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1644"/>
+        <location filename="../Project.py" line="1713"/>
         <source>Application</source>
         <translation>Aplicación</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1646"/>
+        <location filename="../Project.py" line="1715"/>
         <source>Start Django</source>
         <translation>Iniciar Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1646"/>
+        <location filename="../Project.py" line="1715"/>
         <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="1723"/>
+        <location filename="../Project.py" line="1792"/>
         <source>Start Django Project</source>
         <translation>Iniciar Proyecto Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1699"/>
+        <location filename="../Project.py" line="1768"/>
         <source>Django project created successfully.</source>
         <translation>Proyecto Django creado correctamente.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1723"/>
+        <location filename="../Project.py" line="1792"/>
         <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="1751"/>
+        <location filename="../Project.py" line="1820"/>
         <source>Start Django Application</source>
         <translation>Iniciar Aplicación Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1785"/>
+        <location filename="../Project.py" line="1854"/>
         <source>Django application created successfully.</source>
         <translation>Aplicación Django creada correctamente.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1868"/>
+        <location filename="../Project.py" line="1937"/>
         <source>Select Project</source>
         <translation>Seleccionar Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1868"/>
+        <location filename="../Project.py" line="1937"/>
         <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="1902"/>
+        <location filename="../Project.py" line="1972"/>
         <source>None</source>
         <translation>Ninguno</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3226"/>
+        <location filename="../Project.py" line="3315"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1981"/>
+        <location filename="../Project.py" line="2051"/>
         <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="2027"/>
+        <location filename="../Project.py" line="2097"/>
         <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="2835"/>
+        <location filename="../Project.py" line="2924"/>
         <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="136"/>
+        <location filename="../Project.py" line="146"/>
         <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="2533"/>
+        <location filename="../Project.py" line="2603"/>
         <source>Diff Settings</source>
         <translation>Configuración de Diff</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="541"/>
+        <location filename="../Project.py" line="551"/>
         <source>&amp;Diff Settings</source>
         <translation>Configuración de &amp;Diff</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="546"/>
+        <location filename="../Project.py" line="556"/>
         <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="548"/>
+        <location filename="../Project.py" line="558"/>
         <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="933"/>
+        <location filename="../Project.py" line="943"/>
         <source>&amp;Tools</source>
         <translation>Herramien&amp;tas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1518"/>
+        <location filename="../Project.py" line="1528"/>
         <source>Select Applications</source>
         <translation>Seleccionar Aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1518"/>
+        <location filename="../Project.py" line="1528"/>
         <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="1907"/>
+        <location filename="../Project.py" line="1977"/>
         <source>&amp;Current Django project ({0})</source>
         <translation>Proyec&amp;to Django actual ({0})</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="555"/>
+        <location filename="../Project.py" line="565"/>
         <source>Start Python Console</source>
         <translation>Iniciar Consola de Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="555"/>
+        <location filename="../Project.py" line="565"/>
         <source>Start &amp;Python Console</source>
         <translation>Iniciar Consola de &amp;Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="560"/>
+        <location filename="../Project.py" line="570"/>
         <source>Starts a Python interactive interpreter</source>
         <translation>Inicia un intérprete interactivo de Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="562"/>
+        <location filename="../Project.py" line="572"/>
         <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="2589"/>
+        <location filename="../Project.py" line="2659"/>
         <source>Create Cache Tables</source>
         <translation>Crear Tablas de Caché</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="235"/>
+        <location filename="../Project.py" line="245"/>
         <source>C&amp;reate Cache Tables</source>
         <translation>C&amp;rear Tablas de Caché</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="240"/>
+        <location filename="../Project.py" line="250"/>
         <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="242"/>
+        <location filename="../Project.py" line="252"/>
         <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="2596"/>
+        <location filename="../Project.py" line="2666"/>
         <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="2611"/>
+        <location filename="../Project.py" line="2681"/>
         <source>Cache tables created successfully.</source>
         <translation>Tablas de caché creadas con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="327"/>
         <source>Introspect</source>
         <translation>Introspección</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="327"/>
         <source>&amp;Introspect</source>
         <translation>&amp;Introspección</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="322"/>
+        <location filename="../Project.py" line="332"/>
         <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="325"/>
+        <location filename="../Project.py" line="335"/>
         <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="2044"/>
+        <location filename="../Project.py" line="2114"/>
         <source>Introspect Database</source>
         <translation>Introspección de Base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="343"/>
         <source>Flush</source>
         <translation>Flush</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="343"/>
         <source>&amp;Flush</source>
         <translation>&amp;Flush</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="338"/>
+        <location filename="../Project.py" line="348"/>
         <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="341"/>
+        <location filename="../Project.py" line="351"/>
         <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="2215"/>
+        <location filename="../Project.py" line="2285"/>
         <source>Flush Database</source>
         <translation>Hacer Flush de la base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2073"/>
+        <location filename="../Project.py" line="2143"/>
         <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="2085"/>
+        <location filename="../Project.py" line="2155"/>
         <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="349"/>
+        <location filename="../Project.py" line="359"/>
         <source>Start Client Console</source>
         <translation>Iniciar Consola de Cliente</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="354"/>
+        <location filename="../Project.py" line="364"/>
         <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="356"/>
+        <location filename="../Project.py" line="366"/>
         <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="349"/>
+        <location filename="../Project.py" line="359"/>
         <source>Start &amp;Client Console</source>
         <translation>Iniciar Consola de &amp;Cliente</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2163"/>
+        <location filename="../Project.py" line="2233"/>
         <source>Create Tables</source>
         <translation>Crear Tablas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="367"/>
+        <location filename="../Project.py" line="377"/>
         <source>Create &amp;Tables</source>
         <translation>Crear &amp;Tablas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="372"/>
+        <location filename="../Project.py" line="382"/>
         <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="375"/>
+        <location filename="../Project.py" line="385"/>
         <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="878"/>
+        <location filename="../Project.py" line="888"/>
         <source>Show &amp;SQL</source>
         <translation>Mostrar &amp;SQL</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2172"/>
+        <location filename="../Project.py" line="2242"/>
         <source>Create Indexes</source>
         <translation>Crear Índices</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="384"/>
+        <location filename="../Project.py" line="394"/>
         <source>Create &amp;Indexes</source>
         <translation>Crear &amp;Índices</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="392"/>
+        <location filename="../Project.py" line="402"/>
         <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="2181"/>
+        <location filename="../Project.py" line="2251"/>
         <source>Create Everything</source>
         <translation>Crear Todo</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="401"/>
+        <location filename="../Project.py" line="411"/>
         <source>Create &amp;Everything</source>
         <translation>Cr&amp;ear Todo</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="406"/>
+        <location filename="../Project.py" line="416"/>
         <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="409"/>
+        <location filename="../Project.py" line="419"/>
         <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="389"/>
+        <location filename="../Project.py" line="399"/>
         <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="2190"/>
+        <location filename="../Project.py" line="2260"/>
         <source>Custom Statements</source>
         <translation>Sentencias Personalizadas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="418"/>
+        <location filename="../Project.py" line="428"/>
         <source>&amp;Custom Statements</source>
         <translation>Sentencias &amp;Personalizadas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="423"/>
+        <location filename="../Project.py" line="433"/>
         <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="426"/>
+        <location filename="../Project.py" line="436"/>
         <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="2199"/>
+        <location filename="../Project.py" line="2269"/>
         <source>Drop Tables</source>
         <translation>Borrar Tablas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="435"/>
+        <location filename="../Project.py" line="445"/>
         <source>&amp;Drop Tables</source>
         <translation>&amp;Borrar Tablas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="440"/>
+        <location filename="../Project.py" line="450"/>
         <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="443"/>
+        <location filename="../Project.py" line="453"/>
         <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="469"/>
+        <location filename="../Project.py" line="479"/>
         <source>&amp;Flush Database</source>
         <translation>Hacer &amp;Flush de la base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="474"/>
+        <location filename="../Project.py" line="484"/>
         <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="477"/>
+        <location filename="../Project.py" line="487"/>
         <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="2222"/>
+        <location filename="../Project.py" line="2292"/>
         <source>Reset Sequences</source>
         <translation>Resetear Secuencias</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="486"/>
+        <location filename="../Project.py" line="496"/>
         <source>Reset &amp;Sequences</source>
         <translation>Resetear &amp;Secuencias</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="491"/>
+        <location filename="../Project.py" line="501"/>
         <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="494"/>
+        <location filename="../Project.py" line="504"/>
         <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="2626"/>
+        <location filename="../Project.py" line="2696"/>
         <source>Dump Data</source>
         <translation>Volcado de Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="573"/>
+        <location filename="../Project.py" line="583"/>
         <source>&amp;Dump Data</source>
         <translation>&amp;Volcado de Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="578"/>
+        <location filename="../Project.py" line="588"/>
         <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="580"/>
+        <location filename="../Project.py" line="590"/>
         <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="951"/>
+        <location filename="../Project.py" line="961"/>
         <source>T&amp;esting</source>
         <translation>T&amp;esting</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2264"/>
+        <location filename="../Project.py" line="2334"/>
         <source>SQL Files (*.sql)</source>
         <translation>Archivos SQL (*.sql)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2649"/>
+        <location filename="../Project.py" line="2719"/>
         <source>JSON Files (*.json)</source>
         <translation>Archivos JSON (*.json)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2651"/>
+        <location filename="../Project.py" line="2721"/>
         <source>XML Files (*.xml)</source>
         <translation>Archivos XML (*.xml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2653"/>
+        <location filename="../Project.py" line="2723"/>
         <source>YAML Files (*.yaml)</source>
         <translation>Archivos YAML (*.yaml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2665"/>
+        <location filename="../Project.py" line="2735"/>
         <source>Load Data</source>
         <translation>Cargar Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="587"/>
+        <location filename="../Project.py" line="597"/>
         <source>&amp;Load Data</source>
         <translation>&amp;Cargar Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="592"/>
+        <location filename="../Project.py" line="602"/>
         <source>Load data from fixture files</source>
         <translation>Cargar datos desde archivos de fixture</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="594"/>
+        <location filename="../Project.py" line="604"/>
         <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="601"/>
+        <location filename="../Project.py" line="611"/>
         <source>Run Testsuite</source>
         <translation>Ejecutar Testsuite</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="601"/>
+        <location filename="../Project.py" line="611"/>
         <source>Run &amp;Testsuite</source>
         <translation>Ejecutar &amp;Testsuite</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="606"/>
+        <location filename="../Project.py" line="616"/>
         <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="608"/>
+        <location filename="../Project.py" line="618"/>
         <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="632"/>
+        <location filename="../Project.py" line="642"/>
         <source>Run Testserver</source>
         <translation>Ejecutar Testserver</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="632"/>
+        <location filename="../Project.py" line="642"/>
         <source>Run Test&amp;server</source>
         <translation>Ejecutar Test&amp;server</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="637"/>
+        <location filename="../Project.py" line="647"/>
         <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="639"/>
+        <location filename="../Project.py" line="649"/>
         <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="2762"/>
+        <location filename="../Project.py" line="2851"/>
         <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="255"/>
+        <location filename="../Project.py" line="265"/>
         <source>Help</source>
         <translation>Ayuda</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="255"/>
+        <location filename="../Project.py" line="265"/>
         <source>&amp;Help</source>
         <translation>&amp;Ayuda</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="260"/>
+        <location filename="../Project.py" line="270"/>
         <source>Shows the Django help index</source>
         <translation>Muestra el índice de ayuda de Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="262"/>
+        <location filename="../Project.py" line="272"/>
         <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="1046"/>
+        <location filename="../Project.py" line="1056"/>
         <source>New template...</source>
         <translation>Nueva plantilla...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1055"/>
+        <location filename="../Project.py" line="1065"/>
         <source>Update all catalogs</source>
         <translation>Actualizar todos los catálogos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1058"/>
+        <location filename="../Project.py" line="1068"/>
         <source>Update selected catalogs</source>
         <translation>Actualizar los catálogos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1069"/>
+        <location filename="../Project.py" line="1079"/>
         <source>Compile all catalogs</source>
         <translation>Compilar todos los catálogos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1072"/>
+        <location filename="../Project.py" line="1082"/>
         <source>Compile selected catalogs</source>
         <translation>Compilar los catálogos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2931"/>
+        <location filename="../Project.py" line="3020"/>
         <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="3190"/>
+        <location filename="../Project.py" line="3279"/>
         <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="2951"/>
+        <location filename="../Project.py" line="3040"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation>Catálogo de mensajes iniciado con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3063"/>
+        <location filename="../Project.py" line="3152"/>
         <source>Updating message catalogs</source>
         <translation>Actualizando catálogos de mensajes</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3154"/>
+        <location filename="../Project.py" line="3243"/>
         <source>No locales detected. Aborting...</source>
         <translation>No se ha detectado ningún idioma. Abortando...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3114"/>
+        <location filename="../Project.py" line="3203"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation>
 Catálogos de mensajes actualizados con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3180"/>
+        <location filename="../Project.py" line="3269"/>
         <source>Compiling message catalogs</source>
         <translation>Compilando catálogos de mensajes</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3197"/>
+        <location filename="../Project.py" line="3286"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation>
 Catálogos de mensajes compilados con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1062"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation>Acutalizar todos los catálogos (con obsoletos)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1065"/>
+        <location filename="../Project.py" line="1075"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation>Actualizar los catálogos seleccionados (con obsoletos)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1797"/>
+        <location filename="../Project.py" line="1866"/>
         <source>Start Global Django Application</source>
         <translation>Iniciar Aplicación Global Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1797"/>
+        <location filename="../Project.py" line="1866"/>
         <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="1819"/>
+        <location filename="../Project.py" line="1888"/>
         <source>Start Local Django Application</source>
         <translation>Iniciar Aplicación Local Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1819"/>
+        <location filename="../Project.py" line="1888"/>
         <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="3095"/>
+        <location filename="../Project.py" line="3184"/>
         <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="2792"/>
+        <location filename="../Project.py" line="2881"/>
         <source>Change Password</source>
         <translation>Cambiar Contraseña</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="651"/>
+        <location filename="../Project.py" line="661"/>
         <source>Change &amp;Password</source>
         <translation>Cambiar C&amp;ontraseña</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="656"/>
+        <location filename="../Project.py" line="666"/>
         <source>Change the password of a user</source>
         <translation>Cambiar la contraseña de un usuario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="658"/>
+        <location filename="../Project.py" line="668"/>
         <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="665"/>
+        <location filename="../Project.py" line="675"/>
         <source>Create Superuser</source>
         <translation>Crear Superusuario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="665"/>
+        <location filename="../Project.py" line="675"/>
         <source>Create &amp;Superuser</source>
         <translation>Crear &amp;Superusuario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="670"/>
+        <location filename="../Project.py" line="680"/>
         <source>Create a superuser account</source>
         <translation>Crear una cuenta de superusuario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="672"/>
+        <location filename="../Project.py" line="682"/>
         <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="2850"/>
+        <location filename="../Project.py" line="2939"/>
         <source>Clear Sessions</source>
         <translation>Limpiar Sesiones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="683"/>
+        <location filename="../Project.py" line="693"/>
         <source>Clear &amp;Sessions</source>
         <translation>Limpiar &amp;Sesiones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="688"/>
+        <location filename="../Project.py" line="698"/>
         <source>Clear expired sessions</source>
         <translation>Limpiar sesiones expiradas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="690"/>
+        <location filename="../Project.py" line="700"/>
         <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="972"/>
+        <location filename="../Project.py" line="982"/>
         <source>&amp;Authorization</source>
         <translation>&amp;Autorización</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="989"/>
+        <location filename="../Project.py" line="999"/>
         <source>&amp;Session</source>
         <translation>&amp;Sesión</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2792"/>
+        <location filename="../Project.py" line="2881"/>
         <source>Enter the name of the user:</source>
         <translation>Introducir el nombre del usuario:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2862"/>
+        <location filename="../Project.py" line="2951"/>
         <source>Expired sessions cleared successfully.</source>
         <translation>Sesiones expiradas limpiadas con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1447"/>
+        <location filename="../Project.py" line="1457"/>
         <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="1768"/>
+        <location filename="../Project.py" line="1837"/>
         <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="1031"/>
+        <location filename="../Project.py" line="1041"/>
         <source>Open with {0}</source>
         <translation>Abrir con {0}</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3226"/>
+        <location filename="../Project.py" line="3315"/>
         <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="1166"/>
+        <location filename="../Project.py" line="1176"/>
         <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="2208"/>
+        <location filename="../Project.py" line="2278"/>
         <source>Drop Indexes</source>
         <translation>Borrar Índices</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="452"/>
+        <location filename="../Project.py" line="462"/>
         <source>&amp;Drop Indexes</source>
         <translation>Borrar Ín&amp;dices</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="457"/>
+        <location filename="../Project.py" line="467"/>
         <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="460"/>
+        <location filename="../Project.py" line="470"/>
         <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="701"/>
+        <location filename="../Project.py" line="711"/>
         <source>Show Migrations</source>
         <translation>Mostrar Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="701"/>
+        <location filename="../Project.py" line="711"/>
         <source>&amp;Show Migrations</source>
         <translation>Mo&amp;strar Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="706"/>
+        <location filename="../Project.py" line="716"/>
         <source>Show a list of available migrations</source>
         <translation>Mostrar una lista de migraciones disponibles</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="708"/>
+        <location filename="../Project.py" line="718"/>
         <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="716"/>
+        <location filename="../Project.py" line="726"/>
         <source>Show Migrations Plan</source>
         <translation>Mostrar Plan de Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="716"/>
+        <location filename="../Project.py" line="726"/>
         <source>Show Migrations &amp;Plan</source>
         <translation>Mostrar &amp;Plan de Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="721"/>
+        <location filename="../Project.py" line="731"/>
         <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="723"/>
+        <location filename="../Project.py" line="733"/>
         <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="908"/>
+        <location filename="../Project.py" line="918"/>
         <source>&amp;Migrations</source>
         <translation>&amp;Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="731"/>
+        <location filename="../Project.py" line="741"/>
         <source>Apply All Migrations</source>
         <translation>Aplicar Todas las Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="731"/>
+        <location filename="../Project.py" line="741"/>
         <source>&amp;Apply All Migrations</source>
         <translation>&amp;Aplicar Todas las Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="736"/>
+        <location filename="../Project.py" line="746"/>
         <source>Apply all available migrations</source>
         <translation>Aplicar todas las migraciones disponibles</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="738"/>
+        <location filename="../Project.py" line="748"/>
         <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="2318"/>
+        <location filename="../Project.py" line="2388"/>
         <source>Apply Selected Migrations</source>
         <translation>Aplicar Migraciones Seleccionadas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="750"/>
+        <location filename="../Project.py" line="760"/>
         <source>Apply selected migrations</source>
         <translation>Aplicar migraciones seleccionadas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="752"/>
+        <location filename="../Project.py" line="762"/>
         <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="2377"/>
+        <location filename="../Project.py" line="2447"/>
         <source>Unapply Migrations</source>
         <translation>Deshacer Aplicar Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="761"/>
+        <location filename="../Project.py" line="771"/>
         <source>&amp;Unapply Migrations</source>
         <translation>Des&amp;hacer Aplicar Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="766"/>
+        <location filename="../Project.py" line="776"/>
         <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="768"/>
+        <location filename="../Project.py" line="778"/>
         <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="2456"/>
+        <location filename="../Project.py" line="2526"/>
         <source>Make Migrations</source>
         <translation>Hacer Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="776"/>
+        <location filename="../Project.py" line="786"/>
         <source>&amp;Make Migrations</source>
         <translation>Hacer &amp;Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="781"/>
+        <location filename="../Project.py" line="791"/>
         <source>Generate migrations for the project</source>
         <translation>Generar migraciones para el proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="783"/>
+        <location filename="../Project.py" line="793"/>
         <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="2488"/>
+        <location filename="../Project.py" line="2558"/>
         <source>No migrations available.</source>
         <translation>No hay migraciones disponibles.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2343"/>
+        <location filename="../Project.py" line="2413"/>
         <source>Apply Migrations</source>
         <translation>Aplicar Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2377"/>
+        <location filename="../Project.py" line="2447"/>
         <source>Select an application:</source>
         <translation>Seleccionar una aplicación:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2501"/>
+        <location filename="../Project.py" line="2571"/>
         <source>Squash Migrations</source>
         <translation>Hacer &quot;Squash&quot; de Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="790"/>
+        <location filename="../Project.py" line="800"/>
         <source>S&amp;quash Migrations</source>
         <translation>Hacer &quot;S&amp;quash&quot; de Migraciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="795"/>
+        <location filename="../Project.py" line="805"/>
         <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="797"/>
+        <location filename="../Project.py" line="807"/>
         <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="503"/>
+        <location filename="../Project.py" line="513"/>
         <source>Apply Migration</source>
         <translation>Aplicar Migración</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="513"/>
         <source>&amp;Apply Migration</source>
         <translation>&amp;Aplicar Migración</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="508"/>
+        <location filename="../Project.py" line="518"/>
         <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="511"/>
+        <location filename="../Project.py" line="521"/>
         <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="520"/>
+        <location filename="../Project.py" line="530"/>
         <source>Unapply Migration</source>
         <translation>Deshacer Aplicar Migración</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="530"/>
         <source>&amp;Unapply Migration</source>
         <translation>Des&amp;hacer Aplicar Migración</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="525"/>
+        <location filename="../Project.py" line="535"/>
         <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="528"/>
+        <location filename="../Project.py" line="538"/>
         <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="2246"/>
+        <location filename="../Project.py" line="2316"/>
         <source>SQL Migrate</source>
         <translation>SQL Migrate</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3271"/>
+        <location filename="../Project.py" line="3360"/>
         <source>Check Project</source>
         <translation>Comprobar Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="296"/>
+        <location filename="../Project.py" line="306"/>
         <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="298"/>
+        <location filename="../Project.py" line="308"/>
         <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="615"/>
+        <location filename="../Project.py" line="625"/>
         <source>Run Testsuite (-Wall)</source>
         <translation>Ejecutar suite de Tests (-Wall)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="620"/>
+        <location filename="../Project.py" line="630"/>
         <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="623"/>
+        <location filename="../Project.py" line="633"/>
         <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>
@@ -1774,7 +1842,7 @@
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="389"/>
+        <location filename="../../PluginProjectDjango.py" line="391"/>
         <source>Django</source>
         <translation>Django</translation>
     </message>
--- a/ProjectDjango/i18n/django_ru.ts	Sat Nov 04 15:22:22 2017 +0100
+++ b/ProjectDjango/i18n/django_ru.ts	Sun Nov 12 14:56:13 2017 +0100
@@ -608,1139 +608,1207 @@
     </message>
 </context>
 <context>
+    <name>DjangoTestDataDialog</name>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="14"/>
+        <source>Django Test Data</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="23"/>
+        <source>Test Labels:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="30"/>
+        <source>Enter the tests to be performed separated by space</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="54"/>
+        <source>Tags:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="61"/>
+        <source>Enter the test tags to be run separated by space</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="71"/>
+        <source>Exclude Tags:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="78"/>
+        <source>Enter the test tags to be skipped separated by space</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="88"/>
+        <source>Select to keep the test database</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="91"/>
+        <source>Keep Test Database</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="98"/>
+        <source>Select to run the tests in reverse order</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="101"/>
+        <source>Run Tests in Reverse Order</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="40"/>
+        <source>Test File Pattern:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="47"/>
+        <source>Enter the test file pattern</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="814"/>
+        <location filename="../Project.py" line="824"/>
         <source>D&amp;jango</source>
         <translation>D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1166"/>
+        <location filename="../Project.py" line="1176"/>
         <source>New Form</source>
         <translation>Создание новой формы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1133"/>
+        <location filename="../Project.py" line="1143"/>
         <source>The file already exists! Overwrite it?</source>
         <translation>Файл уже существует! Переписать его?</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="129"/>
+        <location filename="../Project.py" line="139"/>
         <source>Current Project</source>
         <translation>Текущий проект</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="134"/>
+        <location filename="../Project.py" line="144"/>
         <source>Selects the current project</source>
         <translation>Выбор текущего проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="149"/>
+        <location filename="../Project.py" line="159"/>
         <source>Start Project</source>
         <translation>Создание нового проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="149"/>
+        <location filename="../Project.py" line="159"/>
         <source>Start &amp;Project</source>
         <translation>Новый &amp;проект</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="154"/>
+        <location filename="../Project.py" line="164"/>
         <source>Starts a new Django project</source>
         <translation>Создание нового Django проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="156"/>
+        <location filename="../Project.py" line="166"/>
         <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="164"/>
+        <location filename="../Project.py" line="174"/>
         <source>Start Application (global)</source>
         <translation>Создание приложения (global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="164"/>
+        <location filename="../Project.py" line="174"/>
         <source>Start Application (&amp;global)</source>
         <translation>Новое приложение (&amp;global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="169"/>
+        <location filename="../Project.py" line="179"/>
         <source>Starts a new global Django application</source>
         <translation>Создание нового (global) Django приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="171"/>
+        <location filename="../Project.py" line="181"/>
         <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="180"/>
+        <location filename="../Project.py" line="190"/>
         <source>Start Application (local)</source>
         <translation>Создание приложения (local)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="180"/>
+        <location filename="../Project.py" line="190"/>
         <source>Start Application (&amp;local)</source>
         <translation>Новое приложение (&amp;local)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="185"/>
+        <location filename="../Project.py" line="195"/>
         <source>Starts a new local Django application</source>
         <translation>Создание нового (local) Django приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="187"/>
+        <location filename="../Project.py" line="197"/>
         <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="200"/>
+        <location filename="../Project.py" line="210"/>
         <source>Run Server</source>
         <translation>Сервер разработки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="200"/>
+        <location filename="../Project.py" line="210"/>
         <source>Run &amp;Server</source>
         <translation>&amp;Сервер разработки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="205"/>
+        <location filename="../Project.py" line="215"/>
         <source>Starts the Django Web server</source>
         <translation>Запуск Django Web сервера разработки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="207"/>
+        <location filename="../Project.py" line="217"/>
         <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="2027"/>
+        <location filename="../Project.py" line="2097"/>
         <source>Run Web-Browser</source>
         <translation>Запуск Web-браузера администрирования</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="215"/>
+        <location filename="../Project.py" line="225"/>
         <source>Run &amp;Web-Browser</source>
         <translation>Запуск &amp;Web-браузера</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="220"/>
+        <location filename="../Project.py" line="230"/>
         <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="223"/>
+        <location filename="../Project.py" line="233"/>
         <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="1447"/>
+        <location filename="../Project.py" line="1457"/>
         <source>About Django</source>
         <translation>О Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="273"/>
+        <location filename="../Project.py" line="283"/>
         <source>About D&amp;jango</source>
         <translation>О D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="278"/>
+        <location filename="../Project.py" line="288"/>
         <source>Shows some information about Django</source>
         <translation>Отображение информации о Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="280"/>
+        <location filename="../Project.py" line="290"/>
         <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="856"/>
+        <location filename="../Project.py" line="866"/>
         <source>&amp;Database</source>
         <translation>&amp;База данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1904"/>
+        <location filename="../Project.py" line="1974"/>
         <source>Project</source>
         <translation>Project</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1644"/>
+        <location filename="../Project.py" line="1713"/>
         <source>Application</source>
         <translation>Application</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1646"/>
+        <location filename="../Project.py" line="1715"/>
         <source>Start Django</source>
         <translation>Старт Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1646"/>
+        <location filename="../Project.py" line="1715"/>
         <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="1723"/>
+        <location filename="../Project.py" line="1792"/>
         <source>Start Django Project</source>
         <translation>Создание Django проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1699"/>
+        <location filename="../Project.py" line="1768"/>
         <source>Django project created successfully.</source>
         <translation>Django проект успешно создан.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1723"/>
+        <location filename="../Project.py" line="1792"/>
         <source>Enter the name of the new Django project.</source>
         <translation>Введите имя нового Django проекта.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1751"/>
+        <location filename="../Project.py" line="1820"/>
         <source>Start Django Application</source>
         <translation>Создание Django приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1785"/>
+        <location filename="../Project.py" line="1854"/>
         <source>Django application created successfully.</source>
         <translation>Django приложение успешно создано.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1868"/>
+        <location filename="../Project.py" line="1937"/>
         <source>Select Project</source>
         <translation>Выбор проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1868"/>
+        <location filename="../Project.py" line="1937"/>
         <source>Select the Django project to work with.</source>
         <translation>Выбор Django проекта для работы.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1902"/>
+        <location filename="../Project.py" line="1972"/>
         <source>None</source>
         <translation>none</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3226"/>
+        <location filename="../Project.py" line="3315"/>
         <source>Process Generation Error</source>
         <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1981"/>
+        <location filename="../Project.py" line="2051"/>
         <source>The Django server could not be started.</source>
         <translation>Невозможно запустить Django сервер.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2027"/>
+        <location filename="../Project.py" line="2097"/>
         <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="2835"/>
+        <location filename="../Project.py" line="2924"/>
         <source>The Django process could not be started.</source>
         <translation>Невозможно запустить Django процесс.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="136"/>
+        <location filename="../Project.py" line="146"/>
         <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="2533"/>
+        <location filename="../Project.py" line="2603"/>
         <source>Diff Settings</source>
         <translation>Отличие текущих параметров от параметров настройки Django по умолчанию</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="541"/>
+        <location filename="../Project.py" line="551"/>
         <source>&amp;Diff Settings</source>
         <translation>&amp;Различия настройки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="546"/>
+        <location filename="../Project.py" line="556"/>
         <source>Shows the modification made to the settings</source>
         <translation>Показ изменений, сделанных в параметрах настройки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="548"/>
+        <location filename="../Project.py" line="558"/>
         <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="933"/>
+        <location filename="../Project.py" line="943"/>
         <source>&amp;Tools</source>
         <translation>&amp;Сервис</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1518"/>
+        <location filename="../Project.py" line="1528"/>
         <source>Select Applications</source>
         <translation>Выбор приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1518"/>
+        <location filename="../Project.py" line="1528"/>
         <source>Enter the list of applications separated by spaces.</source>
         <translation>Введите список приложений, разделенных пробелами.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1907"/>
+        <location filename="../Project.py" line="1977"/>
         <source>&amp;Current Django project ({0})</source>
         <translation>Текущий &amp;Django проект ({0})</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="555"/>
+        <location filename="../Project.py" line="565"/>
         <source>Start Python Console</source>
         <translation>Старт консоли Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="555"/>
+        <location filename="../Project.py" line="565"/>
         <source>Start &amp;Python Console</source>
         <translation>Старт консоли &amp;Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="560"/>
+        <location filename="../Project.py" line="570"/>
         <source>Starts a Python interactive interpreter</source>
         <translation>Запуск интерактивного интерпретатора Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="562"/>
+        <location filename="../Project.py" line="572"/>
         <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="2589"/>
+        <location filename="../Project.py" line="2659"/>
         <source>Create Cache Tables</source>
         <translation>Создание кэша таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="235"/>
+        <location filename="../Project.py" line="245"/>
         <source>C&amp;reate Cache Tables</source>
         <translation>С&amp;оздание кэша таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="240"/>
+        <location filename="../Project.py" line="250"/>
         <source>Creates the tables needed to use the SQL cache backend</source>
         <translation>Для создания таблиц необходимо использовать SQL кэш бэкенд</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="242"/>
+        <location filename="../Project.py" line="252"/>
         <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="2596"/>
+        <location filename="../Project.py" line="2666"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation>Введите имена таблиц кэша, разделенных пробелами.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2611"/>
+        <location filename="../Project.py" line="2681"/>
         <source>Cache tables created successfully.</source>
         <translation>Кэш таблиц создан успешно.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="327"/>
         <source>Introspect</source>
         <translation>Просматривает базу данных, определяет структуру моделей и выводит их код</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="327"/>
         <source>&amp;Introspect</source>
         <translation>&amp;Инспекция</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="322"/>
+        <location filename="../Project.py" line="332"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation>Анализ таблиц базы данных и вывод кода модуля Django моделей</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="325"/>
+        <location filename="../Project.py" line="335"/>
         <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="2044"/>
+        <location filename="../Project.py" line="2114"/>
         <source>Introspect Database</source>
         <translation>Анализ таблиц базы данных и генерация кода модуля Django моделей</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="343"/>
         <source>Flush</source>
         <translation>Очистка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="343"/>
         <source>&amp;Flush</source>
         <translation>&amp;Очистка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="338"/>
+        <location filename="../Project.py" line="348"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation>Возвращает все таблицы базы данных к состоянию на момент инсталяции базы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="341"/>
+        <location filename="../Project.py" line="351"/>
         <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="2215"/>
+        <location filename="../Project.py" line="2285"/>
         <source>Flush Database</source>
         <translation>Очистка базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2073"/>
+        <location filename="../Project.py" line="2143"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation>Очистка  базы данных приведет к уничтожению всех данных. Вы действительно этого хотите?</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2085"/>
+        <location filename="../Project.py" line="2155"/>
         <source>Database tables flushed successfully.</source>
         <translation>Таблицы базы данных успешно очищены.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="359"/>
         <source>Start Client Console</source>
         <translation>Запуск консоли клиента</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="354"/>
+        <location filename="../Project.py" line="364"/>
         <source>Starts a console window for the database client</source>
         <translation>Запуск окна консоли для клиента базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="356"/>
+        <location filename="../Project.py" line="366"/>
         <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="349"/>
+        <location filename="../Project.py" line="359"/>
         <source>Start &amp;Client Console</source>
         <translation>Старт консоли &amp;клиента</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2163"/>
+        <location filename="../Project.py" line="2233"/>
         <source>Create Tables</source>
         <translation>Создание таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="367"/>
+        <location filename="../Project.py" line="377"/>
         <source>Create &amp;Tables</source>
         <translation>Создать &amp;таблицы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="372"/>
+        <location filename="../Project.py" line="382"/>
         <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="375"/>
+        <location filename="../Project.py" line="385"/>
         <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="878"/>
+        <location filename="../Project.py" line="888"/>
         <source>Show &amp;SQL</source>
         <translation>&amp;SQL</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2172"/>
+        <location filename="../Project.py" line="2242"/>
         <source>Create Indexes</source>
         <translation>Создание индексов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="384"/>
+        <location filename="../Project.py" line="394"/>
         <source>Create &amp;Indexes</source>
         <translation>Создать &amp;индексы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="392"/>
+        <location filename="../Project.py" line="402"/>
         <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="2181"/>
+        <location filename="../Project.py" line="2251"/>
         <source>Create Everything</source>
         <translation>Создать все</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="401"/>
+        <location filename="../Project.py" line="411"/>
         <source>Create &amp;Everything</source>
         <translation>Создать &amp;все</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="406"/>
+        <location filename="../Project.py" line="416"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation>Выводит SQL операторы CREATE ... для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="409"/>
+        <location filename="../Project.py" line="419"/>
         <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="389"/>
+        <location filename="../Project.py" line="399"/>
         <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="2190"/>
+        <location filename="../Project.py" line="2260"/>
         <source>Custom Statements</source>
         <translation>Пользовательские запросы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="418"/>
+        <location filename="../Project.py" line="428"/>
         <source>&amp;Custom Statements</source>
         <translation>&amp;Пользовательские запросы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="423"/>
+        <location filename="../Project.py" line="433"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation>Выводит дополнительную таблицу, модифицированную  SQL запросами, для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="426"/>
+        <location filename="../Project.py" line="436"/>
         <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="2199"/>
+        <location filename="../Project.py" line="2269"/>
         <source>Drop Tables</source>
         <translation>Удаление таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="435"/>
+        <location filename="../Project.py" line="445"/>
         <source>&amp;Drop Tables</source>
         <translation>&amp;Удаление таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="440"/>
+        <location filename="../Project.py" line="450"/>
         <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="443"/>
+        <location filename="../Project.py" line="453"/>
         <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="469"/>
+        <location filename="../Project.py" line="479"/>
         <source>&amp;Flush Database</source>
         <translation>&amp;Очистка базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="474"/>
+        <location filename="../Project.py" line="484"/>
         <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="477"/>
+        <location filename="../Project.py" line="487"/>
         <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="2222"/>
+        <location filename="../Project.py" line="2292"/>
         <source>Reset Sequences</source>
         <translation>Сброс цепочки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="486"/>
+        <location filename="../Project.py" line="496"/>
         <source>Reset &amp;Sequences</source>
         <translation>Сброс &amp;цепочки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="491"/>
+        <location filename="../Project.py" line="501"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation>Выводит SQL операторы для сброса последовательности для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="494"/>
+        <location filename="../Project.py" line="504"/>
         <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="2626"/>
+        <location filename="../Project.py" line="2696"/>
         <source>Dump Data</source>
         <translation>Выводит текущие данные из базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="573"/>
+        <location filename="../Project.py" line="583"/>
         <source>&amp;Dump Data</source>
         <translation>&amp;Выгрузка данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="578"/>
+        <location filename="../Project.py" line="588"/>
         <source>Dump the database data to a fixture</source>
         <translation>Выводит данные базы данных в файлы оснастки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="580"/>
+        <location filename="../Project.py" line="590"/>
         <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="951"/>
+        <location filename="../Project.py" line="961"/>
         <source>T&amp;esting</source>
         <translation>Т&amp;естирование</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2264"/>
+        <location filename="../Project.py" line="2334"/>
         <source>SQL Files (*.sql)</source>
         <translation>SQL Files (*.sql)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2649"/>
+        <location filename="../Project.py" line="2719"/>
         <source>JSON Files (*.json)</source>
         <translation>JSON Files (*.json)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2651"/>
+        <location filename="../Project.py" line="2721"/>
         <source>XML Files (*.xml)</source>
         <translation>XML Files (*.xml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2653"/>
+        <location filename="../Project.py" line="2723"/>
         <source>YAML Files (*.yaml)</source>
         <translation>YAML Files (*.yaml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2665"/>
+        <location filename="../Project.py" line="2735"/>
         <source>Load Data</source>
         <translation>Загрузка данных в базу данных из файлов оснастки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="587"/>
+        <location filename="../Project.py" line="597"/>
         <source>&amp;Load Data</source>
         <translation>&amp;Загрузка данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="592"/>
+        <location filename="../Project.py" line="602"/>
         <source>Load data from fixture files</source>
         <translation>Загрузка начальных данных из файлов оснастки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="594"/>
+        <location filename="../Project.py" line="604"/>
         <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="601"/>
+        <location filename="../Project.py" line="611"/>
         <source>Run Testsuite</source>
         <translation>Выполнить набор тестов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="601"/>
+        <location filename="../Project.py" line="611"/>
         <source>Run &amp;Testsuite</source>
         <translation>Выполнить набор &amp;тестов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="606"/>
+        <location filename="../Project.py" line="616"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation>Выполнение набора тестов для приложения или для всего сайта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="608"/>
+        <location filename="../Project.py" line="618"/>
         <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="632"/>
+        <location filename="../Project.py" line="642"/>
         <source>Run Testserver</source>
         <translation>Запуск сервера тестов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="632"/>
+        <location filename="../Project.py" line="642"/>
         <source>Run Test&amp;server</source>
         <translation>Запуск сервера &amp;тестов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="637"/>
+        <location filename="../Project.py" line="647"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation>Запуск сервера разработки с данными из набора оснастки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="639"/>
+        <location filename="../Project.py" line="649"/>
         <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="2762"/>
+        <location filename="../Project.py" line="2851"/>
         <source>The Django test server could not be started.</source>
         <translation>Невозможно запустить Django сервер тестов.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="255"/>
+        <location filename="../Project.py" line="265"/>
         <source>Help</source>
         <translation>Справка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="255"/>
+        <location filename="../Project.py" line="265"/>
         <source>&amp;Help</source>
         <translation>&amp;Справка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="260"/>
+        <location filename="../Project.py" line="270"/>
         <source>Shows the Django help index</source>
         <translation>Показ индекса справки Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="262"/>
+        <location filename="../Project.py" line="272"/>
         <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="1046"/>
+        <location filename="../Project.py" line="1056"/>
         <source>New template...</source>
         <translation>Новый шаблон...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1055"/>
+        <location filename="../Project.py" line="1065"/>
         <source>Update all catalogs</source>
         <translation>Обновить все каталоги</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1058"/>
+        <location filename="../Project.py" line="1068"/>
         <source>Update selected catalogs</source>
         <translation>Обновить выбранные каталоги</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1069"/>
+        <location filename="../Project.py" line="1079"/>
         <source>Compile all catalogs</source>
         <translation>Компиляция всех каталогов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1072"/>
+        <location filename="../Project.py" line="1082"/>
         <source>Compile selected catalogs</source>
         <translation>Компиляция выбранных каталогов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2931"/>
+        <location filename="../Project.py" line="3020"/>
         <source>Initializing message catalog for &apos;{0}&apos;</source>
         <translation>Инициализация каталога сообщений для &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3190"/>
+        <location filename="../Project.py" line="3279"/>
         <source>No current site selected or no site created yet. Aborting...</source>
         <translation>Текущий сайт не выбран или еще не создан. Прерывание выполнения...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3063"/>
+        <location filename="../Project.py" line="3152"/>
         <source>Updating message catalogs</source>
         <translation>Обновление каталогов сообщений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3154"/>
+        <location filename="../Project.py" line="3243"/>
         <source>No locales detected. Aborting...</source>
         <translation>Локали не найдены. Прерывание выполнения...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3114"/>
+        <location filename="../Project.py" line="3203"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation>
 Каталоги сообщений успешно обновлены.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3180"/>
+        <location filename="../Project.py" line="3269"/>
         <source>Compiling message catalogs</source>
         <translation>Компиляция каталогов сообщений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3197"/>
+        <location filename="../Project.py" line="3286"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation>Каталоги сообщений успешно компилированы.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1062"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation>Обновить все каталоги (с устаревшими)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1065"/>
+        <location filename="../Project.py" line="1075"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation>Обновить выбранные каталоги (с устаревшими)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1797"/>
+        <location filename="../Project.py" line="1866"/>
         <source>Start Global Django Application</source>
         <translation>Выполнение Django global приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1797"/>
+        <location filename="../Project.py" line="1866"/>
         <source>Enter the name of the new global Django application.</source>
         <translation>Введите имя нового Djangо global приложения. </translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1819"/>
+        <location filename="../Project.py" line="1888"/>
         <source>Start Local Django Application</source>
         <translation>Выполнение Django local приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1819"/>
+        <location filename="../Project.py" line="1888"/>
         <source>Enter the name of the new local Django application.</source>
         <translation>Введите имя нового Django local приложения. </translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3095"/>
+        <location filename="../Project.py" line="3184"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation>Обновление каталогов сообщений (с сохранением устаревших сообщений)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2792"/>
+        <location filename="../Project.py" line="2881"/>
         <source>Change Password</source>
         <translation>Смена пароля</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="651"/>
+        <location filename="../Project.py" line="661"/>
         <source>Change &amp;Password</source>
         <translation>Смена &amp;пароля</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="656"/>
+        <location filename="../Project.py" line="666"/>
         <source>Change the password of a user</source>
         <translation>Смена пароля пользователя</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="658"/>
+        <location filename="../Project.py" line="668"/>
         <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="665"/>
+        <location filename="../Project.py" line="675"/>
         <source>Create Superuser</source>
         <translation>Создание суперпользователя</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="665"/>
+        <location filename="../Project.py" line="675"/>
         <source>Create &amp;Superuser</source>
         <translation>Создать &amp;суперпользователя</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="670"/>
+        <location filename="../Project.py" line="680"/>
         <source>Create a superuser account</source>
         <translation>Создать аккаунт суперпользователя</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="672"/>
+        <location filename="../Project.py" line="682"/>
         <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="2850"/>
+        <location filename="../Project.py" line="2939"/>
         <source>Clear Sessions</source>
         <translation>Очистка сессии</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="683"/>
+        <location filename="../Project.py" line="693"/>
         <source>Clear &amp;Sessions</source>
         <translation>Очистка &amp;сессии</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="688"/>
+        <location filename="../Project.py" line="698"/>
         <source>Clear expired sessions</source>
         <translation>Очистка истекших сессий</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="690"/>
+        <location filename="../Project.py" line="700"/>
         <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="972"/>
+        <location filename="../Project.py" line="982"/>
         <source>&amp;Authorization</source>
         <translation>&amp;Авторизация</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="989"/>
+        <location filename="../Project.py" line="999"/>
         <source>&amp;Session</source>
         <translation>&amp;Сессия</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2792"/>
+        <location filename="../Project.py" line="2881"/>
         <source>Enter the name of the user:</source>
         <translation>Введите имя пользователя:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2862"/>
+        <location filename="../Project.py" line="2951"/>
         <source>Expired sessions cleared successfully.</source>
         <translation>Истекшая сессия успешно очищена.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1447"/>
+        <location filename="../Project.py" line="1457"/>
         <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="1768"/>
+        <location filename="../Project.py" line="1837"/>
         <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="1031"/>
+        <location filename="../Project.py" line="1041"/>
         <source>Open with {0}</source>
         <translation>Открыть с помощью {0}</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3226"/>
+        <location filename="../Project.py" line="3315"/>
         <source>The translations editor process ({0}) could not be started.</source>
         <translation>Невозможен запуск редактора переводов ({0}).</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1166"/>
+        <location filename="../Project.py" line="1176"/>
         <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="2951"/>
+        <location filename="../Project.py" line="3040"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation>
 Каталог сообщений успешно инициализирован.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2208"/>
+        <location filename="../Project.py" line="2278"/>
         <source>Drop Indexes</source>
         <translation>Удалить индексы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="452"/>
+        <location filename="../Project.py" line="462"/>
         <source>&amp;Drop Indexes</source>
         <translation>&amp;Удалить индексы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="457"/>
+        <location filename="../Project.py" line="467"/>
         <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="460"/>
+        <location filename="../Project.py" line="470"/>
         <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="701"/>
+        <location filename="../Project.py" line="711"/>
         <source>Show Migrations</source>
         <translation>Показать миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="701"/>
+        <location filename="../Project.py" line="711"/>
         <source>&amp;Show Migrations</source>
         <translation>&amp;Показать миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="706"/>
+        <location filename="../Project.py" line="716"/>
         <source>Show a list of available migrations</source>
         <translation>Отображение списка доступных миграций</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="708"/>
+        <location filename="../Project.py" line="718"/>
         <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="716"/>
+        <location filename="../Project.py" line="726"/>
         <source>Show Migrations Plan</source>
         <translation>Показать план миграций</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="716"/>
+        <location filename="../Project.py" line="726"/>
         <source>Show Migrations &amp;Plan</source>
         <translation>Показать &amp;план миграций</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="721"/>
+        <location filename="../Project.py" line="731"/>
         <source>Show a list with the migrations plan</source>
         <translation>Отображение плана выполнения миграций</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="723"/>
+        <location filename="../Project.py" line="733"/>
         <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="908"/>
+        <location filename="../Project.py" line="918"/>
         <source>&amp;Migrations</source>
         <translation>&amp;Миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="731"/>
+        <location filename="../Project.py" line="741"/>
         <source>Apply All Migrations</source>
         <translation>Применить все миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="731"/>
+        <location filename="../Project.py" line="741"/>
         <source>&amp;Apply All Migrations</source>
         <translation>&amp;Применить все миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="736"/>
+        <location filename="../Project.py" line="746"/>
         <source>Apply all available migrations</source>
         <translation>Применить все доступные миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="738"/>
+        <location filename="../Project.py" line="748"/>
         <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="2318"/>
+        <location filename="../Project.py" line="2388"/>
         <source>Apply Selected Migrations</source>
         <translation>Применить выбранные миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="750"/>
+        <location filename="../Project.py" line="760"/>
         <source>Apply selected migrations</source>
         <translation>Применить выбранные миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="752"/>
+        <location filename="../Project.py" line="762"/>
         <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="2377"/>
+        <location filename="../Project.py" line="2447"/>
         <source>Unapply Migrations</source>
         <translation>Откатить миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="761"/>
+        <location filename="../Project.py" line="771"/>
         <source>&amp;Unapply Migrations</source>
         <translation>&amp;Откатить миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="766"/>
+        <location filename="../Project.py" line="776"/>
         <source>Unapply all migrations for an app</source>
         <translation>Откат всех миграций для приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="768"/>
+        <location filename="../Project.py" line="778"/>
         <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="2456"/>
+        <location filename="../Project.py" line="2526"/>
         <source>Make Migrations</source>
         <translation>Создать миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="776"/>
+        <location filename="../Project.py" line="786"/>
         <source>&amp;Make Migrations</source>
         <translation>&amp;Создать миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="781"/>
+        <location filename="../Project.py" line="791"/>
         <source>Generate migrations for the project</source>
         <translation>Создание миграций для проекта на основе изменений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="783"/>
+        <location filename="../Project.py" line="793"/>
         <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="2488"/>
+        <location filename="../Project.py" line="2558"/>
         <source>No migrations available.</source>
         <translation>Нет доступных миграций.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2343"/>
+        <location filename="../Project.py" line="2413"/>
         <source>Apply Migrations</source>
         <translation>Применить миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2377"/>
+        <location filename="../Project.py" line="2447"/>
         <source>Select an application:</source>
         <translation>Выберите приложение:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2501"/>
+        <location filename="../Project.py" line="2571"/>
         <source>Squash Migrations</source>
         <translation>Объединить миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="790"/>
+        <location filename="../Project.py" line="800"/>
         <source>S&amp;quash Migrations</source>
         <translation>О&amp;бъединить миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="795"/>
+        <location filename="../Project.py" line="805"/>
         <source>Squash migrations of an application of the project</source>
         <translation>Объединение миграций приложения Django-проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="797"/>
+        <location filename="../Project.py" line="807"/>
         <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="503"/>
+        <location filename="../Project.py" line="513"/>
         <source>Apply Migration</source>
         <translation>Применить миграцию</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="513"/>
         <source>&amp;Apply Migration</source>
         <translation>&amp;Применить миграцию</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="508"/>
+        <location filename="../Project.py" line="518"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation>Выводит SQL запросы для выполнения миграции приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="511"/>
+        <location filename="../Project.py" line="521"/>
         <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="520"/>
+        <location filename="../Project.py" line="530"/>
         <source>Unapply Migration</source>
         <translation>Откатить миграцию</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="530"/>
         <source>&amp;Unapply Migration</source>
         <translation>&amp;Откатить миграцию</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="525"/>
+        <location filename="../Project.py" line="535"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation>Выводит SQL запросы для отката миграции приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="528"/>
+        <location filename="../Project.py" line="538"/>
         <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="2246"/>
+        <location filename="../Project.py" line="2316"/>
         <source>SQL Migrate</source>
         <translation>SQL миграции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3271"/>
+        <location filename="../Project.py" line="3360"/>
         <source>Check Project</source>
         <translation>Проверить проект</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="296"/>
+        <location filename="../Project.py" line="306"/>
         <source>Inspects the Django project for common problems</source>
         <translation>Инспекция общераспространенных проблем Django проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="298"/>
+        <location filename="../Project.py" line="308"/>
         <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="615"/>
+        <location filename="../Project.py" line="625"/>
         <source>Run Testsuite (-Wall)</source>
         <translation>Выполнить набор тестов (-Wall)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="620"/>
+        <location filename="../Project.py" line="630"/>
         <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="623"/>
+        <location filename="../Project.py" line="633"/>
         <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>
@@ -1748,7 +1816,7 @@
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="389"/>
+        <location filename="../../PluginProjectDjango.py" line="391"/>
         <source>Django</source>
         <translation>Django</translation>
     </message>
--- a/ProjectDjango/i18n/django_tr.ts	Sat Nov 04 15:22:22 2017 +0100
+++ b/ProjectDjango/i18n/django_tr.ts	Sun Nov 12 14:56:13 2017 +0100
@@ -613,159 +613,227 @@
     </message>
 </context>
 <context>
+    <name>DjangoTestDataDialog</name>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="14"/>
+        <source>Django Test Data</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="23"/>
+        <source>Test Labels:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="30"/>
+        <source>Enter the tests to be performed separated by space</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="54"/>
+        <source>Tags:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="61"/>
+        <source>Enter the test tags to be run separated by space</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="71"/>
+        <source>Exclude Tags:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="78"/>
+        <source>Enter the test tags to be skipped separated by space</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="88"/>
+        <source>Select to keep the test database</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="91"/>
+        <source>Keep Test Database</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="98"/>
+        <source>Select to run the tests in reverse order</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="101"/>
+        <source>Run Tests in Reverse Order</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="40"/>
+        <source>Test File Pattern:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoTestDataDialog.ui" line="47"/>
+        <source>Enter the test file pattern</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="129"/>
+        <location filename="../Project.py" line="139"/>
         <source>Current Project</source>
         <translation>Geçerli Proje</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="134"/>
+        <location filename="../Project.py" line="144"/>
         <source>Selects the current project</source>
         <translation>geçerli projeyi seç</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="136"/>
+        <location filename="../Project.py" line="146"/>
         <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="149"/>
+        <location filename="../Project.py" line="159"/>
         <source>Start Project</source>
         <translation>Projeyi Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="149"/>
+        <location filename="../Project.py" line="159"/>
         <source>Start &amp;Project</source>
         <translation>&amp;Projeyi Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="154"/>
+        <location filename="../Project.py" line="164"/>
         <source>Starts a new Django project</source>
         <translation>Yeni bir django projesi başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="156"/>
+        <location filename="../Project.py" line="166"/>
         <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="164"/>
+        <location filename="../Project.py" line="174"/>
         <source>Start Application (global)</source>
         <translation>Uygulayı başlat (küresel)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="164"/>
+        <location filename="../Project.py" line="174"/>
         <source>Start Application (&amp;global)</source>
         <translation>Uy&amp;gulamayı Başlat (Küresel)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="169"/>
+        <location filename="../Project.py" line="179"/>
         <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="171"/>
+        <location filename="../Project.py" line="181"/>
         <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="180"/>
+        <location filename="../Project.py" line="190"/>
         <source>Start Application (local)</source>
         <translation>Uygulamayı Başlat (yerel)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="180"/>
+        <location filename="../Project.py" line="190"/>
         <source>Start Application (&amp;local)</source>
         <translation>Uygulamayı Başlat (yere&amp;l)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="185"/>
+        <location filename="../Project.py" line="195"/>
         <source>Starts a new local Django application</source>
         <translation>Yeni bir Django uygulaması başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="187"/>
+        <location filename="../Project.py" line="197"/>
         <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="200"/>
+        <location filename="../Project.py" line="210"/>
         <source>Run Server</source>
         <translation>Sunucuyu Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="200"/>
+        <location filename="../Project.py" line="210"/>
         <source>Run &amp;Server</source>
         <translation>&amp;Sunucuyu Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="205"/>
+        <location filename="../Project.py" line="215"/>
         <source>Starts the Django Web server</source>
         <translation>Django Web sunucusunu başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="207"/>
+        <location filename="../Project.py" line="217"/>
         <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="2027"/>
+        <location filename="../Project.py" line="2097"/>
         <source>Run Web-Browser</source>
         <translation>Web-Gözatıcısını Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="215"/>
+        <location filename="../Project.py" line="225"/>
         <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="220"/>
+        <location filename="../Project.py" line="230"/>
         <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="223"/>
+        <location filename="../Project.py" line="233"/>
         <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="2589"/>
+        <location filename="../Project.py" line="2659"/>
         <source>Create Cache Tables</source>
         <translation type="unfinished">Gizli Tabloları Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="235"/>
+        <location filename="../Project.py" line="245"/>
         <source>C&amp;reate Cache Tables</source>
         <translation type="unfinished">Gizli Tabloları Olu&amp;ştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="240"/>
+        <location filename="../Project.py" line="250"/>
         <source>Creates the tables needed to use the SQL cache backend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="242"/>
+        <location filename="../Project.py" line="252"/>
         <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="1447"/>
+        <location filename="../Project.py" line="1457"/>
         <source>About Django</source>
         <translation>Django Hakkında</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="273"/>
+        <location filename="../Project.py" line="283"/>
         <source>About D&amp;jango</source>
         <translation>D&amp;jango Hakkında</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="278"/>
+        <location filename="../Project.py" line="288"/>
         <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="280"/>
+        <location filename="../Project.py" line="290"/>
         <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>
@@ -785,980 +853,980 @@
         <translation type="obsolete">Veritabanını eşzamanla</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="327"/>
         <source>Introspect</source>
         <translation>İçgözlem</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="327"/>
         <source>&amp;Introspect</source>
         <translation>&amp;İçgözlem</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="322"/>
+        <location filename="../Project.py" line="332"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="325"/>
+        <location filename="../Project.py" line="335"/>
         <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="333"/>
+        <location filename="../Project.py" line="343"/>
         <source>Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="343"/>
         <source>&amp;Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="338"/>
+        <location filename="../Project.py" line="348"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="341"/>
+        <location filename="../Project.py" line="351"/>
         <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="349"/>
+        <location filename="../Project.py" line="359"/>
         <source>Start Client Console</source>
         <translation>İstemci Uçbirimini Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="359"/>
         <source>Start &amp;Client Console</source>
         <translation>İstem&amp;ci Uçbirimini Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="354"/>
+        <location filename="../Project.py" line="364"/>
         <source>Starts a console window for the database client</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="356"/>
+        <location filename="../Project.py" line="366"/>
         <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="2163"/>
+        <location filename="../Project.py" line="2233"/>
         <source>Create Tables</source>
         <translation>Tabloyu Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="367"/>
+        <location filename="../Project.py" line="377"/>
         <source>Create &amp;Tables</source>
         <translation>&amp;Tabloları Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="372"/>
+        <location filename="../Project.py" line="382"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="375"/>
+        <location filename="../Project.py" line="385"/>
         <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="2172"/>
+        <location filename="../Project.py" line="2242"/>
         <source>Create Indexes</source>
         <translation>Katalogları oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="384"/>
+        <location filename="../Project.py" line="394"/>
         <source>Create &amp;Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="389"/>
+        <location filename="../Project.py" line="399"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="392"/>
+        <location filename="../Project.py" line="402"/>
         <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="2181"/>
+        <location filename="../Project.py" line="2251"/>
         <source>Create Everything</source>
         <translation>Herşeyi Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="401"/>
+        <location filename="../Project.py" line="411"/>
         <source>Create &amp;Everything</source>
         <translation>H&amp;erşeyi Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="406"/>
+        <location filename="../Project.py" line="416"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="409"/>
+        <location filename="../Project.py" line="419"/>
         <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="2190"/>
+        <location filename="../Project.py" line="2260"/>
         <source>Custom Statements</source>
         <translation>Özel İfadeler</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="418"/>
+        <location filename="../Project.py" line="428"/>
         <source>&amp;Custom Statements</source>
         <translation>Özel İfade&amp;ler</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="423"/>
+        <location filename="../Project.py" line="433"/>
         <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="426"/>
+        <location filename="../Project.py" line="436"/>
         <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="2199"/>
+        <location filename="../Project.py" line="2269"/>
         <source>Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="435"/>
+        <location filename="../Project.py" line="445"/>
         <source>&amp;Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="440"/>
+        <location filename="../Project.py" line="450"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="443"/>
+        <location filename="../Project.py" line="453"/>
         <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="2215"/>
+        <location filename="../Project.py" line="2285"/>
         <source>Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="469"/>
+        <location filename="../Project.py" line="479"/>
         <source>&amp;Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="474"/>
+        <location filename="../Project.py" line="484"/>
         <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="477"/>
+        <location filename="../Project.py" line="487"/>
         <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="2222"/>
+        <location filename="../Project.py" line="2292"/>
         <source>Reset Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="486"/>
+        <location filename="../Project.py" line="496"/>
         <source>Reset &amp;Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="491"/>
+        <location filename="../Project.py" line="501"/>
         <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="494"/>
+        <location filename="../Project.py" line="504"/>
         <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="2533"/>
+        <location filename="../Project.py" line="2603"/>
         <source>Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="541"/>
+        <location filename="../Project.py" line="551"/>
         <source>&amp;Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="546"/>
+        <location filename="../Project.py" line="556"/>
         <source>Shows the modification made to the settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="548"/>
+        <location filename="../Project.py" line="558"/>
         <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="555"/>
+        <location filename="../Project.py" line="565"/>
         <source>Start Python Console</source>
         <translation>Python Uçbirimini çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="555"/>
+        <location filename="../Project.py" line="565"/>
         <source>Start &amp;Python Console</source>
         <translation>&amp;Python Uçbinimini başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="560"/>
+        <location filename="../Project.py" line="570"/>
         <source>Starts a Python interactive interpreter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="562"/>
+        <location filename="../Project.py" line="572"/>
         <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="2626"/>
+        <location filename="../Project.py" line="2696"/>
         <source>Dump Data</source>
         <translation>Boş Veri</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="573"/>
+        <location filename="../Project.py" line="583"/>
         <source>&amp;Dump Data</source>
         <translation>B&amp;oş Veri</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="578"/>
+        <location filename="../Project.py" line="588"/>
         <source>Dump the database data to a fixture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="580"/>
+        <location filename="../Project.py" line="590"/>
         <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="2665"/>
+        <location filename="../Project.py" line="2735"/>
         <source>Load Data</source>
         <translation>Veriyi Yükle</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="587"/>
+        <location filename="../Project.py" line="597"/>
         <source>&amp;Load Data</source>
         <translation>Veriyi Yük&amp;le</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="592"/>
+        <location filename="../Project.py" line="602"/>
         <source>Load data from fixture files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="594"/>
+        <location filename="../Project.py" line="604"/>
         <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="601"/>
+        <location filename="../Project.py" line="611"/>
         <source>Run Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="601"/>
+        <location filename="../Project.py" line="611"/>
         <source>Run &amp;Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="606"/>
+        <location filename="../Project.py" line="616"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="608"/>
+        <location filename="../Project.py" line="618"/>
         <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="632"/>
+        <location filename="../Project.py" line="642"/>
         <source>Run Testserver</source>
         <translation>Testsunucusunu Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="632"/>
+        <location filename="../Project.py" line="642"/>
         <source>Run Test&amp;server</source>
         <translation>Test&amp;sunucusunu Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="637"/>
+        <location filename="../Project.py" line="647"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="639"/>
+        <location filename="../Project.py" line="649"/>
         <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="814"/>
+        <location filename="../Project.py" line="824"/>
         <source>D&amp;jango</source>
         <translation>D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="856"/>
+        <location filename="../Project.py" line="866"/>
         <source>&amp;Database</source>
         <translation>&amp;Veritabanı</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="878"/>
+        <location filename="../Project.py" line="888"/>
         <source>Show &amp;SQL</source>
         <translation>&amp;SQL u göster</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="933"/>
+        <location filename="../Project.py" line="943"/>
         <source>&amp;Tools</source>
         <translation>&amp;Araçlar</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="951"/>
+        <location filename="../Project.py" line="961"/>
         <source>T&amp;esting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1166"/>
+        <location filename="../Project.py" line="1176"/>
         <source>New Form</source>
         <translation>Yeni Form</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1133"/>
+        <location filename="../Project.py" line="1143"/>
         <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="1518"/>
+        <location filename="../Project.py" line="1528"/>
         <source>Select Applications</source>
         <translation>Uygulamayı Seç</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1518"/>
+        <location filename="../Project.py" line="1528"/>
         <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="1904"/>
+        <location filename="../Project.py" line="1974"/>
         <source>Project</source>
         <translation>Proje</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1644"/>
+        <location filename="../Project.py" line="1713"/>
         <source>Application</source>
         <translation>Uygulama</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1646"/>
+        <location filename="../Project.py" line="1715"/>
         <source>Start Django</source>
         <translation>Djangoyu Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1646"/>
+        <location filename="../Project.py" line="1715"/>
         <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="1723"/>
+        <location filename="../Project.py" line="1792"/>
         <source>Start Django Project</source>
         <translation>Django Projesini Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1699"/>
+        <location filename="../Project.py" line="1768"/>
         <source>Django project created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1723"/>
+        <location filename="../Project.py" line="1792"/>
         <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="1751"/>
+        <location filename="../Project.py" line="1820"/>
         <source>Start Django Application</source>
         <translation>Django Uygulamasını Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1785"/>
+        <location filename="../Project.py" line="1854"/>
         <source>Django application created successfully.</source>
         <translation>Django uygulaması başarıyla oluşturuldu.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1868"/>
+        <location filename="../Project.py" line="1937"/>
         <source>Select Project</source>
         <translation>Projeyi Seç</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1868"/>
+        <location filename="../Project.py" line="1937"/>
         <source>Select the Django project to work with.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1902"/>
+        <location filename="../Project.py" line="1972"/>
         <source>None</source>
         <translation>Yok</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1907"/>
+        <location filename="../Project.py" line="1977"/>
         <source>&amp;Current Django project ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3226"/>
+        <location filename="../Project.py" line="3315"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1981"/>
+        <location filename="../Project.py" line="2051"/>
         <source>The Django server could not be started.</source>
         <translation>Django sunucusu başlatılamadı.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2027"/>
+        <location filename="../Project.py" line="2097"/>
         <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="2835"/>
+        <location filename="../Project.py" line="2924"/>
         <source>The Django process could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2044"/>
+        <location filename="../Project.py" line="2114"/>
         <source>Introspect Database</source>
         <translation>Veritabanı İnceleme</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2073"/>
+        <location filename="../Project.py" line="2143"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2085"/>
+        <location filename="../Project.py" line="2155"/>
         <source>Database tables flushed successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2264"/>
+        <location filename="../Project.py" line="2334"/>
         <source>SQL Files (*.sql)</source>
         <translation>SQL Dosyaları (*.sql)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2596"/>
+        <location filename="../Project.py" line="2666"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2611"/>
+        <location filename="../Project.py" line="2681"/>
         <source>Cache tables created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2649"/>
+        <location filename="../Project.py" line="2719"/>
         <source>JSON Files (*.json)</source>
         <translation>JSON Dosyaları (*.json)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2651"/>
+        <location filename="../Project.py" line="2721"/>
         <source>XML Files (*.xml)</source>
         <translation>XML Dosyaları (*.xml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2653"/>
+        <location filename="../Project.py" line="2723"/>
         <source>YAML Files (*.yaml)</source>
         <translation>YAML Dosyaları (*.yaml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2762"/>
+        <location filename="../Project.py" line="2851"/>
         <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="255"/>
+        <location filename="../Project.py" line="265"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="255"/>
+        <location filename="../Project.py" line="265"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="260"/>
+        <location filename="../Project.py" line="270"/>
         <source>Shows the Django help index</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="262"/>
+        <location filename="../Project.py" line="272"/>
         <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"/>
+        <location filename="../Project.py" line="1056"/>
         <source>New template...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1055"/>
+        <location filename="../Project.py" line="1065"/>
         <source>Update all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1058"/>
+        <location filename="../Project.py" line="1068"/>
         <source>Update selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1069"/>
+        <location filename="../Project.py" line="1079"/>
         <source>Compile all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1072"/>
+        <location filename="../Project.py" line="1082"/>
         <source>Compile selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2931"/>
+        <location filename="../Project.py" line="3020"/>
         <source>Initializing message catalog for &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3190"/>
+        <location filename="../Project.py" line="3279"/>
         <source>No current site selected or no site created yet. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2951"/>
+        <location filename="../Project.py" line="3040"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3063"/>
+        <location filename="../Project.py" line="3152"/>
         <source>Updating message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3154"/>
+        <location filename="../Project.py" line="3243"/>
         <source>No locales detected. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3114"/>
+        <location filename="../Project.py" line="3203"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3180"/>
+        <location filename="../Project.py" line="3269"/>
         <source>Compiling message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3197"/>
+        <location filename="../Project.py" line="3286"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1062"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1065"/>
+        <location filename="../Project.py" line="1075"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1797"/>
+        <location filename="../Project.py" line="1866"/>
         <source>Start Global Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1797"/>
+        <location filename="../Project.py" line="1866"/>
         <source>Enter the name of the new global Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1819"/>
+        <location filename="../Project.py" line="1888"/>
         <source>Start Local Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1819"/>
+        <location filename="../Project.py" line="1888"/>
         <source>Enter the name of the new local Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3095"/>
+        <location filename="../Project.py" line="3184"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2792"/>
+        <location filename="../Project.py" line="2881"/>
         <source>Change Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="651"/>
+        <location filename="../Project.py" line="661"/>
         <source>Change &amp;Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="656"/>
+        <location filename="../Project.py" line="666"/>
         <source>Change the password of a user</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="658"/>
+        <location filename="../Project.py" line="668"/>
         <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="665"/>
+        <location filename="../Project.py" line="675"/>
         <source>Create Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="665"/>
+        <location filename="../Project.py" line="675"/>
         <source>Create &amp;Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="670"/>
+        <location filename="../Project.py" line="680"/>
         <source>Create a superuser account</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="672"/>
+        <location filename="../Project.py" line="682"/>
         <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="2850"/>
+        <location filename="../Project.py" line="2939"/>
         <source>Clear Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="683"/>
+        <location filename="../Project.py" line="693"/>
         <source>Clear &amp;Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="688"/>
+        <location filename="../Project.py" line="698"/>
         <source>Clear expired sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="690"/>
+        <location filename="../Project.py" line="700"/>
         <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="972"/>
+        <location filename="../Project.py" line="982"/>
         <source>&amp;Authorization</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="989"/>
+        <location filename="../Project.py" line="999"/>
         <source>&amp;Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2792"/>
+        <location filename="../Project.py" line="2881"/>
         <source>Enter the name of the user:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2862"/>
+        <location filename="../Project.py" line="2951"/>
         <source>Expired sessions cleared successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1447"/>
+        <location filename="../Project.py" line="1457"/>
         <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="1768"/>
+        <location filename="../Project.py" line="1837"/>
         <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="1031"/>
+        <location filename="../Project.py" line="1041"/>
         <source>Open with {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3226"/>
+        <location filename="../Project.py" line="3315"/>
         <source>The translations editor process ({0}) could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1166"/>
+        <location filename="../Project.py" line="1176"/>
         <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="2208"/>
+        <location filename="../Project.py" line="2278"/>
         <source>Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="452"/>
+        <location filename="../Project.py" line="462"/>
         <source>&amp;Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="457"/>
+        <location filename="../Project.py" line="467"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="460"/>
+        <location filename="../Project.py" line="470"/>
         <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="701"/>
+        <location filename="../Project.py" line="711"/>
         <source>Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="701"/>
+        <location filename="../Project.py" line="711"/>
         <source>&amp;Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="706"/>
+        <location filename="../Project.py" line="716"/>
         <source>Show a list of available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="708"/>
+        <location filename="../Project.py" line="718"/>
         <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="716"/>
+        <location filename="../Project.py" line="726"/>
         <source>Show Migrations Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="716"/>
+        <location filename="../Project.py" line="726"/>
         <source>Show Migrations &amp;Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="721"/>
+        <location filename="../Project.py" line="731"/>
         <source>Show a list with the migrations plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="723"/>
+        <location filename="../Project.py" line="733"/>
         <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="908"/>
+        <location filename="../Project.py" line="918"/>
         <source>&amp;Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="731"/>
+        <location filename="../Project.py" line="741"/>
         <source>Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="731"/>
+        <location filename="../Project.py" line="741"/>
         <source>&amp;Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="736"/>
+        <location filename="../Project.py" line="746"/>
         <source>Apply all available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="738"/>
+        <location filename="../Project.py" line="748"/>
         <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="2318"/>
+        <location filename="../Project.py" line="2388"/>
         <source>Apply Selected Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="750"/>
+        <location filename="../Project.py" line="760"/>
         <source>Apply selected migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="752"/>
+        <location filename="../Project.py" line="762"/>
         <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="2377"/>
+        <location filename="../Project.py" line="2447"/>
         <source>Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="761"/>
+        <location filename="../Project.py" line="771"/>
         <source>&amp;Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="766"/>
+        <location filename="../Project.py" line="776"/>
         <source>Unapply all migrations for an app</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="768"/>
+        <location filename="../Project.py" line="778"/>
         <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="2456"/>
+        <location filename="../Project.py" line="2526"/>
         <source>Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="776"/>
+        <location filename="../Project.py" line="786"/>
         <source>&amp;Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="781"/>
+        <location filename="../Project.py" line="791"/>
         <source>Generate migrations for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="783"/>
+        <location filename="../Project.py" line="793"/>
         <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="2488"/>
+        <location filename="../Project.py" line="2558"/>
         <source>No migrations available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2343"/>
+        <location filename="../Project.py" line="2413"/>
         <source>Apply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2377"/>
+        <location filename="../Project.py" line="2447"/>
         <source>Select an application:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2501"/>
+        <location filename="../Project.py" line="2571"/>
         <source>Squash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="790"/>
+        <location filename="../Project.py" line="800"/>
         <source>S&amp;quash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="795"/>
+        <location filename="../Project.py" line="805"/>
         <source>Squash migrations of an application of the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="797"/>
+        <location filename="../Project.py" line="807"/>
         <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="503"/>
+        <location filename="../Project.py" line="513"/>
         <source>Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="513"/>
         <source>&amp;Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="508"/>
+        <location filename="../Project.py" line="518"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="511"/>
+        <location filename="../Project.py" line="521"/>
         <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="520"/>
+        <location filename="../Project.py" line="530"/>
         <source>Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="530"/>
         <source>&amp;Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="525"/>
+        <location filename="../Project.py" line="535"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="528"/>
+        <location filename="../Project.py" line="538"/>
         <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="2246"/>
+        <location filename="../Project.py" line="2316"/>
         <source>SQL Migrate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3271"/>
+        <location filename="../Project.py" line="3360"/>
         <source>Check Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="296"/>
+        <location filename="../Project.py" line="306"/>
         <source>Inspects the Django project for common problems</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="298"/>
+        <location filename="../Project.py" line="308"/>
         <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="615"/>
+        <location filename="../Project.py" line="625"/>
         <source>Run Testsuite (-Wall)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="620"/>
+        <location filename="../Project.py" line="630"/>
         <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="623"/>
+        <location filename="../Project.py" line="633"/>
         <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>
@@ -1766,7 +1834,7 @@
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="389"/>
+        <location filename="../../PluginProjectDjango.py" line="391"/>
         <source>Django</source>
         <translation>Django(jango)</translation>
     </message>

eric ide

mercurial