Added support for the check command.

Tue, 20 Dec 2016 16:15:21 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 20 Dec 2016 16:15:21 +0100
changeset 78
5822c2e2b1c7
parent 77
f8e92eaaba6e
child 79
aa7cee37a274

Added support for the check command.

ChangeLog file | annotate | diff | comparison | revisions
PluginDjango.e4p file | annotate | diff | comparison | revisions
PluginProjectDjango.py file | annotate | diff | comparison | revisions
ProjectDjango/DjangoCheckOptionsDialog.py file | annotate | diff | comparison | revisions
ProjectDjango/DjangoCheckOptionsDialog.ui file | annotate | diff | comparison | revisions
ProjectDjango/Project.py file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_de.qm file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_de.ts file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_empty.ts file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_en.ts file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_es.ts file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_ru.ts file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_tr.ts file | annotate | diff | comparison | revisions
diff -r f8e92eaaba6e -r 5822c2e2b1c7 ChangeLog
--- a/ChangeLog	Tue Dec 20 12:26:33 2016 +0100
+++ b/ChangeLog	Tue Dec 20 16:15:21 2016 +0100
@@ -4,6 +4,7 @@
 - bug fixes
 - adjustments for Django >= 1.9.0
 - added support for the various migration commands
+- added support for the check command
 
 Version 4.1.0:
 - some bug fixes
diff -r f8e92eaaba6e -r 5822c2e2b1c7 PluginDjango.e4p
--- a/PluginDjango.e4p	Tue Dec 20 12:26:33 2016 +0100
+++ b/PluginDjango.e4p	Tue Dec 20 16:15:21 2016 +0100
@@ -17,6 +17,7 @@
     <Source>PluginProjectDjango.py</Source>
     <Source>ProjectDjango/ConfigurationPage/DjangoPage.py</Source>
     <Source>ProjectDjango/ConfigurationPage/__init__.py</Source>
+    <Source>ProjectDjango/DjangoCheckOptionsDialog.py</Source>
     <Source>ProjectDjango/DjangoDialog.py</Source>
     <Source>ProjectDjango/DjangoDumpdataDataDialog.py</Source>
     <Source>ProjectDjango/DjangoLoaddataDataDialog.py</Source>
@@ -30,6 +31,7 @@
   </Sources>
   <Forms>
     <Form>ProjectDjango/ConfigurationPage/DjangoPage.ui</Form>
+    <Form>ProjectDjango/DjangoCheckOptionsDialog.ui</Form>
     <Form>ProjectDjango/DjangoDialog.ui</Form>
     <Form>ProjectDjango/DjangoDumpdataDataDialog.ui</Form>
     <Form>ProjectDjango/DjangoLoaddataDataDialog.ui</Form>
diff -r f8e92eaaba6e -r 5822c2e2b1c7 PluginProjectDjango.py
--- a/PluginProjectDjango.py	Tue Dec 20 12:26:33 2016 +0100
+++ b/PluginProjectDjango.py	Tue Dec 20 16:15:21 2016 +0100
@@ -135,6 +135,8 @@
             "TranslationsEditor": "",
             
             "UseExternalBrowser": False,
+            
+            "CheckDeployMode": False,
         }
         if isWindowsPlatform():
             self.__defaults["ConsoleCommandNoClose"] = "cmd.exe /k"
@@ -366,7 +368,7 @@
             return int(Preferences.Prefs.settings.value(
                 self.PreferencesKey + "/" + key, self.__defaults[key]))
         elif key in ["UsePlainPythonPy2", "UsePlainPythonPy3", "UseIPv6",
-                     "UseExternalBrowser"]:
+                     "UseExternalBrowser", "CheckDeployMode"]:
             return Preferences.toBool(Preferences.Prefs.settings.value(
                 self.PreferencesKey + "/" + key, self.__defaults[key]))
         else:
diff -r f8e92eaaba6e -r 5822c2e2b1c7 ProjectDjango/DjangoCheckOptionsDialog.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ProjectDjango/DjangoCheckOptionsDialog.py	Tue Dec 20 16:15:21 2016 +0100
@@ -0,0 +1,185 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2016 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing a dialog to enter the options for a check operation.
+"""
+
+from __future__ import unicode_literals
+try:
+    str = unicode    # __IGNORE_WARNING__
+except NameError:
+    pass
+
+import os
+
+from PyQt5.QtCore import pyqtSlot, Qt, QProcess
+from PyQt5.QtWidgets import QDialog
+
+from E5Gui import E5FileDialog
+
+from .Ui_DjangoCheckOptionsDialog import Ui_DjangoCheckOptionsDialog
+
+import Preferences
+import Utilities
+import UI.PixmapCache
+
+
+class DjangoCheckOptionsDialog(QDialog, Ui_DjangoCheckOptionsDialog):
+    """
+    Class implementing a dialog to enter the options for a check operation.
+    """
+    def __init__(self, python, path, apps, deployMode, parent=None):
+        """
+        Constructor
+        
+        @param python path of the Python executable
+        @type str
+        @param path site path to run the manage.py script with
+        @type str
+        @param apps list of recently used application strings
+        @type list of str
+        @param deployMode flag indicating to activate the deployment mode
+        @type bool
+        @param parent reference to the parent widget
+        @type QWidget
+        """
+        super(DjangoCheckOptionsDialog, self).__init__(parent)
+        self.setupUi(self)
+        
+        self.settingsFileButton.setIcon(UI.PixmapCache.getIcon("open.png"))
+        
+        self.__python = python
+        self.__path = path
+        
+        self.appsComboBox.addItems([""] + apps)
+        
+        self.deployCheckBox.setChecked(deployMode)
+        self.on_deployCheckBox_toggled(deployMode)
+    
+    @pyqtSlot(bool)
+    def on_deployCheckBox_toggled(self, checked):
+        """
+        Private slot handling a change of the deploy check box.
+        
+        @param checked state of the check box
+        @type bool
+        """
+        self.settingsFileGroup.setEnabled(checked)
+        self.__populateTagsList(checked)
+    
+    @pyqtSlot()
+    def on_settingsFileButton_clicked(self):
+        """
+        Private slot to select a settings file via a file selection dialog.
+        """
+        path = self.__moduleToPath(self.settingsFileEdit.text())
+        if not path:
+            path = self.__path
+        settingsFile = E5FileDialog.getOpenFileName(
+            self,
+            self.tr("Select settings file"),
+            path,
+            self.tr("Python Files (*.py)"))
+        
+        if settingsFile:
+            self.settingsFileEdit.setText(self.__pathToModule(settingsFile))
+    
+    def __pathToModule(self, path):
+        """
+        Private method to convert a file path including a .py extension to a
+        module name.
+        
+        @param path file path to be converted
+        @type str
+        @return module name
+        @rtype str
+        """
+        if self.__path.endswith(("/", "\\")):
+            # cope with a bug in eric
+            start = self.__path[:-1]
+        else:
+            start = self.__path
+        relPath = Utilities.relativeUniversalPath(path, start)
+        mod = os.path.splitext(relPath)[0].replace("/", ".")
+        return mod
+    
+    def __moduleToPath(self, moduleName):
+        """
+        Private method to convert a module name to an file path.
+        
+        @param moduleName module name to be converted
+        @type str
+        @return file path
+        @rtype str
+        """
+        if moduleName:
+            mod = "{0}.py".format(moduleName.replace(".", "/"))
+            if not os.path.isabs(mod):
+                mod = os.path.join(self.__path, mod)
+            
+            path = Utilities.toNativeSeparators(mod)
+        else:
+            path = ""
+        return path
+    
+    def __populateTagsList(self, deployMode):
+        """
+        Private slot to populate the tags list.
+        
+        @param deployMode flag indicating the deployment mode
+        @type bool
+        """
+        # step 1: save the selected tags
+        selectedTags = []
+        for itm in self.tagsList.selectedItems():
+            selectedTags.append(itm.text())
+        
+        # step 2: clear the list
+        self.tagsList.clear()
+        
+        # step 3: get the available tags and populate the list
+        args = []
+        args.append("manage.py")
+        args.append("check")
+        args.append("--list-tags")
+        if deployMode:
+            args.append("--deploy")
+        
+        proc = QProcess()
+        if self.__path:
+            proc.setWorkingDirectory(self.__path)
+        proc.start(self.__python, args)
+        if proc.waitForStarted():
+            if proc.waitForFinished():
+                output = str(proc.readAllStandardOutput(),
+                             Preferences.getSystem("IOEncoding"), 'replace')
+                for line in output.splitlines():
+                    self.tagsList.addItem(line.strip())
+        
+        # step 4: re-select tags
+        for tag in selectedTags:
+            items = self.tagsList.findItems(tag, Qt.MatchCaseSensitive)
+            if items:
+                items[0].setSelected(True)
+    
+    def getData(self):
+        """
+        Public method to get the options for the check operation.
+        
+        @return tuple containing the deployment flag, list of selected tags,
+            applications string and the settings file
+        @rtype tuple of bool, list of str, str and str
+        """
+        selectedTags = []
+        for itm in self.tagsList.selectedItems():
+            selectedTags.append(itm.text())
+        
+        return (
+            self.deployCheckBox.isChecked(),
+            selectedTags,
+            self.appsComboBox.currentText(),
+            self.settingsFileEdit.text(),
+        )
diff -r f8e92eaaba6e -r 5822c2e2b1c7 ProjectDjango/DjangoCheckOptionsDialog.ui
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ProjectDjango/DjangoCheckOptionsDialog.ui	Tue Dec 20 16:15:21 2016 +0100
@@ -0,0 +1,152 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ui version="4.0">
+ <class>DjangoCheckOptionsDialog</class>
+ <widget class="QDialog" name="DjangoCheckOptionsDialog">
+  <property name="geometry">
+   <rect>
+    <x>0</x>
+    <y>0</y>
+    <width>500</width>
+    <height>450</height>
+   </rect>
+  </property>
+  <property name="windowTitle">
+   <string>Check Options</string>
+  </property>
+  <property name="sizeGripEnabled">
+   <bool>true</bool>
+  </property>
+  <layout class="QVBoxLayout" name="verticalLayout">
+   <item>
+    <widget class="QCheckBox" name="deployCheckBox">
+     <property name="toolTip">
+      <string>Select to enable checks for deployment mode</string>
+     </property>
+     <property name="text">
+      <string>Deployment Mode</string>
+     </property>
+    </widget>
+   </item>
+   <item>
+    <widget class="QLabel" name="label">
+     <property name="text">
+      <string>Select type of checks (leave unselected for all checks):</string>
+     </property>
+     <property name="wordWrap">
+      <bool>true</bool>
+     </property>
+    </widget>
+   </item>
+   <item>
+    <widget class="QListWidget" name="tagsList">
+     <property name="alternatingRowColors">
+      <bool>true</bool>
+     </property>
+     <property name="selectionMode">
+      <enum>QAbstractItemView::ExtendedSelection</enum>
+     </property>
+     <property name="sortingEnabled">
+      <bool>true</bool>
+     </property>
+    </widget>
+   </item>
+   <item>
+    <widget class="QLabel" name="label_2">
+     <property name="text">
+      <string>Enter the list of applications separated by spaces (leave empty for all apps):</string>
+     </property>
+     <property name="wordWrap">
+      <bool>true</bool>
+     </property>
+    </widget>
+   </item>
+   <item>
+    <widget class="E5ClearableComboBox" name="appsComboBox">
+     <property name="editable">
+      <bool>true</bool>
+     </property>
+    </widget>
+   </item>
+   <item>
+    <widget class="QGroupBox" name="settingsFileGroup">
+     <property name="title">
+      <string>Settings module for deployment mode</string>
+     </property>
+     <layout class="QHBoxLayout" name="horizontalLayout">
+      <item>
+       <widget class="E5ClearableLineEdit" name="settingsFileEdit">
+        <property name="toolTip">
+         <string>Enter the module name of the deployment settings</string>
+        </property>
+       </widget>
+      </item>
+      <item>
+       <widget class="QToolButton" name="settingsFileButton">
+        <property name="toolTip">
+         <string>Press to select the settings module file via a file selection dialog</string>
+        </property>
+       </widget>
+      </item>
+     </layout>
+    </widget>
+   </item>
+   <item>
+    <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>E5ClearableLineEdit</class>
+   <extends>QLineEdit</extends>
+   <header>E5Gui/E5LineEdit.h</header>
+  </customwidget>
+  <customwidget>
+   <class>E5ClearableComboBox</class>
+   <extends>QComboBox</extends>
+   <header>E5Gui/E5ComboBox.h</header>
+  </customwidget>
+ </customwidgets>
+ <resources/>
+ <connections>
+  <connection>
+   <sender>buttonBox</sender>
+   <signal>accepted()</signal>
+   <receiver>DjangoCheckOptionsDialog</receiver>
+   <slot>accept()</slot>
+   <hints>
+    <hint type="sourcelabel">
+     <x>228</x>
+     <y>528</y>
+    </hint>
+    <hint type="destinationlabel">
+     <x>157</x>
+     <y>274</y>
+    </hint>
+   </hints>
+  </connection>
+  <connection>
+   <sender>buttonBox</sender>
+   <signal>rejected()</signal>
+   <receiver>DjangoCheckOptionsDialog</receiver>
+   <slot>reject()</slot>
+   <hints>
+    <hint type="sourcelabel">
+     <x>296</x>
+     <y>534</y>
+    </hint>
+    <hint type="destinationlabel">
+     <x>286</x>
+     <y>274</y>
+    </hint>
+   </hints>
+  </connection>
+ </connections>
+</ui>
diff -r f8e92eaaba6e -r 5822c2e2b1c7 ProjectDjango/Project.py
--- a/ProjectDjango/Project.py	Tue Dec 20 12:26:33 2016 +0100
+++ b/ProjectDjango/Project.py	Tue Dec 20 16:15:21 2016 +0100
@@ -270,6 +270,24 @@
         self.aboutDjangoAct.triggered.connect(self.__djangoInfo)
         self.actions.append(self.aboutDjangoAct)
         
+        ##############################
+        ## check action below       ##
+        ##############################
+        
+        self.checkAct = E5Action(
+            self.tr('Check Project'),
+            self.tr('Check Project'),
+            0, 0,
+            self, 'django_check_project')
+        self.checkAct.setStatusTip(self.tr(
+            'Inspects the Django project for common problems'))
+        self.checkAct.setWhatsThis(self.tr(
+            """<b>Check Project</b>"""
+            """<p>This inspects the Django project for common problems.</p>"""
+        ))
+        self.checkAct.triggered.connect(self.__performCheck)
+        self.actions.append(self.checkAct)
+        
         self.__initDatabaseActions()
         self.__initDatabaseSqlActions()
         self.__initMigrationActions()
@@ -816,6 +834,8 @@
         menu.addAction(self.startGlobalApplicationAct)
         menu.addAction(self.startLocalApplicationAct)
         menu.addSeparator()
+        menu.addAction(self.checkAct)
+        menu.addSeparator()
         menu.addMenu(self.__initDatabaseMenu())
         menu.addMenu(self.__initMigrationsMenu())
         menu.addSeparator()
@@ -3219,3 +3239,46 @@
                     self.tr('The translations editor process ({0}) could'
                             ' not be started.')
                     .format(os.path.basename(editor)))
+    
+    ##################################################################
+    ## slots below implement check functions
+    ##################################################################
+    
+    def __performCheck(self):
+        """
+        Private slot to inspect the project for common problems.
+        """
+        try:
+            path = self.__sitePath()
+        except DjangoNoSiteSelectedException:
+            return
+        
+        from .DjangoCheckOptionsDialog import DjangoCheckOptionsDialog
+        dlg = DjangoCheckOptionsDialog(
+            self.__getPythonExecutable(), path, self.getRecentApplications(),
+            self.__plugin.getPreferences("CheckDeployMode"),
+        )
+        if dlg.exec_() == QDialog.Accepted:
+            deploy, tags, appsStr, settingsFile = dlg.getData()
+            self.__plugin.setPreferences("CheckDeployMode", deploy)
+            if appsStr != "":
+                self.setMostRecentApplication(appsStr)
+            apps = appsStr.split()
+            
+            args = []
+            args.append(self.__getPythonExecutable())
+            args.append("manage.py")
+            args.append("check")
+            for tag in tags:
+                args.append("--tag")
+                args.append(tag)
+            if deploy:
+                args.append("--deploy")
+                if settingsFile:
+                    args.append("--settings={0}".format(settingsFile))
+            args += apps
+            
+            dia = DjangoDialog(self.tr("Check Project"))
+            res = dia.startProcess(args, path, mergedOutput=True)
+            if res:
+                dia.exec_()
diff -r f8e92eaaba6e -r 5822c2e2b1c7 ProjectDjango/i18n/django_de.qm
Binary file ProjectDjango/i18n/django_de.qm has changed
diff -r f8e92eaaba6e -r 5822c2e2b1c7 ProjectDjango/i18n/django_de.ts
--- a/ProjectDjango/i18n/django_de.ts	Tue Dec 20 12:26:33 2016 +0100
+++ b/ProjectDjango/i18n/django_de.ts	Tue Dec 20 16:15:21 2016 +0100
@@ -1,6 +1,59 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!DOCTYPE TS><TS version="2.0" language="de" sourcelanguage="">
 <context>
+    <name>DjangoCheckOptionsDialog</name>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="14"/>
+        <source>Check Options</source>
+        <translation>Check Optionen</translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="23"/>
+        <source>Select to enable checks for deployment mode</source>
+        <translation>Auswählen, um Tests für den Deployment Modus zu aktivieren</translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="26"/>
+        <source>Deployment Mode</source>
+        <translation>Deployment Modus</translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="33"/>
+        <source>Select type of checks (leave unselected for all checks):</source>
+        <translation>Testtypen auswählen (keine Auswahl entspricht allen):</translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="56"/>
+        <source>Enter the list of applications separated by spaces (leave empty for all apps):</source>
+        <translation>Gib die Liste der Anwendungen durch Leerzeichen getrennt ein (leer lassen, um alle zu prüfen):</translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="73"/>
+        <source>Settings module for deployment mode</source>
+        <translation>Settings Modul für Deployment Modus</translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="79"/>
+        <source>Enter the module name of the deployment settings</source>
+        <translation>Gib den Modulnamen mit den Deploymentsettings ein</translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="86"/>
+        <source>Press to select the settings module file via a file selection dialog</source>
+        <translation>Drücken, um die Datei des Settingsmoduls mittels Dateiauswhldialog zu wählen</translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <source>Select settings file</source>
+        <translation>Settingsdatei auswählen</translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <source>Python Files (*.py)</source>
+        <translation>Python Datei (*.py)</translation>
+    </message>
+</context>
+<context>
     <name>DjangoDialog</name>
     <message>
         <location filename="../DjangoDialog.ui" line="14"/>
@@ -431,7 +484,7 @@
         <translation>Wähle die virtuelle Umgebung für Python 2</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="380"/>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="179"/>
         <source>Translations Editor</source>
         <translation>Übersetzungseditor</translation>
     </message>
@@ -512,17 +565,17 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="807"/>
+        <location filename="../Project.py" line="825"/>
         <source>D&amp;jango</source>
         <translation>D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1180"/>
         <source>New Form</source>
         <translation>Neues Formular</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1127"/>
+        <location filename="../Project.py" line="1147"/>
         <source>The file already exists! Overwrite it?</source>
         <translation>Die Datei existiert bereits. Überschreiben?</translation>
     </message>
@@ -617,7 +670,7 @@
         <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="1988"/>
+        <location filename="../Project.py" line="2008"/>
         <source>Run Web-Browser</source>
         <translation>Web-Browser starten</translation>
     </message>
@@ -637,7 +690,7 @@
         <translation>&lt;b&gt;Web-Browser starten&lt;/b&gt;&lt;p&gt;Startet den Standard Web-Browser mit der URL des Django Web-Servers.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1459"/>
         <source>About Django</source>
         <translation>Über Django</translation>
     </message>
@@ -657,107 +710,107 @@
         <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="285"/>
+        <location filename="../Project.py" line="303"/>
         <source>Synchronize</source>
         <translation>Synchronisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="285"/>
+        <location filename="../Project.py" line="303"/>
         <source>&amp;Synchronize</source>
         <translation>&amp;Synchronisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="290"/>
+        <location filename="../Project.py" line="308"/>
         <source>Synchronizes the database</source>
         <translation>Synchronisiert die Datenbank</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="292"/>
+        <location filename="../Project.py" line="310"/>
         <source>&lt;b&gt;Synchronize&lt;/b&gt;&lt;p&gt;Synchronizes the database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Synchronisieren&lt;/b&gt;&lt;p&gt;Synchronisiert die Datenbank.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="847"/>
+        <location filename="../Project.py" line="867"/>
         <source>&amp;Database</source>
         <translation>&amp;Datenbank</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1865"/>
+        <location filename="../Project.py" line="1885"/>
         <source>Project</source>
         <translation>Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1605"/>
+        <location filename="../Project.py" line="1625"/>
         <source>Application</source>
         <translation>Anwendung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1607"/>
+        <location filename="../Project.py" line="1627"/>
         <source>Start Django</source>
         <translation>Django starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1607"/>
+        <location filename="../Project.py" line="1627"/>
         <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="1684"/>
+        <location filename="../Project.py" line="1704"/>
         <source>Start Django Project</source>
         <translation>Django Projekt starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1660"/>
+        <location filename="../Project.py" line="1680"/>
         <source>Django project created successfully.</source>
         <translation>Das Django Projekt wurde erfolgreich erzeugt.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1684"/>
+        <location filename="../Project.py" line="1704"/>
         <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="1712"/>
+        <location filename="../Project.py" line="1732"/>
         <source>Start Django Application</source>
         <translation>Django Anwendung starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1746"/>
+        <location filename="../Project.py" line="1766"/>
         <source>Django application created successfully.</source>
         <translation>Die Django Anwendung wurde erfolgreich erzeugt.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1829"/>
+        <location filename="../Project.py" line="1849"/>
         <source>Select Project</source>
         <translation>Wähle Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1829"/>
+        <location filename="../Project.py" line="1849"/>
         <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="1863"/>
+        <location filename="../Project.py" line="1883"/>
         <source>None</source>
         <translation>keines</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3230"/>
+        <location filename="../Project.py" line="3250"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1942"/>
+        <location filename="../Project.py" line="1962"/>
         <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="1988"/>
+        <location filename="../Project.py" line="2008"/>
         <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="2839"/>
+        <location filename="../Project.py" line="2859"/>
         <source>The Django process could not be started.</source>
         <translation>Der Django Prozess konnte nicht gestartet werden.</translation>
     </message>
@@ -767,112 +820,112 @@
         <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="2502"/>
+        <location filename="../Project.py" line="2522"/>
         <source>Diff Settings</source>
         <translation>Settings Unterschiede</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="523"/>
+        <location filename="../Project.py" line="541"/>
         <source>&amp;Diff Settings</source>
         <translation>Settings &amp;Unterschiede</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="528"/>
+        <location filename="../Project.py" line="546"/>
         <source>Shows the modification made to the settings</source>
         <translation>Zeigt die Änderungen gegenüber dem Standard</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="530"/>
+        <location filename="../Project.py" line="548"/>
         <source>&lt;b&gt;Diff Settings&lt;/b&gt;&lt;p&gt;Shows the modification made to the settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Settings Unterschiede&lt;/b&gt;&lt;p&gt;Zeigt die Änderungen gegenüber dem Standard.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="926"/>
+        <location filename="../Project.py" line="946"/>
         <source>&amp;Tools</source>
         <translation>&amp;Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1868"/>
+        <location filename="../Project.py" line="1888"/>
         <source>&amp;Current Django project ({0})</source>
         <translation>&amp;Aktuelles Django Projekt ({0})</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2523"/>
+        <location filename="../Project.py" line="2543"/>
         <source>Cleanup</source>
         <translation>Aufräumen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="537"/>
+        <location filename="../Project.py" line="555"/>
         <source>&amp;Cleanup</source>
         <translation>&amp;Aufräumen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="542"/>
+        <location filename="../Project.py" line="560"/>
         <source>Cleans out old data from the database</source>
         <translation>Löscht veraltete Daten aus der Datenbank</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="544"/>
+        <location filename="../Project.py" line="562"/>
         <source>&lt;b&gt;Cleanup&lt;/b&gt;&lt;p&gt;Cleans out old data from the database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aufräumen&lt;/b&gt;&lt;p&gt;Löscht veraltete Daten aus der Datenbank.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2535"/>
+        <location filename="../Project.py" line="2555"/>
         <source>Database cleaned up successfully.</source>
         <translation>Datenbank erfolgreich aufgeräumt.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2546"/>
+        <location filename="../Project.py" line="2566"/>
         <source>Validate</source>
         <translation>Validieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="551"/>
+        <location filename="../Project.py" line="569"/>
         <source>&amp;Validate</source>
         <translation>&amp;Validieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="556"/>
+        <location filename="../Project.py" line="574"/>
         <source>Validates all installed models</source>
         <translation>Validiert alle installierten Modelle</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="558"/>
+        <location filename="../Project.py" line="576"/>
         <source>&lt;b&gt;Validate&lt;/b&gt;&lt;p&gt;Validates all installed models.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Validieren&lt;/b&gt;&lt;p&gt;Validiert alle installierten Modelle&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1530"/>
         <source>Select Applications</source>
         <translation>Applikation auswählen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1530"/>
         <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="565"/>
+        <location filename="../Project.py" line="583"/>
         <source>Start Python Console</source>
         <translation>Starte Python Konsole</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="565"/>
+        <location filename="../Project.py" line="583"/>
         <source>Start &amp;Python Console</source>
         <translation>Starte &amp;Python Konsole</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="570"/>
+        <location filename="../Project.py" line="588"/>
         <source>Starts a Python interactive interpreter</source>
         <translation>Startet einen interaktiven Python Interpreter</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="572"/>
+        <location filename="../Project.py" line="590"/>
         <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="2601"/>
+        <location filename="../Project.py" line="2621"/>
         <source>Create Cache Tables</source>
         <translation>Erzeuge Cache Tabellen</translation>
     </message>
@@ -892,342 +945,342 @@
         <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="2608"/>
+        <location filename="../Project.py" line="2628"/>
         <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="2623"/>
+        <location filename="../Project.py" line="2643"/>
         <source>Cache tables created successfully.</source>
         <translation>Cache Tabellen erfolgreich erzeugt.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="299"/>
+        <location filename="../Project.py" line="317"/>
         <source>Introspect</source>
         <translation>Untersuchen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="299"/>
+        <location filename="../Project.py" line="317"/>
         <source>&amp;Introspect</source>
         <translation>&amp;Untersuchen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="304"/>
+        <location filename="../Project.py" line="322"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation>Untersucht die Datenbanktabellen und gibt ein Django Modellmodul aus</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="307"/>
+        <location filename="../Project.py" line="325"/>
         <source>&lt;b&gt;Introspect&lt;/b&gt;&lt;p&gt;Introspects the database tables and outputs a Django model module.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Untersuchen&lt;/b&gt;&lt;p&gt;Untersucht die Datenbanktabellen und gibt ein Django Modellmodul aus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2029"/>
+        <location filename="../Project.py" line="2049"/>
         <source>Introspect Database</source>
         <translation>Datenbank untersuchen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="315"/>
+        <location filename="../Project.py" line="333"/>
         <source>Flush</source>
         <translation>Neuinitialisierung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="315"/>
+        <location filename="../Project.py" line="333"/>
         <source>&amp;Flush</source>
         <translation>&amp;Neuinitialisierung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="320"/>
+        <location filename="../Project.py" line="338"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation>Setzt alle Datenbanktabelle in ihren Ursprungszustand zurück</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="323"/>
+        <location filename="../Project.py" line="341"/>
         <source>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Returns all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neuinitialisierung&lt;/b&gt;&lt;p&gt;Setzt alle Datenbanktabelle in ihren Ursprungszustand zurück.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2187"/>
+        <location filename="../Project.py" line="2207"/>
         <source>Flush Database</source>
         <translation>Datenbank neu initialisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2058"/>
+        <location filename="../Project.py" line="2078"/>
         <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="2070"/>
+        <location filename="../Project.py" line="2090"/>
         <source>Database tables flushed successfully.</source>
         <translation>Datenbank erfolgreich neu initialisiert.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="331"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start Client Console</source>
         <translation>Starte Datenbank Konsole</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="336"/>
+        <location filename="../Project.py" line="354"/>
         <source>Starts a console window for the database client</source>
         <translation>Started ein Konsolenfenster für den Datenbankklienten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="338"/>
+        <location filename="../Project.py" line="356"/>
         <source>&lt;b&gt;Start Client Console&lt;/b&gt;&lt;p&gt;Starts a console window for the database client.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Starte Datenbank Konsole&lt;/b&gt;&lt;p&gt;Started ein Konsolenfenster für den Datenbankklienten.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="331"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start &amp;Client Console</source>
         <translation>Starte &amp;Datenbank Konsole</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2145"/>
+        <location filename="../Project.py" line="2165"/>
         <source>Create Tables</source>
         <translation>Tabellen erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="367"/>
         <source>Create &amp;Tables</source>
         <translation>&amp;Tabellen erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="354"/>
+        <location filename="../Project.py" line="372"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation>Zeigt die CREATE TABLE SQL Befehle für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="357"/>
+        <location filename="../Project.py" line="375"/>
         <source>&lt;b&gt;Create Tables&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tabellen erzeugen&lt;/b&gt;&lt;p&gt;Zeigt die CREATE TABLE SQL Befehle für eine oder mehrere Anwendungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="871"/>
+        <location filename="../Project.py" line="891"/>
         <source>Show &amp;SQL</source>
         <translation>Zeige &amp;SQL</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2152"/>
+        <location filename="../Project.py" line="2172"/>
         <source>Create Indexes</source>
         <translation>Indices erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="366"/>
+        <location filename="../Project.py" line="384"/>
         <source>Create &amp;Indexes</source>
         <translation>&amp;Indices erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="374"/>
+        <location filename="../Project.py" line="392"/>
         <source>&lt;b&gt;Create Indexes&lt;/b&gt;&lt;p&gt;Prints the CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Indices erzeugen&lt;/b&gt;&lt;p&gt;Zeigt die CREATE INDEX SQL Befehle für eine oder mehrere Anwendungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2159"/>
+        <location filename="../Project.py" line="2179"/>
         <source>Create Everything</source>
         <translation>Alles erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="383"/>
+        <location filename="../Project.py" line="401"/>
         <source>Create &amp;Everything</source>
         <translation>&amp;Alles erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="388"/>
+        <location filename="../Project.py" line="406"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation>Zeigt die CREATE ... SQL Befehle für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="391"/>
+        <location filename="../Project.py" line="409"/>
         <source>&lt;b&gt;Create Everything&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alles erzeugen&lt;/b&gt;&lt;p&gt;Zeigt die CREATE TABLE, spezifische und CREATE INDEX SQL Befehle für eine oder mehrere Anwendungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="371"/>
+        <location filename="../Project.py" line="389"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation>Zeigt die CREATE INDEX SQL Befehle für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2166"/>
+        <location filename="../Project.py" line="2186"/>
         <source>Custom Statements</source>
         <translation>Spezifische Befehle</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="400"/>
+        <location filename="../Project.py" line="418"/>
         <source>&amp;Custom Statements</source>
         <translation>&amp;Spezifische Befehle</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="405"/>
+        <location filename="../Project.py" line="423"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation>Zeigt spezifische SQL Befehle für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="408"/>
+        <location filename="../Project.py" line="426"/>
         <source>&lt;b&gt;Custom Statements&lt;/b&gt;&lt;p&gt;Prints the custom table modifying SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Spezifische Befehle&lt;/b&gt;&lt;p&gt;Zeigt spezifische SQL Befehle für eine oder mehrere Anwendungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2173"/>
+        <location filename="../Project.py" line="2193"/>
         <source>Drop Tables</source>
         <translation>Tabellen löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="417"/>
+        <location filename="../Project.py" line="435"/>
         <source>&amp;Drop Tables</source>
         <translation>Tabellen &amp;löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="422"/>
+        <location filename="../Project.py" line="440"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation>Zeigt die DROP TABLE SQL Befehle für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="425"/>
+        <location filename="../Project.py" line="443"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tabellen löschen&lt;/b&gt;&lt;p&gt;Zeigt die DROP TABLE SQL Befehle für eine oder mehrere Anwendungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="451"/>
+        <location filename="../Project.py" line="469"/>
         <source>&amp;Flush Database</source>
         <translation>&amp;Datenbank neu initialisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="456"/>
+        <location filename="../Project.py" line="474"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation>Zeigt eine Befehlsliste, um alle Datenbanktabelle in ihren Ursprungszustand zurückzusetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="459"/>
+        <location filename="../Project.py" line="477"/>
         <source>&lt;b&gt;Flush Database&lt;/b&gt;&lt;p&gt;Prints a list of statements to return all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datenbank neu initialisieren&lt;/b&gt;&lt;p/&gt;Zeigt eine Befehlsliste, um alle Datenbanktabelle in ihren Ursprungszustand zurückzusetzen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2194"/>
+        <location filename="../Project.py" line="2214"/>
         <source>Reset Sequences</source>
         <translation>Sequenzen zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="468"/>
+        <location filename="../Project.py" line="486"/>
         <source>Reset &amp;Sequences</source>
         <translation>Se&amp;quenzen zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="473"/>
+        <location filename="../Project.py" line="491"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation>Zeigt die SQL Befehle zum Zurücksetzen von Sequenzen für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="476"/>
+        <location filename="../Project.py" line="494"/>
         <source>&lt;b&gt;Reset Sequences&lt;/b&gt;&lt;p&gt;Prints the SQL statements for resetting sequences for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sequenzen zurücksetzen&lt;/b&gt;&lt;p&gt;Zeigt die SQL Befehle zum Zurücksetzen von Sequenzen für eine oder mehrere Anwendungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2638"/>
+        <location filename="../Project.py" line="2658"/>
         <source>Dump Data</source>
         <translation>Daten sichern</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="583"/>
+        <location filename="../Project.py" line="601"/>
         <source>&amp;Dump Data</source>
         <translation>Daten &amp;sichern</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="588"/>
+        <location filename="../Project.py" line="606"/>
         <source>Dump the database data to a fixture</source>
         <translation>Schreibt die Datenbank in ein Fixture</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="590"/>
+        <location filename="../Project.py" line="608"/>
         <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="946"/>
+        <location filename="../Project.py" line="966"/>
         <source>T&amp;esting</source>
         <translation>&amp;Testen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2236"/>
+        <location filename="../Project.py" line="2256"/>
         <source>SQL Files (*.sql)</source>
         <translation>SQL Dateien (*.sql)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2661"/>
+        <location filename="../Project.py" line="2681"/>
         <source>JSON Files (*.json)</source>
         <translation>JSON Dateien (*.json)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2663"/>
+        <location filename="../Project.py" line="2683"/>
         <source>XML Files (*.xml)</source>
         <translation>XML Dateien (*.xml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2665"/>
+        <location filename="../Project.py" line="2685"/>
         <source>YAML Files (*.yaml)</source>
         <translation>YAML Dateien (*.yaml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2677"/>
+        <location filename="../Project.py" line="2697"/>
         <source>Load Data</source>
         <translation>Daten laden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="597"/>
+        <location filename="../Project.py" line="615"/>
         <source>&amp;Load Data</source>
         <translation>Daten &amp;laden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="602"/>
+        <location filename="../Project.py" line="620"/>
         <source>Load data from fixture files</source>
         <translation>Lädt Daten aus Fixturedateien</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="604"/>
+        <location filename="../Project.py" line="622"/>
         <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="611"/>
+        <location filename="../Project.py" line="629"/>
         <source>Run Testsuite</source>
         <translation>Testsuite starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="611"/>
+        <location filename="../Project.py" line="629"/>
         <source>Run &amp;Testsuite</source>
         <translation>&amp;Testsuite starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="616"/>
+        <location filename="../Project.py" line="634"/>
         <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="618"/>
+        <location filename="../Project.py" line="636"/>
         <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="625"/>
+        <location filename="../Project.py" line="643"/>
         <source>Run Testserver</source>
         <translation>Testserver starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="625"/>
+        <location filename="../Project.py" line="643"/>
         <source>Run Test&amp;server</source>
         <translation>Test&amp;server starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="630"/>
+        <location filename="../Project.py" line="648"/>
         <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="632"/>
+        <location filename="../Project.py" line="650"/>
         <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="2768"/>
+        <location filename="../Project.py" line="2788"/>
         <source>The Django test server could not be started.</source>
         <translation>Der Django Testserver konnte nicht gestartet werden.</translation>
     </message>
@@ -1252,446 +1305,461 @@
         <translation>&lt;b&gt;Hilfe&lt;/b&gt;&lt;p&gt;Zeigt den Django Hilfe Index an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1040"/>
+        <location filename="../Project.py" line="1060"/>
         <source>New template...</source>
         <translation>Neues Template...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1049"/>
+        <location filename="../Project.py" line="1069"/>
         <source>Update all catalogs</source>
         <translation>Alle Kataloge aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1052"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Update selected catalogs</source>
         <translation>Ausgewählte Kataloge aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1063"/>
+        <location filename="../Project.py" line="1083"/>
         <source>Compile all catalogs</source>
         <translation>Alle Kataloge übersetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1066"/>
+        <location filename="../Project.py" line="1086"/>
         <source>Compile selected catalogs</source>
         <translation>Ausgewählte Kataloge übersetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2935"/>
+        <location filename="../Project.py" line="2955"/>
         <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="3194"/>
+        <location filename="../Project.py" line="3214"/>
         <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="2955"/>
+        <location filename="../Project.py" line="2975"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation>
 Textkatalog erfolgreich initialisiert.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3067"/>
+        <location filename="../Project.py" line="3087"/>
         <source>Updating message catalogs</source>
         <translation>Aktualisiere Textkataloge</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3158"/>
+        <location filename="../Project.py" line="3178"/>
         <source>No locales detected. Aborting...</source>
         <translation>Keine Sprachen erkannt. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3118"/>
+        <location filename="../Project.py" line="3138"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation>
 Textkataloge erfolgreich aktualisiert.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3184"/>
+        <location filename="../Project.py" line="3204"/>
         <source>Compiling message catalogs</source>
         <translation>Übersetze Textkataloge</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3201"/>
+        <location filename="../Project.py" line="3221"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation>
 Textkataloge erfolgreich übersetzt.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1056"/>
+        <location filename="../Project.py" line="1076"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation>Alle Kataloge aktualisieren (mit veralteten)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1059"/>
+        <location filename="../Project.py" line="1079"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation>Ausgewählte Kataloge aktualisieren (mit veralteten)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1758"/>
+        <location filename="../Project.py" line="1778"/>
         <source>Start Global Django Application</source>
         <translation>Globale Django Anwendung beginnen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1758"/>
+        <location filename="../Project.py" line="1778"/>
         <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="1780"/>
+        <location filename="../Project.py" line="1800"/>
         <source>Start Local Django Application</source>
         <translation>Lokale Django Anwendung beginnen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1780"/>
+        <location filename="../Project.py" line="1800"/>
         <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="3099"/>
+        <location filename="../Project.py" line="3119"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation>Aktualisiere Textkataloge (veraltete Texte behalten)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2798"/>
+        <location filename="../Project.py" line="2818"/>
         <source>Change Password</source>
         <translation>Kennwort ändern</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="644"/>
+        <location filename="../Project.py" line="662"/>
         <source>Change &amp;Password</source>
         <translation>&amp;Kennwort ändern</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="649"/>
+        <location filename="../Project.py" line="667"/>
         <source>Change the password of a user</source>
         <translation>Ändert das Kennwort eines Nutzers</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="651"/>
+        <location filename="../Project.py" line="669"/>
         <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="658"/>
+        <location filename="../Project.py" line="676"/>
         <source>Create Superuser</source>
         <translation>Superuser anlegen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="658"/>
+        <location filename="../Project.py" line="676"/>
         <source>Create &amp;Superuser</source>
         <translation>&amp;Superuser anlegen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="663"/>
+        <location filename="../Project.py" line="681"/>
         <source>Create a superuser account</source>
         <translation>Legt eine Superuser Kennung an</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="665"/>
+        <location filename="../Project.py" line="683"/>
         <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="2854"/>
+        <location filename="../Project.py" line="2874"/>
         <source>Clear Sessions</source>
         <translation>Sessions löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="676"/>
+        <location filename="../Project.py" line="694"/>
         <source>Clear &amp;Sessions</source>
         <translation>&amp;Sessions löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="681"/>
+        <location filename="../Project.py" line="699"/>
         <source>Clear expired sessions</source>
         <translation>Löscht abgelaufene Sessions</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="683"/>
+        <location filename="../Project.py" line="701"/>
         <source>&lt;b&gt;Clear Sessions&lt;/b&gt;&lt;p&gt;Clear expired sessions of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sessions löschen&lt;/b&gt;&lt;p&gt;Löscht abgelaufene Sessions des Django Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="966"/>
+        <location filename="../Project.py" line="986"/>
         <source>&amp;Authorization</source>
         <translation>&amp;Authorisierung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="983"/>
+        <location filename="../Project.py" line="1003"/>
         <source>&amp;Session</source>
         <translation>&amp;Session</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2798"/>
+        <location filename="../Project.py" line="2818"/>
         <source>Enter the name of the user:</source>
         <translation>Gib den Namen des Nutzers ein:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2866"/>
+        <location filename="../Project.py" line="2886"/>
         <source>Expired sessions cleared successfully.</source>
         <translation>Abgelaufene Sessions erfolgreich gelöscht.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1459"/>
         <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="1729"/>
+        <location filename="../Project.py" line="1749"/>
         <source>&lt;p&gt;The &lt;b&gt;django-admin.py&lt;/b&gt; script is not in the path. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das &lt;b&gt;django-admin.py&lt;/b&gt; Skript ist nicht im Pfad. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1025"/>
+        <location filename="../Project.py" line="1045"/>
         <source>Open with {0}</source>
         <translation>Mit {0} öffnen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3230"/>
+        <location filename="../Project.py" line="3250"/>
         <source>The translations editor process ({0}) could not be started.</source>
         <translation>Der Prozess für den Übersetzungseditor ({0}) konnte nicht gestartet werden.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1180"/>
         <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="2180"/>
+        <location filename="../Project.py" line="2200"/>
         <source>Drop Indexes</source>
         <translation>Indices löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="434"/>
+        <location filename="../Project.py" line="452"/>
         <source>&amp;Drop Indexes</source>
         <translation>&amp;Indices löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="439"/>
+        <location filename="../Project.py" line="457"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation>Zeigt die DROP INDEX SQL Befehle für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="442"/>
+        <location filename="../Project.py" line="460"/>
         <source>&lt;b&gt;Drop Indexes&lt;/b&gt;&lt;p&gt;Prints the DROP INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Indices löschen&lt;/b&gt;&lt;p&gt;Zeigt die DROP INDEX SQL Befehle für eine oder mehrere Anwendungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="694"/>
+        <location filename="../Project.py" line="712"/>
         <source>Show Migrations</source>
         <translation>Migrationen anzeigen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="694"/>
+        <location filename="../Project.py" line="712"/>
         <source>&amp;Show Migrations</source>
         <translation>Migrationen an&amp;zeigen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="699"/>
+        <location filename="../Project.py" line="717"/>
         <source>Show a list of available migrations</source>
         <translation>Zeigt eine Liste verfügbarer Migrationen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="701"/>
+        <location filename="../Project.py" line="719"/>
         <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="709"/>
+        <location filename="../Project.py" line="727"/>
         <source>Show Migrations Plan</source>
         <translation>Migrationsplan anzeigen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="709"/>
+        <location filename="../Project.py" line="727"/>
         <source>Show Migrations &amp;Plan</source>
         <translation>Migrations&amp;plan anzeigen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="714"/>
+        <location filename="../Project.py" line="732"/>
         <source>Show a list with the migrations plan</source>
         <translation>Zeigt eine Liste mit dem Migrationsplan</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="716"/>
+        <location filename="../Project.py" line="734"/>
         <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="901"/>
+        <location filename="../Project.py" line="921"/>
         <source>&amp;Migrations</source>
         <translation>&amp;Migrationen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="724"/>
+        <location filename="../Project.py" line="742"/>
         <source>Apply All Migrations</source>
         <translation>Alle Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="724"/>
+        <location filename="../Project.py" line="742"/>
         <source>&amp;Apply All Migrations</source>
         <translation>Alle Migrationen &amp;anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="729"/>
+        <location filename="../Project.py" line="747"/>
         <source>Apply all available migrations</source>
         <translation>Alle verfügbaren Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="731"/>
+        <location filename="../Project.py" line="749"/>
         <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="2290"/>
+        <location filename="../Project.py" line="2310"/>
         <source>Apply Selected Migrations</source>
         <translation>Ausgewählte Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="743"/>
+        <location filename="../Project.py" line="761"/>
         <source>Apply selected migrations</source>
         <translation>Ausgewählte Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="745"/>
+        <location filename="../Project.py" line="763"/>
         <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="2349"/>
+        <location filename="../Project.py" line="2369"/>
         <source>Unapply Migrations</source>
         <translation>Migrationen rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="754"/>
+        <location filename="../Project.py" line="772"/>
         <source>&amp;Unapply Migrations</source>
         <translation>Migrationen &amp;rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="759"/>
+        <location filename="../Project.py" line="777"/>
         <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="761"/>
+        <location filename="../Project.py" line="779"/>
         <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="2426"/>
+        <location filename="../Project.py" line="2446"/>
         <source>Make Migrations</source>
         <translation>Migrationen generieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="769"/>
+        <location filename="../Project.py" line="787"/>
         <source>&amp;Make Migrations</source>
         <translation>Migrationen &amp;generieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="774"/>
+        <location filename="../Project.py" line="792"/>
         <source>Generate migrations for the project</source>
         <translation>Generiert Migrationen für das Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="776"/>
+        <location filename="../Project.py" line="794"/>
         <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="2457"/>
+        <location filename="../Project.py" line="2477"/>
         <source>No migrations available.</source>
         <translation>Keine Migrationen verfügbar.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2315"/>
+        <location filename="../Project.py" line="2335"/>
         <source>Apply Migrations</source>
         <translation>Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2349"/>
+        <location filename="../Project.py" line="2369"/>
         <source>Select an application:</source>
         <translation>Wähle eine Anwendung aus:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2470"/>
+        <location filename="../Project.py" line="2490"/>
         <source>Squash Migrations</source>
         <translation>Migrationen kürzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="783"/>
+        <location filename="../Project.py" line="801"/>
         <source>S&amp;quash Migrations</source>
         <translation>Migrationen &amp;kürzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="788"/>
+        <location filename="../Project.py" line="806"/>
         <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="790"/>
+        <location filename="../Project.py" line="808"/>
         <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="485"/>
+        <location filename="../Project.py" line="503"/>
         <source>Apply Migration</source>
         <translation>Migration anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="485"/>
+        <location filename="../Project.py" line="503"/>
         <source>&amp;Apply Migration</source>
         <translation>Migration &amp;anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="490"/>
+        <location filename="../Project.py" line="508"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation>Zeigt die SQL Befehle, um eine Migration einer Anwendung auszuführen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="493"/>
+        <location filename="../Project.py" line="511"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Migration anwenden&lt;/b&gt;&lt;p&gt;Zeigt die SQL Befehle, um eine Migration einer Anwendung auszuführen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="502"/>
+        <location filename="../Project.py" line="520"/>
         <source>Unapply Migration</source>
         <translation>Migration rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="502"/>
+        <location filename="../Project.py" line="520"/>
         <source>&amp;Unapply Migration</source>
         <translation>Migration &amp;rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="507"/>
+        <location filename="../Project.py" line="525"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation>Zeigt die SQL Befehle, um eine Migration einer Anwendung rückgängig zu machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="510"/>
+        <location filename="../Project.py" line="528"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Migration rückgängig machen&lt;/b&gt;&lt;p&gt;Zeigt die SQL Befehle, um eine Migration einer Anwendung rückgängig zu machen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2218"/>
+        <location filename="../Project.py" line="2238"/>
         <source>SQL Migrate</source>
         <translation>SQL Migrate</translation>
     </message>
+    <message>
+        <location filename="../Project.py" line="3295"/>
+        <source>Check Project</source>
+        <translation>Projekt prüfen</translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="282"/>
+        <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="284"/>
+        <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>
 </context>
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="407"/>
+        <location filename="../../PluginProjectDjango.py" line="409"/>
         <source>Django</source>
         <translation>Django</translation>
     </message>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="178"/>
+        <location filename="../../PluginProjectDjango.py" line="180"/>
         <source>eric6 version is too old, {0}, {1} or newer needed.</source>
         <translation>Die eric6 Version ist zu alt. Es wird {0}, {1} oder neuer benötigt.</translation>
     </message>
diff -r f8e92eaaba6e -r 5822c2e2b1c7 ProjectDjango/i18n/django_empty.ts
--- a/ProjectDjango/i18n/django_empty.ts	Tue Dec 20 12:26:33 2016 +0100
+++ b/ProjectDjango/i18n/django_empty.ts	Tue Dec 20 16:15:21 2016 +0100
@@ -1,6 +1,59 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!DOCTYPE TS><TS version="2.0">
 <context>
+    <name>DjangoCheckOptionsDialog</name>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="14"/>
+        <source>Check Options</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="23"/>
+        <source>Select to enable checks for deployment mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="26"/>
+        <source>Deployment Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="33"/>
+        <source>Select type of checks (leave unselected for all checks):</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="56"/>
+        <source>Enter the list of applications separated by spaces (leave empty for all apps):</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="73"/>
+        <source>Settings module for deployment mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="79"/>
+        <source>Enter the module name of the deployment settings</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="86"/>
+        <source>Press to select the settings module file via a file selection dialog</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <source>Select settings file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <source>Python Files (*.py)</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
     <name>DjangoDialog</name>
     <message>
         <location filename="../DjangoDialog.py" line="181"/>
@@ -311,7 +364,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="380"/>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="179"/>
         <source>Translations Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -607,7 +660,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1988"/>
+        <location filename="../Project.py" line="2008"/>
         <source>Run Web-Browser</source>
         <translation type="unfinished"></translation>
     </message>
@@ -627,7 +680,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2601"/>
+        <location filename="../Project.py" line="2621"/>
         <source>Create Cache Tables</source>
         <translation type="unfinished"></translation>
     </message>
@@ -667,7 +720,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1459"/>
         <source>About Django</source>
         <translation type="unfinished"></translation>
     </message>
@@ -687,1008 +740,1023 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="285"/>
+        <location filename="../Project.py" line="303"/>
         <source>Synchronize</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="285"/>
+        <location filename="../Project.py" line="303"/>
         <source>&amp;Synchronize</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="290"/>
+        <location filename="../Project.py" line="308"/>
         <source>Synchronizes the database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="292"/>
+        <location filename="../Project.py" line="310"/>
         <source>&lt;b&gt;Synchronize&lt;/b&gt;&lt;p&gt;Synchronizes the database.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="299"/>
+        <location filename="../Project.py" line="317"/>
         <source>Introspect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="299"/>
+        <location filename="../Project.py" line="317"/>
         <source>&amp;Introspect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="304"/>
+        <location filename="../Project.py" line="322"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="307"/>
+        <location filename="../Project.py" line="325"/>
         <source>&lt;b&gt;Introspect&lt;/b&gt;&lt;p&gt;Introspects the database tables and outputs a Django model module.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="315"/>
+        <location filename="../Project.py" line="333"/>
         <source>Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="315"/>
+        <location filename="../Project.py" line="333"/>
         <source>&amp;Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="320"/>
+        <location filename="../Project.py" line="338"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="323"/>
+        <location filename="../Project.py" line="341"/>
         <source>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Returns all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="331"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start Client Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="331"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start &amp;Client Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="336"/>
+        <location filename="../Project.py" line="354"/>
         <source>Starts a console window for the database client</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="338"/>
+        <location filename="../Project.py" line="356"/>
         <source>&lt;b&gt;Start Client Console&lt;/b&gt;&lt;p&gt;Starts a console window for the database client.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2145"/>
+        <location filename="../Project.py" line="2165"/>
         <source>Create Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="367"/>
         <source>Create &amp;Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="354"/>
+        <location filename="../Project.py" line="372"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="357"/>
+        <location filename="../Project.py" line="375"/>
         <source>&lt;b&gt;Create Tables&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2152"/>
+        <location filename="../Project.py" line="2172"/>
         <source>Create Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="366"/>
+        <location filename="../Project.py" line="384"/>
         <source>Create &amp;Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="371"/>
+        <location filename="../Project.py" line="389"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="374"/>
+        <location filename="../Project.py" line="392"/>
         <source>&lt;b&gt;Create Indexes&lt;/b&gt;&lt;p&gt;Prints the CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2159"/>
+        <location filename="../Project.py" line="2179"/>
         <source>Create Everything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="383"/>
+        <location filename="../Project.py" line="401"/>
         <source>Create &amp;Everything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="388"/>
+        <location filename="../Project.py" line="406"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="391"/>
+        <location filename="../Project.py" line="409"/>
         <source>&lt;b&gt;Create Everything&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2166"/>
+        <location filename="../Project.py" line="2186"/>
         <source>Custom Statements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="400"/>
+        <location filename="../Project.py" line="418"/>
         <source>&amp;Custom Statements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="405"/>
+        <location filename="../Project.py" line="423"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="408"/>
+        <location filename="../Project.py" line="426"/>
         <source>&lt;b&gt;Custom Statements&lt;/b&gt;&lt;p&gt;Prints the custom table modifying SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2173"/>
+        <location filename="../Project.py" line="2193"/>
         <source>Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="417"/>
+        <location filename="../Project.py" line="435"/>
         <source>&amp;Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="422"/>
+        <location filename="../Project.py" line="440"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="425"/>
+        <location filename="../Project.py" line="443"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2180"/>
+        <location filename="../Project.py" line="2200"/>
         <source>Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="434"/>
+        <location filename="../Project.py" line="452"/>
         <source>&amp;Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="439"/>
+        <location filename="../Project.py" line="457"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="442"/>
+        <location filename="../Project.py" line="460"/>
         <source>&lt;b&gt;Drop Indexes&lt;/b&gt;&lt;p&gt;Prints the DROP INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2187"/>
+        <location filename="../Project.py" line="2207"/>
         <source>Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="451"/>
+        <location filename="../Project.py" line="469"/>
         <source>&amp;Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="456"/>
+        <location filename="../Project.py" line="474"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="459"/>
+        <location filename="../Project.py" line="477"/>
         <source>&lt;b&gt;Flush Database&lt;/b&gt;&lt;p&gt;Prints a list of statements to return all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2194"/>
+        <location filename="../Project.py" line="2214"/>
         <source>Reset Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="468"/>
+        <location filename="../Project.py" line="486"/>
         <source>Reset &amp;Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="473"/>
+        <location filename="../Project.py" line="491"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="476"/>
+        <location filename="../Project.py" line="494"/>
         <source>&lt;b&gt;Reset Sequences&lt;/b&gt;&lt;p&gt;Prints the SQL statements for resetting sequences for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2502"/>
+        <location filename="../Project.py" line="2522"/>
         <source>Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="523"/>
+        <location filename="../Project.py" line="541"/>
         <source>&amp;Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="528"/>
+        <location filename="../Project.py" line="546"/>
         <source>Shows the modification made to the settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="530"/>
+        <location filename="../Project.py" line="548"/>
         <source>&lt;b&gt;Diff Settings&lt;/b&gt;&lt;p&gt;Shows the modification made to the settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2523"/>
+        <location filename="../Project.py" line="2543"/>
         <source>Cleanup</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="537"/>
+        <location filename="../Project.py" line="555"/>
         <source>&amp;Cleanup</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="542"/>
+        <location filename="../Project.py" line="560"/>
         <source>Cleans out old data from the database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="544"/>
+        <location filename="../Project.py" line="562"/>
         <source>&lt;b&gt;Cleanup&lt;/b&gt;&lt;p&gt;Cleans out old data from the database.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2546"/>
+        <location filename="../Project.py" line="2566"/>
         <source>Validate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="551"/>
+        <location filename="../Project.py" line="569"/>
         <source>&amp;Validate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="556"/>
+        <location filename="../Project.py" line="574"/>
         <source>Validates all installed models</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="558"/>
+        <location filename="../Project.py" line="576"/>
         <source>&lt;b&gt;Validate&lt;/b&gt;&lt;p&gt;Validates all installed models.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="565"/>
+        <location filename="../Project.py" line="583"/>
         <source>Start Python Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="565"/>
+        <location filename="../Project.py" line="583"/>
         <source>Start &amp;Python Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="570"/>
+        <location filename="../Project.py" line="588"/>
         <source>Starts a Python interactive interpreter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="572"/>
+        <location filename="../Project.py" line="590"/>
         <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="2638"/>
+        <location filename="../Project.py" line="2658"/>
         <source>Dump Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="583"/>
+        <location filename="../Project.py" line="601"/>
         <source>&amp;Dump Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="588"/>
+        <location filename="../Project.py" line="606"/>
         <source>Dump the database data to a fixture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="590"/>
+        <location filename="../Project.py" line="608"/>
         <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="2677"/>
+        <location filename="../Project.py" line="2697"/>
         <source>Load Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="597"/>
+        <location filename="../Project.py" line="615"/>
         <source>&amp;Load Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="602"/>
+        <location filename="../Project.py" line="620"/>
         <source>Load data from fixture files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="604"/>
+        <location filename="../Project.py" line="622"/>
         <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="611"/>
+        <location filename="../Project.py" line="629"/>
         <source>Run Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="611"/>
+        <location filename="../Project.py" line="629"/>
         <source>Run &amp;Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="616"/>
+        <location filename="../Project.py" line="634"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="618"/>
+        <location filename="../Project.py" line="636"/>
         <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="625"/>
+        <location filename="../Project.py" line="643"/>
         <source>Run Testserver</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="625"/>
+        <location filename="../Project.py" line="643"/>
         <source>Run Test&amp;server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="630"/>
+        <location filename="../Project.py" line="648"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="632"/>
+        <location filename="../Project.py" line="650"/>
         <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="2798"/>
+        <location filename="../Project.py" line="2818"/>
         <source>Change Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="644"/>
+        <location filename="../Project.py" line="662"/>
         <source>Change &amp;Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="649"/>
+        <location filename="../Project.py" line="667"/>
         <source>Change the password of a user</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="651"/>
+        <location filename="../Project.py" line="669"/>
         <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="658"/>
+        <location filename="../Project.py" line="676"/>
         <source>Create Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="658"/>
+        <location filename="../Project.py" line="676"/>
         <source>Create &amp;Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="663"/>
+        <location filename="../Project.py" line="681"/>
         <source>Create a superuser account</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="665"/>
+        <location filename="../Project.py" line="683"/>
         <source>&lt;b&gt;Create Superuser&lt;/b&gt;&lt;p&gt;Create a superuser account for the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2854"/>
+        <location filename="../Project.py" line="2874"/>
         <source>Clear Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="676"/>
-        <source>Clear &amp;Sessions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="681"/>
-        <source>Clear expired sessions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="683"/>
-        <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="694"/>
-        <source>Show Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="694"/>
-        <source>&amp;Show Migrations</source>
+        <source>Clear &amp;Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project.py" line="699"/>
-        <source>Show a list of available migrations</source>
+        <source>Clear expired sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project.py" line="701"/>
+        <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="712"/>
+        <source>Show Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="712"/>
+        <source>&amp;Show Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="717"/>
+        <source>Show a list of available migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="719"/>
         <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="709"/>
+        <location filename="../Project.py" line="727"/>
         <source>Show Migrations Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="709"/>
+        <location filename="../Project.py" line="727"/>
         <source>Show Migrations &amp;Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="714"/>
+        <location filename="../Project.py" line="732"/>
         <source>Show a list with the migrations plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="716"/>
+        <location filename="../Project.py" line="734"/>
         <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="807"/>
+        <location filename="../Project.py" line="825"/>
         <source>D&amp;jango</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="847"/>
+        <location filename="../Project.py" line="867"/>
         <source>&amp;Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="871"/>
+        <location filename="../Project.py" line="891"/>
         <source>Show &amp;SQL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="901"/>
+        <location filename="../Project.py" line="921"/>
         <source>&amp;Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="926"/>
+        <location filename="../Project.py" line="946"/>
         <source>&amp;Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="946"/>
+        <location filename="../Project.py" line="966"/>
         <source>T&amp;esting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="966"/>
+        <location filename="../Project.py" line="986"/>
         <source>&amp;Authorization</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="983"/>
+        <location filename="../Project.py" line="1003"/>
         <source>&amp;Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1025"/>
+        <location filename="../Project.py" line="1045"/>
         <source>Open with {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1040"/>
+        <location filename="../Project.py" line="1060"/>
         <source>New template...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1049"/>
+        <location filename="../Project.py" line="1069"/>
         <source>Update all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1052"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Update selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1056"/>
+        <location filename="../Project.py" line="1076"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1059"/>
+        <location filename="../Project.py" line="1079"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1063"/>
+        <location filename="../Project.py" line="1083"/>
         <source>Compile all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1066"/>
+        <location filename="../Project.py" line="1086"/>
         <source>Compile selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1180"/>
         <source>New Form</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1127"/>
+        <location filename="../Project.py" line="1147"/>
         <source>The file already exists! Overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1180"/>
         <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt; Problem: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1459"/>
         <source>&lt;p&gt;Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;/p&gt;&lt;p&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;Version:&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;URL:&lt;/td&gt;&lt;td&gt;&lt;a href=&quot;{1}&quot;&gt;{1}&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1530"/>
         <source>Select Applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1530"/>
         <source>Enter the list of applications separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1865"/>
+        <location filename="../Project.py" line="1885"/>
         <source>Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1605"/>
+        <location filename="../Project.py" line="1625"/>
         <source>Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1607"/>
+        <location filename="../Project.py" line="1627"/>
         <source>Start Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1607"/>
+        <location filename="../Project.py" line="1627"/>
         <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="1684"/>
+        <location filename="../Project.py" line="1704"/>
         <source>Start Django Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1729"/>
+        <location filename="../Project.py" line="1749"/>
         <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="1660"/>
+        <location filename="../Project.py" line="1680"/>
         <source>Django project created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1684"/>
+        <location filename="../Project.py" line="1704"/>
         <source>Enter the name of the new Django project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1712"/>
+        <location filename="../Project.py" line="1732"/>
         <source>Start Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1746"/>
+        <location filename="../Project.py" line="1766"/>
         <source>Django application created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1758"/>
+        <location filename="../Project.py" line="1778"/>
         <source>Start Global Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1758"/>
+        <location filename="../Project.py" line="1778"/>
         <source>Enter the name of the new global Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1780"/>
+        <location filename="../Project.py" line="1800"/>
         <source>Start Local Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1780"/>
+        <location filename="../Project.py" line="1800"/>
         <source>Enter the name of the new local Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1829"/>
+        <location filename="../Project.py" line="1849"/>
         <source>Select Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1829"/>
+        <location filename="../Project.py" line="1849"/>
         <source>Select the Django project to work with.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1863"/>
+        <location filename="../Project.py" line="1883"/>
         <source>None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1868"/>
+        <location filename="../Project.py" line="1888"/>
         <source>&amp;Current Django project ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3230"/>
+        <location filename="../Project.py" line="3250"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1942"/>
+        <location filename="../Project.py" line="1962"/>
         <source>The Django server could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1988"/>
+        <location filename="../Project.py" line="2008"/>
         <source>Could not start the web-browser for the url &quot;{0}&quot;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2839"/>
+        <location filename="../Project.py" line="2859"/>
         <source>The Django process could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2029"/>
+        <location filename="../Project.py" line="2049"/>
         <source>Introspect Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2058"/>
+        <location filename="../Project.py" line="2078"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2070"/>
+        <location filename="../Project.py" line="2090"/>
         <source>Database tables flushed successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2236"/>
+        <location filename="../Project.py" line="2256"/>
         <source>SQL Files (*.sql)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2535"/>
+        <location filename="../Project.py" line="2555"/>
         <source>Database cleaned up successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2608"/>
+        <location filename="../Project.py" line="2628"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2623"/>
+        <location filename="../Project.py" line="2643"/>
         <source>Cache tables created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2661"/>
+        <location filename="../Project.py" line="2681"/>
         <source>JSON Files (*.json)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2663"/>
+        <location filename="../Project.py" line="2683"/>
         <source>XML Files (*.xml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2665"/>
+        <location filename="../Project.py" line="2685"/>
         <source>YAML Files (*.yaml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2768"/>
+        <location filename="../Project.py" line="2788"/>
         <source>The Django test server could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2798"/>
+        <location filename="../Project.py" line="2818"/>
         <source>Enter the name of the user:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2866"/>
+        <location filename="../Project.py" line="2886"/>
         <source>Expired sessions cleared successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2935"/>
+        <location filename="../Project.py" line="2955"/>
         <source>Initializing message catalog for &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3194"/>
+        <location filename="../Project.py" line="3214"/>
         <source>No current site selected or no site created yet. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2955"/>
+        <location filename="../Project.py" line="2975"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3067"/>
+        <location filename="../Project.py" line="3087"/>
         <source>Updating message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3158"/>
+        <location filename="../Project.py" line="3178"/>
         <source>No locales detected. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3118"/>
+        <location filename="../Project.py" line="3138"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3099"/>
+        <location filename="../Project.py" line="3119"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3184"/>
+        <location filename="../Project.py" line="3204"/>
         <source>Compiling message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3201"/>
+        <location filename="../Project.py" line="3221"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3230"/>
+        <location filename="../Project.py" line="3250"/>
         <source>The translations editor process ({0}) could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="724"/>
+        <location filename="../Project.py" line="742"/>
         <source>Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="724"/>
+        <location filename="../Project.py" line="742"/>
         <source>&amp;Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="729"/>
+        <location filename="../Project.py" line="747"/>
         <source>Apply all available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="731"/>
+        <location filename="../Project.py" line="749"/>
         <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="2290"/>
+        <location filename="../Project.py" line="2310"/>
         <source>Apply Selected Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="743"/>
+        <location filename="../Project.py" line="761"/>
         <source>Apply selected migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="745"/>
+        <location filename="../Project.py" line="763"/>
         <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="2349"/>
+        <location filename="../Project.py" line="2369"/>
         <source>Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="754"/>
+        <location filename="../Project.py" line="772"/>
         <source>&amp;Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="759"/>
+        <location filename="../Project.py" line="777"/>
         <source>Unapply all migrations for an app</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="761"/>
+        <location filename="../Project.py" line="779"/>
         <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="2426"/>
+        <location filename="../Project.py" line="2446"/>
         <source>Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="769"/>
+        <location filename="../Project.py" line="787"/>
         <source>&amp;Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="774"/>
+        <location filename="../Project.py" line="792"/>
         <source>Generate migrations for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="776"/>
+        <location filename="../Project.py" line="794"/>
         <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="2457"/>
+        <location filename="../Project.py" line="2477"/>
         <source>No migrations available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2315"/>
+        <location filename="../Project.py" line="2335"/>
         <source>Apply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2349"/>
+        <location filename="../Project.py" line="2369"/>
         <source>Select an application:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2470"/>
+        <location filename="../Project.py" line="2490"/>
         <source>Squash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="783"/>
+        <location filename="../Project.py" line="801"/>
         <source>S&amp;quash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="788"/>
+        <location filename="../Project.py" line="806"/>
         <source>Squash migrations of an application of the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="790"/>
+        <location filename="../Project.py" line="808"/>
         <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="485"/>
+        <location filename="../Project.py" line="503"/>
         <source>Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="485"/>
+        <location filename="../Project.py" line="503"/>
         <source>&amp;Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="490"/>
+        <location filename="../Project.py" line="508"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="493"/>
+        <location filename="../Project.py" line="511"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="502"/>
+        <location filename="../Project.py" line="520"/>
         <source>Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="502"/>
+        <location filename="../Project.py" line="520"/>
         <source>&amp;Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="507"/>
+        <location filename="../Project.py" line="525"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="510"/>
+        <location filename="../Project.py" line="528"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2218"/>
+        <location filename="../Project.py" line="2238"/>
         <source>SQL Migrate</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project.py" line="3295"/>
+        <source>Check Project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="282"/>
+        <source>Inspects the Django project for common problems</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="284"/>
+        <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>
 </context>
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="407"/>
+        <location filename="../../PluginProjectDjango.py" line="409"/>
         <source>Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="178"/>
+        <location filename="../../PluginProjectDjango.py" line="180"/>
         <source>eric6 version is too old, {0}, {1} or newer needed.</source>
         <translation type="unfinished"></translation>
     </message>
diff -r f8e92eaaba6e -r 5822c2e2b1c7 ProjectDjango/i18n/django_en.ts
--- a/ProjectDjango/i18n/django_en.ts	Tue Dec 20 12:26:33 2016 +0100
+++ b/ProjectDjango/i18n/django_en.ts	Tue Dec 20 16:15:21 2016 +0100
@@ -1,6 +1,59 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!DOCTYPE TS><TS version="2.0" language="en_US" sourcelanguage="">
 <context>
+    <name>DjangoCheckOptionsDialog</name>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="14"/>
+        <source>Check Options</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="23"/>
+        <source>Select to enable checks for deployment mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="26"/>
+        <source>Deployment Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="33"/>
+        <source>Select type of checks (leave unselected for all checks):</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="56"/>
+        <source>Enter the list of applications separated by spaces (leave empty for all apps):</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="73"/>
+        <source>Settings module for deployment mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="79"/>
+        <source>Enter the module name of the deployment settings</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="86"/>
+        <source>Press to select the settings module file via a file selection dialog</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <source>Select settings file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <source>Python Files (*.py)</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
     <name>DjangoDialog</name>
     <message>
         <location filename="../DjangoDialog.ui" line="14"/>
@@ -431,7 +484,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="380"/>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="179"/>
         <source>Translations Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -607,7 +660,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1988"/>
+        <location filename="../Project.py" line="2008"/>
         <source>Run Web-Browser</source>
         <translation type="unfinished"></translation>
     </message>
@@ -627,7 +680,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2601"/>
+        <location filename="../Project.py" line="2621"/>
         <source>Create Cache Tables</source>
         <translation type="unfinished"></translation>
     </message>
@@ -667,7 +720,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1459"/>
         <source>About Django</source>
         <translation type="unfinished"></translation>
     </message>
@@ -687,1008 +740,1023 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="285"/>
+        <location filename="../Project.py" line="303"/>
         <source>Synchronize</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="285"/>
+        <location filename="../Project.py" line="303"/>
         <source>&amp;Synchronize</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="290"/>
+        <location filename="../Project.py" line="308"/>
         <source>Synchronizes the database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="292"/>
+        <location filename="../Project.py" line="310"/>
         <source>&lt;b&gt;Synchronize&lt;/b&gt;&lt;p&gt;Synchronizes the database.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="299"/>
+        <location filename="../Project.py" line="317"/>
         <source>Introspect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="299"/>
+        <location filename="../Project.py" line="317"/>
         <source>&amp;Introspect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="304"/>
+        <location filename="../Project.py" line="322"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="307"/>
+        <location filename="../Project.py" line="325"/>
         <source>&lt;b&gt;Introspect&lt;/b&gt;&lt;p&gt;Introspects the database tables and outputs a Django model module.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="315"/>
+        <location filename="../Project.py" line="333"/>
         <source>Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="315"/>
+        <location filename="../Project.py" line="333"/>
         <source>&amp;Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="320"/>
-        <source>Returns all database tables to the state just after their installation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="323"/>
-        <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="331"/>
-        <source>Start Client Console</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="331"/>
-        <source>Start &amp;Client Console</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="336"/>
-        <source>Starts a console window for the database client</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project.py" line="338"/>
-        <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>
+        <source>Returns all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2145"/>
-        <source>Create Tables</source>
+        <location filename="../Project.py" line="341"/>
+        <source>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Returns all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project.py" line="349"/>
-        <source>Create &amp;Tables</source>
+        <source>Start Client Console</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="349"/>
+        <source>Start &amp;Client Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project.py" line="354"/>
+        <source>Starts a console window for the database client</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="356"/>
+        <source>&lt;b&gt;Start Client Console&lt;/b&gt;&lt;p&gt;Starts a console window for the database client.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="2165"/>
+        <source>Create Tables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="367"/>
+        <source>Create &amp;Tables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="372"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="357"/>
+        <location filename="../Project.py" line="375"/>
         <source>&lt;b&gt;Create Tables&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2152"/>
+        <location filename="../Project.py" line="2172"/>
         <source>Create Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="366"/>
+        <location filename="../Project.py" line="384"/>
         <source>Create &amp;Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="371"/>
+        <location filename="../Project.py" line="389"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="374"/>
+        <location filename="../Project.py" line="392"/>
         <source>&lt;b&gt;Create Indexes&lt;/b&gt;&lt;p&gt;Prints the CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2159"/>
+        <location filename="../Project.py" line="2179"/>
         <source>Create Everything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="383"/>
+        <location filename="../Project.py" line="401"/>
         <source>Create &amp;Everything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="388"/>
+        <location filename="../Project.py" line="406"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="391"/>
+        <location filename="../Project.py" line="409"/>
         <source>&lt;b&gt;Create Everything&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2166"/>
+        <location filename="../Project.py" line="2186"/>
         <source>Custom Statements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="400"/>
+        <location filename="../Project.py" line="418"/>
         <source>&amp;Custom Statements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="405"/>
+        <location filename="../Project.py" line="423"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="408"/>
+        <location filename="../Project.py" line="426"/>
         <source>&lt;b&gt;Custom Statements&lt;/b&gt;&lt;p&gt;Prints the custom table modifying SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2173"/>
+        <location filename="../Project.py" line="2193"/>
         <source>Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="417"/>
+        <location filename="../Project.py" line="435"/>
         <source>&amp;Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="422"/>
+        <location filename="../Project.py" line="440"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="425"/>
+        <location filename="../Project.py" line="443"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2187"/>
+        <location filename="../Project.py" line="2207"/>
         <source>Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="451"/>
+        <location filename="../Project.py" line="469"/>
         <source>&amp;Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="456"/>
+        <location filename="../Project.py" line="474"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="459"/>
+        <location filename="../Project.py" line="477"/>
         <source>&lt;b&gt;Flush Database&lt;/b&gt;&lt;p&gt;Prints a list of statements to return all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2194"/>
+        <location filename="../Project.py" line="2214"/>
         <source>Reset Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="468"/>
+        <location filename="../Project.py" line="486"/>
         <source>Reset &amp;Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="473"/>
+        <location filename="../Project.py" line="491"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="476"/>
+        <location filename="../Project.py" line="494"/>
         <source>&lt;b&gt;Reset Sequences&lt;/b&gt;&lt;p&gt;Prints the SQL statements for resetting sequences for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2502"/>
+        <location filename="../Project.py" line="2522"/>
         <source>Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="523"/>
+        <location filename="../Project.py" line="541"/>
         <source>&amp;Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="528"/>
+        <location filename="../Project.py" line="546"/>
         <source>Shows the modification made to the settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="530"/>
+        <location filename="../Project.py" line="548"/>
         <source>&lt;b&gt;Diff Settings&lt;/b&gt;&lt;p&gt;Shows the modification made to the settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2523"/>
+        <location filename="../Project.py" line="2543"/>
         <source>Cleanup</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="537"/>
+        <location filename="../Project.py" line="555"/>
         <source>&amp;Cleanup</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="542"/>
+        <location filename="../Project.py" line="560"/>
         <source>Cleans out old data from the database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="544"/>
+        <location filename="../Project.py" line="562"/>
         <source>&lt;b&gt;Cleanup&lt;/b&gt;&lt;p&gt;Cleans out old data from the database.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2546"/>
+        <location filename="../Project.py" line="2566"/>
         <source>Validate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="551"/>
+        <location filename="../Project.py" line="569"/>
         <source>&amp;Validate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="556"/>
+        <location filename="../Project.py" line="574"/>
         <source>Validates all installed models</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="558"/>
+        <location filename="../Project.py" line="576"/>
         <source>&lt;b&gt;Validate&lt;/b&gt;&lt;p&gt;Validates all installed models.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="565"/>
+        <location filename="../Project.py" line="583"/>
         <source>Start Python Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="565"/>
+        <location filename="../Project.py" line="583"/>
         <source>Start &amp;Python Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="570"/>
+        <location filename="../Project.py" line="588"/>
         <source>Starts a Python interactive interpreter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <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="2638"/>
-        <source>Dump Data</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="583"/>
-        <source>&amp;Dump Data</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="590"/>
+        <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="2658"/>
+        <source>Dump Data</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="601"/>
+        <source>&amp;Dump Data</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="606"/>
+        <source>Dump the database data to a fixture</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="608"/>
         <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="2677"/>
+        <location filename="../Project.py" line="2697"/>
         <source>Load Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="597"/>
+        <location filename="../Project.py" line="615"/>
         <source>&amp;Load Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="602"/>
+        <location filename="../Project.py" line="620"/>
         <source>Load data from fixture files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="604"/>
+        <location filename="../Project.py" line="622"/>
         <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="611"/>
+        <location filename="../Project.py" line="629"/>
         <source>Run Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="611"/>
+        <location filename="../Project.py" line="629"/>
         <source>Run &amp;Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="616"/>
+        <location filename="../Project.py" line="634"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="618"/>
+        <location filename="../Project.py" line="636"/>
         <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="625"/>
+        <location filename="../Project.py" line="643"/>
         <source>Run Testserver</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="625"/>
+        <location filename="../Project.py" line="643"/>
         <source>Run Test&amp;server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="630"/>
+        <location filename="../Project.py" line="648"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="632"/>
+        <location filename="../Project.py" line="650"/>
         <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="807"/>
+        <location filename="../Project.py" line="825"/>
         <source>D&amp;jango</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="847"/>
+        <location filename="../Project.py" line="867"/>
         <source>&amp;Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="871"/>
+        <location filename="../Project.py" line="891"/>
         <source>Show &amp;SQL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="926"/>
+        <location filename="../Project.py" line="946"/>
         <source>&amp;Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="946"/>
+        <location filename="../Project.py" line="966"/>
         <source>T&amp;esting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1040"/>
+        <location filename="../Project.py" line="1060"/>
         <source>New template...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1049"/>
+        <location filename="../Project.py" line="1069"/>
         <source>Update all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1052"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Update selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1056"/>
+        <location filename="../Project.py" line="1076"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1059"/>
+        <location filename="../Project.py" line="1079"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1063"/>
+        <location filename="../Project.py" line="1083"/>
         <source>Compile all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1066"/>
+        <location filename="../Project.py" line="1086"/>
         <source>Compile selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1180"/>
         <source>New Form</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1127"/>
+        <location filename="../Project.py" line="1147"/>
         <source>The file already exists! Overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1530"/>
         <source>Select Applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1530"/>
         <source>Enter the list of applications separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1865"/>
+        <location filename="../Project.py" line="1885"/>
         <source>Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1605"/>
+        <location filename="../Project.py" line="1625"/>
         <source>Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1607"/>
+        <location filename="../Project.py" line="1627"/>
         <source>Start Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1607"/>
+        <location filename="../Project.py" line="1627"/>
         <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="1684"/>
+        <location filename="../Project.py" line="1704"/>
         <source>Start Django Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1660"/>
+        <location filename="../Project.py" line="1680"/>
         <source>Django project created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1684"/>
+        <location filename="../Project.py" line="1704"/>
         <source>Enter the name of the new Django project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1712"/>
+        <location filename="../Project.py" line="1732"/>
         <source>Start Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1746"/>
+        <location filename="../Project.py" line="1766"/>
         <source>Django application created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1758"/>
+        <location filename="../Project.py" line="1778"/>
         <source>Start Global Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1758"/>
+        <location filename="../Project.py" line="1778"/>
         <source>Enter the name of the new global Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1780"/>
+        <location filename="../Project.py" line="1800"/>
         <source>Start Local Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1780"/>
+        <location filename="../Project.py" line="1800"/>
         <source>Enter the name of the new local Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1829"/>
+        <location filename="../Project.py" line="1849"/>
         <source>Select Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1829"/>
+        <location filename="../Project.py" line="1849"/>
         <source>Select the Django project to work with.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1863"/>
+        <location filename="../Project.py" line="1883"/>
         <source>None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1868"/>
+        <location filename="../Project.py" line="1888"/>
         <source>&amp;Current Django project ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3230"/>
+        <location filename="../Project.py" line="3250"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1942"/>
+        <location filename="../Project.py" line="1962"/>
         <source>The Django server could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1988"/>
+        <location filename="../Project.py" line="2008"/>
         <source>Could not start the web-browser for the url &quot;{0}&quot;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2839"/>
+        <location filename="../Project.py" line="2859"/>
         <source>The Django process could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2029"/>
+        <location filename="../Project.py" line="2049"/>
         <source>Introspect Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2058"/>
+        <location filename="../Project.py" line="2078"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2070"/>
+        <location filename="../Project.py" line="2090"/>
         <source>Database tables flushed successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2236"/>
+        <location filename="../Project.py" line="2256"/>
         <source>SQL Files (*.sql)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2535"/>
+        <location filename="../Project.py" line="2555"/>
         <source>Database cleaned up successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2608"/>
+        <location filename="../Project.py" line="2628"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2623"/>
+        <location filename="../Project.py" line="2643"/>
         <source>Cache tables created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2661"/>
+        <location filename="../Project.py" line="2681"/>
         <source>JSON Files (*.json)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2663"/>
+        <location filename="../Project.py" line="2683"/>
         <source>XML Files (*.xml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2665"/>
+        <location filename="../Project.py" line="2685"/>
         <source>YAML Files (*.yaml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2768"/>
+        <location filename="../Project.py" line="2788"/>
         <source>The Django test server could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2935"/>
+        <location filename="../Project.py" line="2955"/>
         <source>Initializing message catalog for &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3194"/>
+        <location filename="../Project.py" line="3214"/>
         <source>No current site selected or no site created yet. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2955"/>
+        <location filename="../Project.py" line="2975"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3067"/>
+        <location filename="../Project.py" line="3087"/>
         <source>Updating message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3158"/>
+        <location filename="../Project.py" line="3178"/>
         <source>No locales detected. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3118"/>
+        <location filename="../Project.py" line="3138"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3099"/>
+        <location filename="../Project.py" line="3119"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3184"/>
+        <location filename="../Project.py" line="3204"/>
         <source>Compiling message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3201"/>
+        <location filename="../Project.py" line="3221"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2798"/>
+        <location filename="../Project.py" line="2818"/>
         <source>Change Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="644"/>
+        <location filename="../Project.py" line="662"/>
         <source>Change &amp;Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="649"/>
+        <location filename="../Project.py" line="667"/>
         <source>Change the password of a user</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="651"/>
+        <location filename="../Project.py" line="669"/>
         <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="658"/>
+        <location filename="../Project.py" line="676"/>
         <source>Create Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="658"/>
+        <location filename="../Project.py" line="676"/>
         <source>Create &amp;Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="663"/>
+        <location filename="../Project.py" line="681"/>
         <source>Create a superuser account</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="665"/>
+        <location filename="../Project.py" line="683"/>
         <source>&lt;b&gt;Create Superuser&lt;/b&gt;&lt;p&gt;Create a superuser account for the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2854"/>
+        <location filename="../Project.py" line="2874"/>
         <source>Clear Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="676"/>
+        <location filename="../Project.py" line="694"/>
         <source>Clear &amp;Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="681"/>
+        <location filename="../Project.py" line="699"/>
         <source>Clear expired sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="683"/>
+        <location filename="../Project.py" line="701"/>
         <source>&lt;b&gt;Clear Sessions&lt;/b&gt;&lt;p&gt;Clear expired sessions of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="966"/>
+        <location filename="../Project.py" line="986"/>
         <source>&amp;Authorization</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="983"/>
+        <location filename="../Project.py" line="1003"/>
         <source>&amp;Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2798"/>
+        <location filename="../Project.py" line="2818"/>
         <source>Enter the name of the user:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2866"/>
+        <location filename="../Project.py" line="2886"/>
         <source>Expired sessions cleared successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1459"/>
         <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="1729"/>
+        <location filename="../Project.py" line="1749"/>
         <source>&lt;p&gt;The &lt;b&gt;django-admin.py&lt;/b&gt; script is not in the path. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1025"/>
+        <location filename="../Project.py" line="1045"/>
         <source>Open with {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3230"/>
+        <location filename="../Project.py" line="3250"/>
         <source>The translations editor process ({0}) could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1180"/>
         <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="2180"/>
+        <location filename="../Project.py" line="2200"/>
         <source>Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="434"/>
+        <location filename="../Project.py" line="452"/>
         <source>&amp;Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="439"/>
+        <location filename="../Project.py" line="457"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="442"/>
+        <location filename="../Project.py" line="460"/>
         <source>&lt;b&gt;Drop Indexes&lt;/b&gt;&lt;p&gt;Prints the DROP INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="694"/>
+        <location filename="../Project.py" line="712"/>
         <source>Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="694"/>
+        <location filename="../Project.py" line="712"/>
         <source>&amp;Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="699"/>
+        <location filename="../Project.py" line="717"/>
         <source>Show a list of available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="701"/>
+        <location filename="../Project.py" line="719"/>
         <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="709"/>
+        <location filename="../Project.py" line="727"/>
         <source>Show Migrations Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="709"/>
+        <location filename="../Project.py" line="727"/>
         <source>Show Migrations &amp;Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="714"/>
+        <location filename="../Project.py" line="732"/>
         <source>Show a list with the migrations plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="716"/>
+        <location filename="../Project.py" line="734"/>
         <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="901"/>
+        <location filename="../Project.py" line="921"/>
         <source>&amp;Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="724"/>
+        <location filename="../Project.py" line="742"/>
         <source>Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="724"/>
+        <location filename="../Project.py" line="742"/>
         <source>&amp;Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="729"/>
+        <location filename="../Project.py" line="747"/>
         <source>Apply all available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="731"/>
+        <location filename="../Project.py" line="749"/>
         <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="2290"/>
+        <location filename="../Project.py" line="2310"/>
         <source>Apply Selected Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="743"/>
+        <location filename="../Project.py" line="761"/>
         <source>Apply selected migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="745"/>
+        <location filename="../Project.py" line="763"/>
         <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="2349"/>
+        <location filename="../Project.py" line="2369"/>
         <source>Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="754"/>
+        <location filename="../Project.py" line="772"/>
         <source>&amp;Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="759"/>
+        <location filename="../Project.py" line="777"/>
         <source>Unapply all migrations for an app</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="761"/>
+        <location filename="../Project.py" line="779"/>
         <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="2426"/>
+        <location filename="../Project.py" line="2446"/>
         <source>Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="769"/>
+        <location filename="../Project.py" line="787"/>
         <source>&amp;Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="774"/>
+        <location filename="../Project.py" line="792"/>
         <source>Generate migrations for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="776"/>
+        <location filename="../Project.py" line="794"/>
         <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="2457"/>
+        <location filename="../Project.py" line="2477"/>
         <source>No migrations available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2315"/>
+        <location filename="../Project.py" line="2335"/>
         <source>Apply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2349"/>
+        <location filename="../Project.py" line="2369"/>
         <source>Select an application:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2470"/>
+        <location filename="../Project.py" line="2490"/>
         <source>Squash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="783"/>
+        <location filename="../Project.py" line="801"/>
         <source>S&amp;quash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="788"/>
+        <location filename="../Project.py" line="806"/>
         <source>Squash migrations of an application of the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="790"/>
+        <location filename="../Project.py" line="808"/>
         <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="485"/>
+        <location filename="../Project.py" line="503"/>
         <source>Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="485"/>
+        <location filename="../Project.py" line="503"/>
         <source>&amp;Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="490"/>
+        <location filename="../Project.py" line="508"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="493"/>
+        <location filename="../Project.py" line="511"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="502"/>
+        <location filename="../Project.py" line="520"/>
         <source>Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="502"/>
+        <location filename="../Project.py" line="520"/>
         <source>&amp;Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="507"/>
+        <location filename="../Project.py" line="525"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="510"/>
+        <location filename="../Project.py" line="528"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2218"/>
+        <location filename="../Project.py" line="2238"/>
         <source>SQL Migrate</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project.py" line="3295"/>
+        <source>Check Project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="282"/>
+        <source>Inspects the Django project for common problems</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="284"/>
+        <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>
 </context>
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="407"/>
+        <location filename="../../PluginProjectDjango.py" line="409"/>
         <source>Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="178"/>
+        <location filename="../../PluginProjectDjango.py" line="180"/>
         <source>eric6 version is too old, {0}, {1} or newer needed.</source>
         <translation type="unfinished"></translation>
     </message>
diff -r f8e92eaaba6e -r 5822c2e2b1c7 ProjectDjango/i18n/django_es.ts
--- a/ProjectDjango/i18n/django_es.ts	Tue Dec 20 12:26:33 2016 +0100
+++ b/ProjectDjango/i18n/django_es.ts	Tue Dec 20 16:15:21 2016 +0100
@@ -1,6 +1,59 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!DOCTYPE TS><TS version="2.0" language="es" sourcelanguage="">
 <context>
+    <name>DjangoCheckOptionsDialog</name>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="14"/>
+        <source>Check Options</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="23"/>
+        <source>Select to enable checks for deployment mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="26"/>
+        <source>Deployment Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="33"/>
+        <source>Select type of checks (leave unselected for all checks):</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="56"/>
+        <source>Enter the list of applications separated by spaces (leave empty for all apps):</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="73"/>
+        <source>Settings module for deployment mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="79"/>
+        <source>Enter the module name of the deployment settings</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="86"/>
+        <source>Press to select the settings module file via a file selection dialog</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <source>Select settings file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <source>Python Files (*.py)</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
     <name>DjangoDialog</name>
     <message>
         <location filename="../DjangoDialog.ui" line="14"/>
@@ -431,7 +484,7 @@
         <translation>Seleccionar Entorno Virtual para Python 2</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="380"/>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="179"/>
         <source>Translations Editor</source>
         <translation>Editor de Traducciones</translation>
     </message>
@@ -512,17 +565,17 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="807"/>
+        <location filename="../Project.py" line="825"/>
         <source>D&amp;jango</source>
         <translation>D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1180"/>
         <source>New Form</source>
         <translation>Nuevo Formulario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1127"/>
+        <location filename="../Project.py" line="1147"/>
         <source>The file already exists! Overwrite it?</source>
         <translation>¡El archivo ya existe! ¿Sobreescribirlo?</translation>
     </message>
@@ -617,7 +670,7 @@
         <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="1988"/>
+        <location filename="../Project.py" line="2008"/>
         <source>Run Web-Browser</source>
         <translation>Ejecutar Navegador Web</translation>
     </message>
@@ -637,7 +690,7 @@
         <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="1439"/>
+        <location filename="../Project.py" line="1459"/>
         <source>About Django</source>
         <translation>Acerca de Django</translation>
     </message>
@@ -657,108 +710,108 @@
         <translation>&lt;b&gt;Acerca de Django&lt;/b&gt;&lt;p&gt;Muestra información sobre Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="285"/>
+        <location filename="../Project.py" line="303"/>
         <source>Synchronize</source>
         <translation>Sincronizar</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="285"/>
+        <location filename="../Project.py" line="303"/>
         <source>&amp;Synchronize</source>
         <translation>&amp;Sincronizar</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="290"/>
+        <location filename="../Project.py" line="308"/>
         <source>Synchronizes the database</source>
         <translation>Sincroniza la base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="292"/>
+        <location filename="../Project.py" line="310"/>
         <source>&lt;b&gt;Synchronize&lt;/b&gt;&lt;p&gt;Synchronizes the database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sincronizar&lt;/b&gt;&lt;p&gt;Sincroniza la base de datos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="847"/>
+        <location filename="../Project.py" line="867"/>
         <source>&amp;Database</source>
         <translation>Base de &amp;Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1865"/>
+        <location filename="../Project.py" line="1885"/>
         <source>Project</source>
         <translation>Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1605"/>
+        <location filename="../Project.py" line="1625"/>
         <source>Application</source>
         <translation>Aplicación</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1607"/>
+        <location filename="../Project.py" line="1627"/>
         <source>Start Django</source>
         <translation>Iniciar Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1607"/>
+        <location filename="../Project.py" line="1627"/>
         <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="1684"/>
+        <location filename="../Project.py" line="1704"/>
         <source>Start Django Project</source>
         <translation>Iniciar Proyecto Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1660"/>
+        <location filename="../Project.py" line="1680"/>
         <source>Django project created successfully.</source>
         <translation>Proyecto Django creado correctamente.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1684"/>
+        <location filename="../Project.py" line="1704"/>
         <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="1712"/>
+        <location filename="../Project.py" line="1732"/>
         <source>Start Django Application</source>
         <translation>Iniciar Aplicación Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1746"/>
+        <location filename="../Project.py" line="1766"/>
         <source>Django application created successfully.</source>
         <translation>Aplicación Django creada correctamente.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1829"/>
+        <location filename="../Project.py" line="1849"/>
         <source>Select Project</source>
         <translation>Seleccionar Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1829"/>
+        <location filename="../Project.py" line="1849"/>
         <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="1863"/>
+        <location filename="../Project.py" line="1883"/>
         <source>None</source>
         <translation>Ninguno</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3230"/>
+        <location filename="../Project.py" line="3250"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1942"/>
+        <location filename="../Project.py" line="1962"/>
         <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="1988"/>
+        <location filename="../Project.py" line="2008"/>
         <source>Could not start the web-browser for the url &quot;{0}&quot;.</source>
         <translation>No se ha podido iniciar el navegador web para la url &quot;{0}&quot;.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2839"/>
+        <location filename="../Project.py" line="2859"/>
         <source>The Django process could not be started.</source>
         <translation>No se ha podido iniciar el proceso Django.</translation>
     </message>
@@ -768,112 +821,112 @@
         <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="2502"/>
+        <location filename="../Project.py" line="2522"/>
         <source>Diff Settings</source>
         <translation>Configuración de Diff</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="523"/>
+        <location filename="../Project.py" line="541"/>
         <source>&amp;Diff Settings</source>
         <translation>Configuración de &amp;Diff</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="528"/>
+        <location filename="../Project.py" line="546"/>
         <source>Shows the modification made to the settings</source>
         <translation>Muestra los cambios hechos a la configuración</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="530"/>
+        <location filename="../Project.py" line="548"/>
         <source>&lt;b&gt;Diff Settings&lt;/b&gt;&lt;p&gt;Shows the modification made to the settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Configuración de Diff&lt;/b&gt;&lt;p&gt;Muestra los cambios hechos a la configuración.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2523"/>
+        <location filename="../Project.py" line="2543"/>
         <source>Cleanup</source>
         <translation>Limpiar</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="537"/>
+        <location filename="../Project.py" line="555"/>
         <source>&amp;Cleanup</source>
         <translation>&amp;Limpiar</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="542"/>
+        <location filename="../Project.py" line="560"/>
         <source>Cleans out old data from the database</source>
         <translation>Limpia datos antiguos de la base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="544"/>
+        <location filename="../Project.py" line="562"/>
         <source>&lt;b&gt;Cleanup&lt;/b&gt;&lt;p&gt;Cleans out old data from the database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpiar&lt;/b&gt;&lt;p&gt;Limpiar datos antiguos de la base de datos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2546"/>
+        <location filename="../Project.py" line="2566"/>
         <source>Validate</source>
         <translation>Validar</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="551"/>
+        <location filename="../Project.py" line="569"/>
         <source>&amp;Validate</source>
         <translation>&amp;Validar</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="556"/>
+        <location filename="../Project.py" line="574"/>
         <source>Validates all installed models</source>
         <translation>Valida todos los modelos instalados</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="558"/>
+        <location filename="../Project.py" line="576"/>
         <source>&lt;b&gt;Validate&lt;/b&gt;&lt;p&gt;Validates all installed models.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Validar&lt;/b&gt;&lt;p&gt;Valida todos los modelos instalados.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="926"/>
+        <location filename="../Project.py" line="946"/>
         <source>&amp;Tools</source>
         <translation>Herramien&amp;tas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1530"/>
         <source>Select Applications</source>
         <translation>Seleccionar Aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1530"/>
         <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="1868"/>
+        <location filename="../Project.py" line="1888"/>
         <source>&amp;Current Django project ({0})</source>
         <translation>Proyec&amp;to Django actual ({0})</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2535"/>
+        <location filename="../Project.py" line="2555"/>
         <source>Database cleaned up successfully.</source>
         <translation>Base de datos limpiada con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="565"/>
+        <location filename="../Project.py" line="583"/>
         <source>Start Python Console</source>
         <translation>Iniciar Consola de Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="565"/>
+        <location filename="../Project.py" line="583"/>
         <source>Start &amp;Python Console</source>
         <translation>Iniciar Consola de &amp;Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="570"/>
+        <location filename="../Project.py" line="588"/>
         <source>Starts a Python interactive interpreter</source>
         <translation>Inicia un intérprete interactivo de Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="572"/>
+        <location filename="../Project.py" line="590"/>
         <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="2601"/>
+        <location filename="../Project.py" line="2621"/>
         <source>Create Cache Tables</source>
         <translation>Crear Tablas de Caché</translation>
     </message>
@@ -893,342 +946,342 @@
         <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="2608"/>
+        <location filename="../Project.py" line="2628"/>
         <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="2623"/>
+        <location filename="../Project.py" line="2643"/>
         <source>Cache tables created successfully.</source>
         <translation>Tablas de caché creadas con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="299"/>
+        <location filename="../Project.py" line="317"/>
         <source>Introspect</source>
         <translation>Introspección</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="299"/>
+        <location filename="../Project.py" line="317"/>
         <source>&amp;Introspect</source>
         <translation>&amp;Introspección</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="304"/>
+        <location filename="../Project.py" line="322"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation>Realiza introspección de las tablas en la base de datos y devuelve un módulo de modelo de Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="307"/>
+        <location filename="../Project.py" line="325"/>
         <source>&lt;b&gt;Introspect&lt;/b&gt;&lt;p&gt;Introspects the database tables and outputs a Django model module.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Introspección&lt;/b&gt;&lt;p&gt;Realiza introspección de las tablas en la base de datos y devuelve a un módulo de modelo de Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2029"/>
+        <location filename="../Project.py" line="2049"/>
         <source>Introspect Database</source>
         <translation>Introspección de Base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="315"/>
+        <location filename="../Project.py" line="333"/>
         <source>Flush</source>
         <translation>Flush</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="315"/>
+        <location filename="../Project.py" line="333"/>
         <source>&amp;Flush</source>
         <translation>&amp;Flush</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="320"/>
+        <location filename="../Project.py" line="338"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation>Devuelve todas las tablas de la base de datos al estado que tenían al terminar su instalación</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="323"/>
+        <location filename="../Project.py" line="341"/>
         <source>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Returns all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Devuelve todas las tablas de la base de datos al estado que tenían al terminar su instalación.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2187"/>
+        <location filename="../Project.py" line="2207"/>
         <source>Flush Database</source>
         <translation>Hacer Flush de la base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2058"/>
+        <location filename="../Project.py" line="2078"/>
         <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="2070"/>
+        <location filename="../Project.py" line="2090"/>
         <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="331"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start Client Console</source>
         <translation>Iniciar Consola de Cliente</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="336"/>
+        <location filename="../Project.py" line="354"/>
         <source>Starts a console window for the database client</source>
         <translation>Inicia una ventana de consola para el cliente de base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="338"/>
+        <location filename="../Project.py" line="356"/>
         <source>&lt;b&gt;Start Client Console&lt;/b&gt;&lt;p&gt;Starts a console window for the database client.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Iniciar Consola de Cliente&lt;/b&gt;&lt;p&gt;Inicia una ventana de consola para el cliente de base de datos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="331"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start &amp;Client Console</source>
         <translation>Iniciar Consola de &amp;Cliente</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2145"/>
+        <location filename="../Project.py" line="2165"/>
         <source>Create Tables</source>
         <translation>Crear Tablas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="367"/>
         <source>Create &amp;Tables</source>
         <translation>Crear &amp;Tablas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="354"/>
+        <location filename="../Project.py" line="372"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation>Imprime las sentencias SQL CREATE TABLE para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="357"/>
+        <location filename="../Project.py" line="375"/>
         <source>&lt;b&gt;Create Tables&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Crear Tablas&lt;/b&gt;&lt;p&gt;Imprime las sentencias SQL CREATE TABLE para una o más aplicaciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="871"/>
+        <location filename="../Project.py" line="891"/>
         <source>Show &amp;SQL</source>
         <translation>Mostrar &amp;SQL</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2152"/>
+        <location filename="../Project.py" line="2172"/>
         <source>Create Indexes</source>
         <translation>Crear Índices</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="366"/>
+        <location filename="../Project.py" line="384"/>
         <source>Create &amp;Indexes</source>
         <translation>Crear &amp;Índices</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="374"/>
+        <location filename="../Project.py" line="392"/>
         <source>&lt;b&gt;Create Indexes&lt;/b&gt;&lt;p&gt;Prints the CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Crear Índices&lt;/b&gt;&lt;p&gt;Imprime las sentencias SQL CREATE INDEX para una o más aplicaciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2159"/>
+        <location filename="../Project.py" line="2179"/>
         <source>Create Everything</source>
         <translation>Crear Todo</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="383"/>
+        <location filename="../Project.py" line="401"/>
         <source>Create &amp;Everything</source>
         <translation>Cr&amp;ear Todo</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="388"/>
+        <location filename="../Project.py" line="406"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation>Imprime las sentencias SQL CREATE...para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="391"/>
+        <location filename="../Project.py" line="409"/>
         <source>&lt;b&gt;Create Everything&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Crear Todo&lt;/b&gt;&lt;p&gt;Imprime las sentencias SQL CREATE TABLE, SQL personalizado y CREATE INDEX para una o más aplicaciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="371"/>
+        <location filename="../Project.py" line="389"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation>Imprime las sentencias SQL CREATE INDEX para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2166"/>
+        <location filename="../Project.py" line="2186"/>
         <source>Custom Statements</source>
         <translation>Sentencias Personalizadas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="400"/>
+        <location filename="../Project.py" line="418"/>
         <source>&amp;Custom Statements</source>
         <translation>Sentencias &amp;Personalizadas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="405"/>
+        <location filename="../Project.py" line="423"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation>Imprime las sentencias sql personalizadas de modificación de tablas para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="408"/>
+        <location filename="../Project.py" line="426"/>
         <source>&lt;b&gt;Custom Statements&lt;/b&gt;&lt;p&gt;Prints the custom table modifying SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sentencias Personalizadas&lt;/b&gt;&lt;p&gt;Imprime las sentencias sql personalizadas de modificación de tablas para una o más aplicaciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2173"/>
+        <location filename="../Project.py" line="2193"/>
         <source>Drop Tables</source>
         <translation>Borrar Tablas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="417"/>
+        <location filename="../Project.py" line="435"/>
         <source>&amp;Drop Tables</source>
         <translation>&amp;Borrar Tablas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="422"/>
+        <location filename="../Project.py" line="440"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation>Imprime las sentencias SQL DROP TABLE para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="425"/>
+        <location filename="../Project.py" line="443"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Borrar Tablas&lt;/b&gt;&lt;p&gt;Imprime las sentencisa SQL DROP TABLE para una o más aplicaciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="451"/>
+        <location filename="../Project.py" line="469"/>
         <source>&amp;Flush Database</source>
         <translation>Hacer &amp;Flush de la base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="456"/>
+        <location filename="../Project.py" line="474"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation>Imprime una lista de sentencias para retornar todas las tablas de la base de datos al estado que tenían despues de su instalación</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="459"/>
+        <location filename="../Project.py" line="477"/>
         <source>&lt;b&gt;Flush Database&lt;/b&gt;&lt;p&gt;Prints a list of statements to return all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hacer Flush de la base de datos&lt;/b&gt;&lt;p&gt;Imprime una lista de sentencias para retornar todas las tablas de la base de datos al estado que tenían despues de su instalación.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2194"/>
+        <location filename="../Project.py" line="2214"/>
         <source>Reset Sequences</source>
         <translation>Resetear Secuencias</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="468"/>
+        <location filename="../Project.py" line="486"/>
         <source>Reset &amp;Sequences</source>
         <translation>Resetear &amp;Secuencias</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="473"/>
+        <location filename="../Project.py" line="491"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation>Imprime las sentencias SQL para resetear secuencias para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="476"/>
+        <location filename="../Project.py" line="494"/>
         <source>&lt;b&gt;Reset Sequences&lt;/b&gt;&lt;p&gt;Prints the SQL statements for resetting sequences for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Resetear Secuencias&lt;/b&gt;&lt;p&gt;Imprime las sentencias SQL para resetear secuencias para una o más aplicaciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2638"/>
+        <location filename="../Project.py" line="2658"/>
         <source>Dump Data</source>
         <translation>Volcado de Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="583"/>
+        <location filename="../Project.py" line="601"/>
         <source>&amp;Dump Data</source>
         <translation>&amp;Volcado de Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="588"/>
+        <location filename="../Project.py" line="606"/>
         <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="590"/>
+        <location filename="../Project.py" line="608"/>
         <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="946"/>
+        <location filename="../Project.py" line="966"/>
         <source>T&amp;esting</source>
         <translation>T&amp;esting</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2236"/>
+        <location filename="../Project.py" line="2256"/>
         <source>SQL Files (*.sql)</source>
         <translation>Archivos SQL (*.sql)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2661"/>
+        <location filename="../Project.py" line="2681"/>
         <source>JSON Files (*.json)</source>
         <translation>Archivos JSON (*.json)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2663"/>
+        <location filename="../Project.py" line="2683"/>
         <source>XML Files (*.xml)</source>
         <translation>Archivos XML (*.xml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2665"/>
+        <location filename="../Project.py" line="2685"/>
         <source>YAML Files (*.yaml)</source>
         <translation>Archivos YAML (*.yaml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2677"/>
+        <location filename="../Project.py" line="2697"/>
         <source>Load Data</source>
         <translation>Cargar Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="597"/>
+        <location filename="../Project.py" line="615"/>
         <source>&amp;Load Data</source>
         <translation>&amp;Cargar Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="602"/>
+        <location filename="../Project.py" line="620"/>
         <source>Load data from fixture files</source>
         <translation>Cargar datos desde archivos de fixture</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="604"/>
+        <location filename="../Project.py" line="622"/>
         <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="611"/>
+        <location filename="../Project.py" line="629"/>
         <source>Run Testsuite</source>
         <translation>Ejecutar Testsuite</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="611"/>
+        <location filename="../Project.py" line="629"/>
         <source>Run &amp;Testsuite</source>
         <translation>Ejecutar &amp;Testsuite</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="616"/>
+        <location filename="../Project.py" line="634"/>
         <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="618"/>
+        <location filename="../Project.py" line="636"/>
         <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="625"/>
+        <location filename="../Project.py" line="643"/>
         <source>Run Testserver</source>
         <translation>Ejecutar Testserver</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="625"/>
+        <location filename="../Project.py" line="643"/>
         <source>Run Test&amp;server</source>
         <translation>Ejecutar Test&amp;server</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="630"/>
+        <location filename="../Project.py" line="648"/>
         <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="632"/>
+        <location filename="../Project.py" line="650"/>
         <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="2768"/>
+        <location filename="../Project.py" line="2788"/>
         <source>The Django test server could not be started.</source>
         <translation>No se ha podido iniciar el servidor de tests Django.</translation>
     </message>
@@ -1253,445 +1306,460 @@
         <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="1040"/>
+        <location filename="../Project.py" line="1060"/>
         <source>New template...</source>
         <translation>Nueva plantilla...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1049"/>
+        <location filename="../Project.py" line="1069"/>
         <source>Update all catalogs</source>
         <translation>Actualizar todos los catálogos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1052"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Update selected catalogs</source>
         <translation>Actualizar los catálogos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1063"/>
+        <location filename="../Project.py" line="1083"/>
         <source>Compile all catalogs</source>
         <translation>Compilar todos los catálogos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1066"/>
+        <location filename="../Project.py" line="1086"/>
         <source>Compile selected catalogs</source>
         <translation>Compilar los catálogos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2935"/>
+        <location filename="../Project.py" line="2955"/>
         <source>Initializing message catalog for &apos;{0}&apos;</source>
         <translation>Inicializando catálogo de mensajes para &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3194"/>
+        <location filename="../Project.py" line="3214"/>
         <source>No current site selected or no site created yet. Aborting...</source>
         <translation>No se ha seleccionado un sitio o no se ha creado un sitio todavía. Abortando...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2955"/>
+        <location filename="../Project.py" line="2975"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation>Catálogo de mensajes iniciado con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3067"/>
+        <location filename="../Project.py" line="3087"/>
         <source>Updating message catalogs</source>
         <translation>Actualizando catálogos de mensajes</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3158"/>
+        <location filename="../Project.py" line="3178"/>
         <source>No locales detected. Aborting...</source>
         <translation>No se ha detectado ningún idioma. Abortando...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3118"/>
+        <location filename="../Project.py" line="3138"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation>
 Catálogos de mensajes actualizados con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3184"/>
+        <location filename="../Project.py" line="3204"/>
         <source>Compiling message catalogs</source>
         <translation>Compilando catálogos de mensajes</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3201"/>
+        <location filename="../Project.py" line="3221"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation>
 Catálogos de mensajes compilados con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1056"/>
+        <location filename="../Project.py" line="1076"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation>Acutalizar todos los catálogos (con obsoletos)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1059"/>
+        <location filename="../Project.py" line="1079"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation>Actualizar los catálogos seleccionados (con obsoletos)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1758"/>
+        <location filename="../Project.py" line="1778"/>
         <source>Start Global Django Application</source>
         <translation>Iniciar Aplicación Global Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1758"/>
+        <location filename="../Project.py" line="1778"/>
         <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="1780"/>
+        <location filename="../Project.py" line="1800"/>
         <source>Start Local Django Application</source>
         <translation>Iniciar Aplicación Local Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1780"/>
+        <location filename="../Project.py" line="1800"/>
         <source>Enter the name of the new local Django application.</source>
         <translation>Introducir el nombre de la nueva aplicación local Django.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3099"/>
+        <location filename="../Project.py" line="3119"/>
         <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="2798"/>
+        <location filename="../Project.py" line="2818"/>
         <source>Change Password</source>
         <translation>Cambiar Contraseña</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="644"/>
+        <location filename="../Project.py" line="662"/>
         <source>Change &amp;Password</source>
         <translation>Cambiar C&amp;ontraseña</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="649"/>
+        <location filename="../Project.py" line="667"/>
         <source>Change the password of a user</source>
         <translation>Cambiar la contraseña de un usuario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="651"/>
+        <location filename="../Project.py" line="669"/>
         <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="658"/>
+        <location filename="../Project.py" line="676"/>
         <source>Create Superuser</source>
         <translation>Crear Superusuario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="658"/>
+        <location filename="../Project.py" line="676"/>
         <source>Create &amp;Superuser</source>
         <translation>Crear &amp;Superusuario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="663"/>
+        <location filename="../Project.py" line="681"/>
         <source>Create a superuser account</source>
         <translation>Crear una cuenta de superusuario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="665"/>
+        <location filename="../Project.py" line="683"/>
         <source>&lt;b&gt;Create Superuser&lt;/b&gt;&lt;p&gt;Create a superuser account for the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Crear Superusuario&lt;/b&gt;&lt;p&gt;Crear una cuenta de superusuario para el proyecto Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2854"/>
+        <location filename="../Project.py" line="2874"/>
         <source>Clear Sessions</source>
         <translation>Limpiar Sesiones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="676"/>
+        <location filename="../Project.py" line="694"/>
         <source>Clear &amp;Sessions</source>
         <translation>Limpiar &amp;Sesiones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="681"/>
+        <location filename="../Project.py" line="699"/>
         <source>Clear expired sessions</source>
         <translation>Limpiar sesiones expiradas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="683"/>
+        <location filename="../Project.py" line="701"/>
         <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="966"/>
+        <location filename="../Project.py" line="986"/>
         <source>&amp;Authorization</source>
         <translation>&amp;Autorización</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="983"/>
+        <location filename="../Project.py" line="1003"/>
         <source>&amp;Session</source>
         <translation>&amp;Sesión</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2798"/>
+        <location filename="../Project.py" line="2818"/>
         <source>Enter the name of the user:</source>
         <translation>Introducir el nombre del usuario:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2866"/>
+        <location filename="../Project.py" line="2886"/>
         <source>Expired sessions cleared successfully.</source>
         <translation>Sesiones expiradas limpiadas con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1459"/>
         <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="1729"/>
+        <location filename="../Project.py" line="1749"/>
         <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="1025"/>
+        <location filename="../Project.py" line="1045"/>
         <source>Open with {0}</source>
         <translation>Abrir con {0}</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3230"/>
+        <location filename="../Project.py" line="3250"/>
         <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="1160"/>
+        <location filename="../Project.py" line="1180"/>
         <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="2180"/>
+        <location filename="../Project.py" line="2200"/>
         <source>Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="434"/>
+        <location filename="../Project.py" line="452"/>
         <source>&amp;Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="439"/>
+        <location filename="../Project.py" line="457"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="442"/>
+        <location filename="../Project.py" line="460"/>
         <source>&lt;b&gt;Drop Indexes&lt;/b&gt;&lt;p&gt;Prints the DROP INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="694"/>
+        <location filename="../Project.py" line="712"/>
         <source>Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="694"/>
+        <location filename="../Project.py" line="712"/>
         <source>&amp;Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="699"/>
+        <location filename="../Project.py" line="717"/>
         <source>Show a list of available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="701"/>
+        <location filename="../Project.py" line="719"/>
         <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="709"/>
+        <location filename="../Project.py" line="727"/>
         <source>Show Migrations Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="709"/>
+        <location filename="../Project.py" line="727"/>
         <source>Show Migrations &amp;Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="714"/>
+        <location filename="../Project.py" line="732"/>
         <source>Show a list with the migrations plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="716"/>
+        <location filename="../Project.py" line="734"/>
         <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="901"/>
+        <location filename="../Project.py" line="921"/>
         <source>&amp;Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="724"/>
+        <location filename="../Project.py" line="742"/>
         <source>Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="724"/>
+        <location filename="../Project.py" line="742"/>
         <source>&amp;Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="729"/>
+        <location filename="../Project.py" line="747"/>
         <source>Apply all available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="731"/>
+        <location filename="../Project.py" line="749"/>
         <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="2290"/>
+        <location filename="../Project.py" line="2310"/>
         <source>Apply Selected Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="743"/>
+        <location filename="../Project.py" line="761"/>
         <source>Apply selected migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="745"/>
+        <location filename="../Project.py" line="763"/>
         <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="2349"/>
+        <location filename="../Project.py" line="2369"/>
         <source>Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="754"/>
+        <location filename="../Project.py" line="772"/>
         <source>&amp;Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="759"/>
+        <location filename="../Project.py" line="777"/>
         <source>Unapply all migrations for an app</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="761"/>
+        <location filename="../Project.py" line="779"/>
         <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="2426"/>
+        <location filename="../Project.py" line="2446"/>
         <source>Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="769"/>
+        <location filename="../Project.py" line="787"/>
         <source>&amp;Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="774"/>
+        <location filename="../Project.py" line="792"/>
         <source>Generate migrations for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="776"/>
+        <location filename="../Project.py" line="794"/>
         <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="2457"/>
+        <location filename="../Project.py" line="2477"/>
         <source>No migrations available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2315"/>
+        <location filename="../Project.py" line="2335"/>
         <source>Apply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2349"/>
+        <location filename="../Project.py" line="2369"/>
         <source>Select an application:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2470"/>
+        <location filename="../Project.py" line="2490"/>
         <source>Squash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="783"/>
+        <location filename="../Project.py" line="801"/>
         <source>S&amp;quash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="788"/>
+        <location filename="../Project.py" line="806"/>
         <source>Squash migrations of an application of the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="790"/>
+        <location filename="../Project.py" line="808"/>
         <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="485"/>
+        <location filename="../Project.py" line="503"/>
         <source>Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="485"/>
+        <location filename="../Project.py" line="503"/>
         <source>&amp;Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="490"/>
+        <location filename="../Project.py" line="508"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="493"/>
+        <location filename="../Project.py" line="511"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="502"/>
+        <location filename="../Project.py" line="520"/>
         <source>Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="502"/>
+        <location filename="../Project.py" line="520"/>
         <source>&amp;Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="507"/>
+        <location filename="../Project.py" line="525"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="510"/>
+        <location filename="../Project.py" line="528"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2218"/>
+        <location filename="../Project.py" line="2238"/>
         <source>SQL Migrate</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project.py" line="3295"/>
+        <source>Check Project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="282"/>
+        <source>Inspects the Django project for common problems</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="284"/>
+        <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>
 </context>
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="407"/>
+        <location filename="../../PluginProjectDjango.py" line="409"/>
         <source>Django</source>
         <translation>Django</translation>
     </message>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="178"/>
+        <location filename="../../PluginProjectDjango.py" line="180"/>
         <source>eric6 version is too old, {0}, {1} or newer needed.</source>
         <translation>La versión de eric6 es demasiado antigua, {0}, {1} o más reciente es necesaria.</translation>
     </message>
diff -r f8e92eaaba6e -r 5822c2e2b1c7 ProjectDjango/i18n/django_ru.ts
--- a/ProjectDjango/i18n/django_ru.ts	Tue Dec 20 12:26:33 2016 +0100
+++ b/ProjectDjango/i18n/django_ru.ts	Tue Dec 20 16:15:21 2016 +0100
@@ -1,6 +1,59 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!DOCTYPE TS><TS version="2.0" language="ru" sourcelanguage="">
 <context>
+    <name>DjangoCheckOptionsDialog</name>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="14"/>
+        <source>Check Options</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="23"/>
+        <source>Select to enable checks for deployment mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="26"/>
+        <source>Deployment Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="33"/>
+        <source>Select type of checks (leave unselected for all checks):</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="56"/>
+        <source>Enter the list of applications separated by spaces (leave empty for all apps):</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="73"/>
+        <source>Settings module for deployment mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="79"/>
+        <source>Enter the module name of the deployment settings</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="86"/>
+        <source>Press to select the settings module file via a file selection dialog</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <source>Select settings file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <source>Python Files (*.py)</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
     <name>DjangoDialog</name>
     <message>
         <location filename="../DjangoDialog.ui" line="14"/>
@@ -431,7 +484,7 @@
         <translation>Выбор виртуального окружения для Python 2</translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="380"/>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="179"/>
         <source>Translations Editor</source>
         <translation>Редактор для перевода</translation>
     </message>
@@ -512,17 +565,17 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="807"/>
+        <location filename="../Project.py" line="825"/>
         <source>D&amp;jango</source>
         <translation>D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1180"/>
         <source>New Form</source>
         <translation>Создание новой формы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1127"/>
+        <location filename="../Project.py" line="1147"/>
         <source>The file already exists! Overwrite it?</source>
         <translation>Файл уже существует! Переписать его?</translation>
     </message>
@@ -617,7 +670,7 @@
         <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="1988"/>
+        <location filename="../Project.py" line="2008"/>
         <source>Run Web-Browser</source>
         <translation>Запуск Web-браузера администрирования</translation>
     </message>
@@ -637,7 +690,7 @@
         <translation>&lt;b&gt;Запуск Web-браузера&lt;/b&gt;&lt;p&gt;Запуск Web-браузера, используемого по умолчанию, с адресом Django Web сервера.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1459"/>
         <source>About Django</source>
         <translation>О Django</translation>
     </message>
@@ -657,107 +710,107 @@
         <translation>&lt;b&gt;О Django&lt;/b&gt;&lt;p&gt;Отображение информации о Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="285"/>
+        <location filename="../Project.py" line="303"/>
         <source>Synchronize</source>
         <translation>Синхронизация</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="285"/>
+        <location filename="../Project.py" line="303"/>
         <source>&amp;Synchronize</source>
         <translation>&amp;Синхронизация</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="290"/>
+        <location filename="../Project.py" line="308"/>
         <source>Synchronizes the database</source>
         <translation>Синхронизация базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="292"/>
+        <location filename="../Project.py" line="310"/>
         <source>&lt;b&gt;Synchronize&lt;/b&gt;&lt;p&gt;Synchronizes the database.&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="847"/>
+        <location filename="../Project.py" line="867"/>
         <source>&amp;Database</source>
         <translation>&amp;База данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1865"/>
+        <location filename="../Project.py" line="1885"/>
         <source>Project</source>
         <translation>Project</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1605"/>
+        <location filename="../Project.py" line="1625"/>
         <source>Application</source>
         <translation>Application</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1607"/>
+        <location filename="../Project.py" line="1627"/>
         <source>Start Django</source>
         <translation>Старт Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1607"/>
+        <location filename="../Project.py" line="1627"/>
         <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="1684"/>
+        <location filename="../Project.py" line="1704"/>
         <source>Start Django Project</source>
         <translation>Создание Django проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1660"/>
+        <location filename="../Project.py" line="1680"/>
         <source>Django project created successfully.</source>
         <translation>Django проект успешно создан.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1684"/>
+        <location filename="../Project.py" line="1704"/>
         <source>Enter the name of the new Django project.</source>
         <translation>Введите имя нового Django проекта.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1712"/>
+        <location filename="../Project.py" line="1732"/>
         <source>Start Django Application</source>
         <translation>Создание Django приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1746"/>
+        <location filename="../Project.py" line="1766"/>
         <source>Django application created successfully.</source>
         <translation>Django приложение успешно создано.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1829"/>
+        <location filename="../Project.py" line="1849"/>
         <source>Select Project</source>
         <translation>Выбор проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1829"/>
+        <location filename="../Project.py" line="1849"/>
         <source>Select the Django project to work with.</source>
         <translation>Выбор Django проекта для работы.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1863"/>
+        <location filename="../Project.py" line="1883"/>
         <source>None</source>
         <translation>none</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3230"/>
+        <location filename="../Project.py" line="3250"/>
         <source>Process Generation Error</source>
         <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1942"/>
+        <location filename="../Project.py" line="1962"/>
         <source>The Django server could not be started.</source>
         <translation>Невозможно запустить Django сервер.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1988"/>
+        <location filename="../Project.py" line="2008"/>
         <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="2839"/>
+        <location filename="../Project.py" line="2859"/>
         <source>The Django process could not be started.</source>
         <translation>Невозможно запустить Django процесс.</translation>
     </message>
@@ -767,112 +820,112 @@
         <translation>&lt;b&gt;Текущий проект&lt;/b&gt;&lt;p&gt;Выберите текущий проект. Используется в мультипроекте Django проектов для переключения между ними.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2502"/>
+        <location filename="../Project.py" line="2522"/>
         <source>Diff Settings</source>
         <translation>Отличие текущих параметров от параметров настройки Django по умолчанию</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="523"/>
+        <location filename="../Project.py" line="541"/>
         <source>&amp;Diff Settings</source>
         <translation>&amp;Различия настройки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="528"/>
+        <location filename="../Project.py" line="546"/>
         <source>Shows the modification made to the settings</source>
         <translation>Показ изменений, сделанных в параметрах настройки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="530"/>
+        <location filename="../Project.py" line="548"/>
         <source>&lt;b&gt;Diff Settings&lt;/b&gt;&lt;p&gt;Shows the modification made to the settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Различия настройки&lt;/b&gt;&lt;p&gt;Показ изменений, сделанных в параметрах настройки.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2523"/>
+        <location filename="../Project.py" line="2543"/>
         <source>Cleanup</source>
         <translation>Очистка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="537"/>
+        <location filename="../Project.py" line="555"/>
         <source>&amp;Cleanup</source>
         <translation>&amp;Очистка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="542"/>
+        <location filename="../Project.py" line="560"/>
         <source>Cleans out old data from the database</source>
         <translation>Очистка базы данных от старых, неактуальных данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="544"/>
+        <location filename="../Project.py" line="562"/>
         <source>&lt;b&gt;Cleanup&lt;/b&gt;&lt;p&gt;Cleans out old data from the database.&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="2546"/>
+        <location filename="../Project.py" line="2566"/>
         <source>Validate</source>
         <translation>Проверка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="551"/>
+        <location filename="../Project.py" line="569"/>
         <source>&amp;Validate</source>
         <translation>&amp;Проверка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="556"/>
+        <location filename="../Project.py" line="574"/>
         <source>Validates all installed models</source>
         <translation>Проверка синтаксиса и логики моделей всех установленных модулей</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="558"/>
+        <location filename="../Project.py" line="576"/>
         <source>&lt;b&gt;Validate&lt;/b&gt;&lt;p&gt;Validates all installed models.&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="926"/>
+        <location filename="../Project.py" line="946"/>
         <source>&amp;Tools</source>
         <translation>&amp;Сервис</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1530"/>
         <source>Select Applications</source>
         <translation>Выбор приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1530"/>
         <source>Enter the list of applications separated by spaces.</source>
         <translation>Введите список приложений, разделенных пробелами.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1868"/>
+        <location filename="../Project.py" line="1888"/>
         <source>&amp;Current Django project ({0})</source>
         <translation>Текущий &amp;Django проект ({0})</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2535"/>
+        <location filename="../Project.py" line="2555"/>
         <source>Database cleaned up successfully.</source>
         <translation>База данных очищена успешно.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="565"/>
+        <location filename="../Project.py" line="583"/>
         <source>Start Python Console</source>
         <translation>Старт консоли Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="565"/>
+        <location filename="../Project.py" line="583"/>
         <source>Start &amp;Python Console</source>
         <translation>Старт консоли &amp;Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="570"/>
+        <location filename="../Project.py" line="588"/>
         <source>Starts a Python interactive interpreter</source>
         <translation>Запуск интерактивного интерпретатора Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="572"/>
+        <location filename="../Project.py" line="590"/>
         <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="2601"/>
+        <location filename="../Project.py" line="2621"/>
         <source>Create Cache Tables</source>
         <translation>Создание кэша таблиц</translation>
     </message>
@@ -892,342 +945,342 @@
         <translation>&lt;b&gt;Создание кэша таблиц&lt;/b&gt;&lt;p&gt;Для создания таблиц необходимо использовать  SQL кэш бэкенд.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2608"/>
+        <location filename="../Project.py" line="2628"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation>Введите имена таблиц кэша, разделенных пробелами.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2623"/>
+        <location filename="../Project.py" line="2643"/>
         <source>Cache tables created successfully.</source>
         <translation>Кэш таблиц создан успешно.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="299"/>
+        <location filename="../Project.py" line="317"/>
         <source>Introspect</source>
         <translation>Просматривает базу данных, определяет структуру моделей и выводит их код</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="299"/>
+        <location filename="../Project.py" line="317"/>
         <source>&amp;Introspect</source>
         <translation>&amp;Инспекция</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="304"/>
+        <location filename="../Project.py" line="322"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation>Анализ таблиц базы данных и вывод кода модуля Django моделей</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="307"/>
+        <location filename="../Project.py" line="325"/>
         <source>&lt;b&gt;Introspect&lt;/b&gt;&lt;p&gt;Introspects the database tables and outputs a Django model module.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Анализ таблиц базы данных&lt;/b&gt;&lt;p&gt;Анализ таблиц базы данных, определение структуры и вывод кода модуля Django моделей.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2029"/>
+        <location filename="../Project.py" line="2049"/>
         <source>Introspect Database</source>
         <translation>Анализ таблиц базы данных и генерация кода модуля Django моделей</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="315"/>
+        <location filename="../Project.py" line="333"/>
         <source>Flush</source>
         <translation>Очистка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="315"/>
+        <location filename="../Project.py" line="333"/>
         <source>&amp;Flush</source>
         <translation>&amp;Очистка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="320"/>
+        <location filename="../Project.py" line="338"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation>Возвращает все таблицы базы данных к состоянию на момент инсталяции базы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="323"/>
+        <location filename="../Project.py" line="341"/>
         <source>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Returns all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Очистка&lt;/b&gt;&lt;p&gt;Возврат всех таблиц базы данных к состоянию на момент инсталяции базы.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2187"/>
+        <location filename="../Project.py" line="2207"/>
         <source>Flush Database</source>
         <translation>Очистка базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2058"/>
+        <location filename="../Project.py" line="2078"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation>Очистка  базы данных приведет к уничтожению всех данных. Вы действительно этого хотите?</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2070"/>
+        <location filename="../Project.py" line="2090"/>
         <source>Database tables flushed successfully.</source>
         <translation>Таблицы базы данных успешно очищены.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="331"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start Client Console</source>
         <translation>Запуск консоли клиента</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="336"/>
+        <location filename="../Project.py" line="354"/>
         <source>Starts a console window for the database client</source>
         <translation>Запуск окна консоли для клиента базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="338"/>
+        <location filename="../Project.py" line="356"/>
         <source>&lt;b&gt;Start Client Console&lt;/b&gt;&lt;p&gt;Starts a console window for the database client.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Запуск консоли клиента&lt;/b&gt;&lt;p&gt;Запуск окна консоли для клиента базы данных.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="331"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start &amp;Client Console</source>
         <translation>Старт консоли &amp;клиента</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2145"/>
+        <location filename="../Project.py" line="2165"/>
         <source>Create Tables</source>
         <translation>Создание таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="367"/>
         <source>Create &amp;Tables</source>
         <translation>Создать &amp;таблицы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="354"/>
+        <location filename="../Project.py" line="372"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation>Выводит SQL операторы CREATE TABLE для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="357"/>
+        <location filename="../Project.py" line="375"/>
         <source>&lt;b&gt;Create Tables&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Создание таблиц&lt;/b&gt;&lt;p&gt;Вывод SQL операторов CREATE TABLE для одного или нескольких приложений.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="871"/>
+        <location filename="../Project.py" line="891"/>
         <source>Show &amp;SQL</source>
         <translation>&amp;SQL</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2152"/>
+        <location filename="../Project.py" line="2172"/>
         <source>Create Indexes</source>
         <translation>Создание индексов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="366"/>
+        <location filename="../Project.py" line="384"/>
         <source>Create &amp;Indexes</source>
         <translation>Создать &amp;индексы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="374"/>
+        <location filename="../Project.py" line="392"/>
         <source>&lt;b&gt;Create Indexes&lt;/b&gt;&lt;p&gt;Prints the CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Создание индексов&lt;/b&gt;&lt;p&gt;Вывод SQL операторов CREATE INDEX для одного или нескольких приложений.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2159"/>
+        <location filename="../Project.py" line="2179"/>
         <source>Create Everything</source>
         <translation>Создать все</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="383"/>
+        <location filename="../Project.py" line="401"/>
         <source>Create &amp;Everything</source>
         <translation>Создать &amp;все</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="388"/>
+        <location filename="../Project.py" line="406"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation>Выводит SQL операторы CREATE ... для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="391"/>
+        <location filename="../Project.py" line="409"/>
         <source>&lt;b&gt;Create Everything&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Создать все&lt;/b&gt;&lt;p&gt;Вывод комбинации SQL операторов CREATE TABLE, CREATE INDEX и пользовательских SQL запровов для одного или нескольких приложений.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="371"/>
+        <location filename="../Project.py" line="389"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation>Выводит SQL операторы CREATE INDEX для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2166"/>
+        <location filename="../Project.py" line="2186"/>
         <source>Custom Statements</source>
         <translation>Пользовательские запросы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="400"/>
+        <location filename="../Project.py" line="418"/>
         <source>&amp;Custom Statements</source>
         <translation>&amp;Пользовательские запросы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="405"/>
+        <location filename="../Project.py" line="423"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation>Выводит дополнительную таблицу, модифицированную  SQL запросами, для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="408"/>
+        <location filename="../Project.py" line="426"/>
         <source>&lt;b&gt;Custom Statements&lt;/b&gt;&lt;p&gt;Prints the custom table modifying SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Пользовательские запросы&lt;/b&gt;&lt;p&gt;Вывод дополнительной таблицы, модифицированной SQL запросами. для одного или нескольких приложений.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2173"/>
+        <location filename="../Project.py" line="2193"/>
         <source>Drop Tables</source>
         <translation>Удаление таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="417"/>
+        <location filename="../Project.py" line="435"/>
         <source>&amp;Drop Tables</source>
         <translation>&amp;Удаление таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="422"/>
+        <location filename="../Project.py" line="440"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation>Выводит SQL операторы DROP TABLE для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="425"/>
+        <location filename="../Project.py" line="443"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Удаление таблиц&lt;/b&gt;&lt;p&gt;Вывод SQL операторов DROP TABLE для одного или нескольких приложений.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="451"/>
+        <location filename="../Project.py" line="469"/>
         <source>&amp;Flush Database</source>
         <translation>&amp;Очистка базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="456"/>
+        <location filename="../Project.py" line="474"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation>Выводит список SQL операторов для возврата всех таблиц базы данных к состоянию на момент ее инсталяции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="459"/>
+        <location filename="../Project.py" line="477"/>
         <source>&lt;b&gt;Flush Database&lt;/b&gt;&lt;p&gt;Prints a list of statements to return all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Очистка базы данных&lt;/b&gt;&lt;p&gt;Вывод списка SQL операторов для возврата всех таблиц  базы данных к состоянию на момент ее инсталяции.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2194"/>
+        <location filename="../Project.py" line="2214"/>
         <source>Reset Sequences</source>
         <translation>Сброс цепочки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="468"/>
+        <location filename="../Project.py" line="486"/>
         <source>Reset &amp;Sequences</source>
         <translation>Сброс &amp;цепочки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="473"/>
+        <location filename="../Project.py" line="491"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation>Выводит SQL операторы для сброса последовательности для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="476"/>
+        <location filename="../Project.py" line="494"/>
         <source>&lt;b&gt;Reset Sequences&lt;/b&gt;&lt;p&gt;Prints the SQL statements for resetting sequences for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Сброс цепочки&lt;/b&gt;&lt;p&gt;Вывод SQL операторов для сброса последовательности для одного или нескольких приложений.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2638"/>
+        <location filename="../Project.py" line="2658"/>
         <source>Dump Data</source>
         <translation>Выводит текущие данные из базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="583"/>
+        <location filename="../Project.py" line="601"/>
         <source>&amp;Dump Data</source>
         <translation>&amp;Выгрузка данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="588"/>
+        <location filename="../Project.py" line="606"/>
         <source>Dump the database data to a fixture</source>
         <translation>Выводит данные базы данных в файлы оснастки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="590"/>
+        <location filename="../Project.py" line="608"/>
         <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="946"/>
+        <location filename="../Project.py" line="966"/>
         <source>T&amp;esting</source>
         <translation>Т&amp;естирование</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2236"/>
+        <location filename="../Project.py" line="2256"/>
         <source>SQL Files (*.sql)</source>
         <translation>SQL Files (*.sql)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2661"/>
+        <location filename="../Project.py" line="2681"/>
         <source>JSON Files (*.json)</source>
         <translation>JSON Files (*.json)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2663"/>
+        <location filename="../Project.py" line="2683"/>
         <source>XML Files (*.xml)</source>
         <translation>XML Files (*.xml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2665"/>
+        <location filename="../Project.py" line="2685"/>
         <source>YAML Files (*.yaml)</source>
         <translation>YAML Files (*.yaml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2677"/>
+        <location filename="../Project.py" line="2697"/>
         <source>Load Data</source>
         <translation>Загрузка данных в базу данных из файлов оснастки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="597"/>
+        <location filename="../Project.py" line="615"/>
         <source>&amp;Load Data</source>
         <translation>&amp;Загрузка данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="602"/>
+        <location filename="../Project.py" line="620"/>
         <source>Load data from fixture files</source>
         <translation>Загрузка начальных данных из файлов оснастки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="604"/>
+        <location filename="../Project.py" line="622"/>
         <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="611"/>
+        <location filename="../Project.py" line="629"/>
         <source>Run Testsuite</source>
         <translation>Выполнение набора тестов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="611"/>
+        <location filename="../Project.py" line="629"/>
         <source>Run &amp;Testsuite</source>
         <translation>Старт набора &amp;тестов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="616"/>
+        <location filename="../Project.py" line="634"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation>Выполнение набора тестов для приложения или для всего сайта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="618"/>
+        <location filename="../Project.py" line="636"/>
         <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="625"/>
+        <location filename="../Project.py" line="643"/>
         <source>Run Testserver</source>
         <translation>Запуск сервера тестов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="625"/>
+        <location filename="../Project.py" line="643"/>
         <source>Run Test&amp;server</source>
         <translation>Старт сервера &amp;тестов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="630"/>
+        <location filename="../Project.py" line="648"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation>Запуск сервера разработки с данными из набора оснастки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="632"/>
+        <location filename="../Project.py" line="650"/>
         <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="2768"/>
+        <location filename="../Project.py" line="2788"/>
         <source>The Django test server could not be started.</source>
         <translation>Невозможно запустить Django сервер тестов.</translation>
     </message>
@@ -1252,444 +1305,459 @@
         <translation>&lt;b&gt;Справка&lt;/b&gt;&lt;p&gt;Показ страницы индексов справки  Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1040"/>
+        <location filename="../Project.py" line="1060"/>
         <source>New template...</source>
         <translation>Новый шаблон...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1049"/>
+        <location filename="../Project.py" line="1069"/>
         <source>Update all catalogs</source>
         <translation>Обновить все каталоги</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1052"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Update selected catalogs</source>
         <translation>Обновить выбранные каталоги</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1063"/>
+        <location filename="../Project.py" line="1083"/>
         <source>Compile all catalogs</source>
         <translation>Компиляция всех каталогов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1066"/>
+        <location filename="../Project.py" line="1086"/>
         <source>Compile selected catalogs</source>
         <translation>Компиляция выбранных каталогов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2935"/>
+        <location filename="../Project.py" line="2955"/>
         <source>Initializing message catalog for &apos;{0}&apos;</source>
         <translation>Инициализация каталога сообщений для &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3194"/>
+        <location filename="../Project.py" line="3214"/>
         <source>No current site selected or no site created yet. Aborting...</source>
         <translation>Текущий сайт не выбран или еще не создан. Прерывание выполнения...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3067"/>
+        <location filename="../Project.py" line="3087"/>
         <source>Updating message catalogs</source>
         <translation>Обновление каталогов сообщений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3158"/>
+        <location filename="../Project.py" line="3178"/>
         <source>No locales detected. Aborting...</source>
         <translation>Локали не найдены. Прерывание выполнения...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3118"/>
+        <location filename="../Project.py" line="3138"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation>
 Каталоги сообщений успешно обновлены.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3184"/>
+        <location filename="../Project.py" line="3204"/>
         <source>Compiling message catalogs</source>
         <translation>Компиляция каталогов сообщений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3201"/>
+        <location filename="../Project.py" line="3221"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation>Каталоги сообщений успешно компилированы.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1056"/>
+        <location filename="../Project.py" line="1076"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation>Обновить все каталоги (с устаревшими)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1059"/>
+        <location filename="../Project.py" line="1079"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation>Обновить выбранные каталоги (с устаревшими)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1758"/>
+        <location filename="../Project.py" line="1778"/>
         <source>Start Global Django Application</source>
         <translation>Выполнение Django global приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1758"/>
+        <location filename="../Project.py" line="1778"/>
         <source>Enter the name of the new global Django application.</source>
         <translation>Введите имя нового Djangо global приложения. </translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1780"/>
+        <location filename="../Project.py" line="1800"/>
         <source>Start Local Django Application</source>
         <translation>Выполнение Django local приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1780"/>
+        <location filename="../Project.py" line="1800"/>
         <source>Enter the name of the new local Django application.</source>
         <translation>Введите имя нового Django local приложения. </translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3099"/>
+        <location filename="../Project.py" line="3119"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation>Обновление каталогов сообщений (с сохранением устаревших сообщений)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2798"/>
+        <location filename="../Project.py" line="2818"/>
         <source>Change Password</source>
         <translation>Смена пароля</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="644"/>
+        <location filename="../Project.py" line="662"/>
         <source>Change &amp;Password</source>
         <translation>Смена &amp;пароля</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="649"/>
+        <location filename="../Project.py" line="667"/>
         <source>Change the password of a user</source>
         <translation>Смена пароля пользователя</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="651"/>
+        <location filename="../Project.py" line="669"/>
         <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="658"/>
+        <location filename="../Project.py" line="676"/>
         <source>Create Superuser</source>
         <translation>Создание суперпользователя</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="658"/>
+        <location filename="../Project.py" line="676"/>
         <source>Create &amp;Superuser</source>
         <translation>Создать &amp;суперпользователя</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="663"/>
+        <location filename="../Project.py" line="681"/>
         <source>Create a superuser account</source>
         <translation>Создать аккаунт суперпользователя</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="665"/>
+        <location filename="../Project.py" line="683"/>
         <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="2854"/>
+        <location filename="../Project.py" line="2874"/>
         <source>Clear Sessions</source>
         <translation>Очистка сессии</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="676"/>
+        <location filename="../Project.py" line="694"/>
         <source>Clear &amp;Sessions</source>
         <translation>Очистка &amp;сессии</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="681"/>
+        <location filename="../Project.py" line="699"/>
         <source>Clear expired sessions</source>
         <translation>Очистка истекших сессий</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="683"/>
+        <location filename="../Project.py" line="701"/>
         <source>&lt;b&gt;Clear Sessions&lt;/b&gt;&lt;p&gt;Clear expired sessions of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Очистка сессий&lt;/b&gt;&lt;p&gt;Очистка истекших сессий Django проекта.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="966"/>
+        <location filename="../Project.py" line="986"/>
         <source>&amp;Authorization</source>
         <translation>&amp;Авторизация</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="983"/>
+        <location filename="../Project.py" line="1003"/>
         <source>&amp;Session</source>
         <translation>&amp;Сессия</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2798"/>
+        <location filename="../Project.py" line="2818"/>
         <source>Enter the name of the user:</source>
         <translation>Введите имя пользователя:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2866"/>
+        <location filename="../Project.py" line="2886"/>
         <source>Expired sessions cleared successfully.</source>
         <translation>Истекшая сессия успешно очищена.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1459"/>
         <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="1729"/>
+        <location filename="../Project.py" line="1749"/>
         <source>&lt;p&gt;The &lt;b&gt;django-admin.py&lt;/b&gt; script is not in the path. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Скрипт &lt;b&gt;django-admin.py&lt;/b&gt; не найден в путях доступа. Прерывание...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1025"/>
+        <location filename="../Project.py" line="1045"/>
         <source>Open with {0}</source>
         <translation>Открыть с помощью {0}</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3230"/>
+        <location filename="../Project.py" line="3250"/>
         <source>The translations editor process ({0}) could not be started.</source>
         <translation>Невозможен запуск редактора переводов ({0}).</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1180"/>
         <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="2955"/>
+        <location filename="../Project.py" line="2975"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation>Каталог сообщений успешно инициализирован.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2180"/>
+        <location filename="../Project.py" line="2200"/>
         <source>Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="434"/>
+        <location filename="../Project.py" line="452"/>
         <source>&amp;Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="439"/>
+        <location filename="../Project.py" line="457"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="442"/>
+        <location filename="../Project.py" line="460"/>
         <source>&lt;b&gt;Drop Indexes&lt;/b&gt;&lt;p&gt;Prints the DROP INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="694"/>
+        <location filename="../Project.py" line="712"/>
         <source>Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="694"/>
+        <location filename="../Project.py" line="712"/>
         <source>&amp;Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="699"/>
+        <location filename="../Project.py" line="717"/>
         <source>Show a list of available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="701"/>
+        <location filename="../Project.py" line="719"/>
         <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="709"/>
+        <location filename="../Project.py" line="727"/>
         <source>Show Migrations Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="709"/>
+        <location filename="../Project.py" line="727"/>
         <source>Show Migrations &amp;Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="714"/>
+        <location filename="../Project.py" line="732"/>
         <source>Show a list with the migrations plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="716"/>
+        <location filename="../Project.py" line="734"/>
         <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="901"/>
+        <location filename="../Project.py" line="921"/>
         <source>&amp;Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="724"/>
+        <location filename="../Project.py" line="742"/>
         <source>Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="724"/>
+        <location filename="../Project.py" line="742"/>
         <source>&amp;Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="729"/>
+        <location filename="../Project.py" line="747"/>
         <source>Apply all available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="731"/>
+        <location filename="../Project.py" line="749"/>
         <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="2290"/>
+        <location filename="../Project.py" line="2310"/>
         <source>Apply Selected Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="743"/>
+        <location filename="../Project.py" line="761"/>
         <source>Apply selected migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="745"/>
+        <location filename="../Project.py" line="763"/>
         <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="2349"/>
+        <location filename="../Project.py" line="2369"/>
         <source>Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="754"/>
+        <location filename="../Project.py" line="772"/>
         <source>&amp;Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="759"/>
+        <location filename="../Project.py" line="777"/>
         <source>Unapply all migrations for an app</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="761"/>
+        <location filename="../Project.py" line="779"/>
         <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="2426"/>
+        <location filename="../Project.py" line="2446"/>
         <source>Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="769"/>
+        <location filename="../Project.py" line="787"/>
         <source>&amp;Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="774"/>
+        <location filename="../Project.py" line="792"/>
         <source>Generate migrations for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="776"/>
+        <location filename="../Project.py" line="794"/>
         <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="2457"/>
+        <location filename="../Project.py" line="2477"/>
         <source>No migrations available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2315"/>
+        <location filename="../Project.py" line="2335"/>
         <source>Apply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2349"/>
+        <location filename="../Project.py" line="2369"/>
         <source>Select an application:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2470"/>
+        <location filename="../Project.py" line="2490"/>
         <source>Squash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="783"/>
+        <location filename="../Project.py" line="801"/>
         <source>S&amp;quash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="788"/>
+        <location filename="../Project.py" line="806"/>
         <source>Squash migrations of an application of the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="790"/>
+        <location filename="../Project.py" line="808"/>
         <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="485"/>
+        <location filename="../Project.py" line="503"/>
         <source>Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="485"/>
+        <location filename="../Project.py" line="503"/>
         <source>&amp;Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="490"/>
+        <location filename="../Project.py" line="508"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="493"/>
+        <location filename="../Project.py" line="511"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="502"/>
+        <location filename="../Project.py" line="520"/>
         <source>Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="502"/>
+        <location filename="../Project.py" line="520"/>
         <source>&amp;Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="507"/>
+        <location filename="../Project.py" line="525"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="510"/>
+        <location filename="../Project.py" line="528"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2218"/>
+        <location filename="../Project.py" line="2238"/>
         <source>SQL Migrate</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project.py" line="3295"/>
+        <source>Check Project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="282"/>
+        <source>Inspects the Django project for common problems</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="284"/>
+        <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>
 </context>
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="407"/>
+        <location filename="../../PluginProjectDjango.py" line="409"/>
         <source>Django</source>
         <translation>Django</translation>
     </message>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="178"/>
+        <location filename="../../PluginProjectDjango.py" line="180"/>
         <source>eric6 version is too old, {0}, {1} or newer needed.</source>
         <translation>версия eric6 слишком старая, необходима {0}, {1} или более поздняя.</translation>
     </message>
diff -r f8e92eaaba6e -r 5822c2e2b1c7 ProjectDjango/i18n/django_tr.ts
--- a/ProjectDjango/i18n/django_tr.ts	Tue Dec 20 12:26:33 2016 +0100
+++ b/ProjectDjango/i18n/django_tr.ts	Tue Dec 20 16:15:21 2016 +0100
@@ -1,6 +1,59 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!DOCTYPE TS><TS version="2.0" language="tr_TR" sourcelanguage="">
 <context>
+    <name>DjangoCheckOptionsDialog</name>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="14"/>
+        <source>Check Options</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="23"/>
+        <source>Select to enable checks for deployment mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="26"/>
+        <source>Deployment Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="33"/>
+        <source>Select type of checks (leave unselected for all checks):</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="56"/>
+        <source>Enter the list of applications separated by spaces (leave empty for all apps):</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="73"/>
+        <source>Settings module for deployment mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="79"/>
+        <source>Enter the module name of the deployment settings</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.ui" line="86"/>
+        <source>Press to select the settings module file via a file selection dialog</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <source>Select settings file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <source>Python Files (*.py)</source>
+        <translation type="unfinished"></translation>
+    </message>
+</context>
+<context>
     <name>DjangoDialog</name>
     <message>
         <location filename="../DjangoDialog.ui" line="14"/>
@@ -431,7 +484,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ConfigurationPage/DjangoPage.ui" line="380"/>
+        <location filename="../ConfigurationPage/DjangoPage.py" line="179"/>
         <source>Translations Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -607,7 +660,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1988"/>
+        <location filename="../Project.py" line="2008"/>
         <source>Run Web-Browser</source>
         <translation>Web-Gözatıcısını Çalıştır</translation>
     </message>
@@ -627,7 +680,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2601"/>
+        <location filename="../Project.py" line="2621"/>
         <source>Create Cache Tables</source>
         <translation type="unfinished">Gizli Tabloları Oluştur</translation>
     </message>
@@ -647,7 +700,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1439"/>
+        <location filename="../Project.py" line="1459"/>
         <source>About Django</source>
         <translation>Django Hakkında</translation>
     </message>
@@ -667,567 +720,567 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="285"/>
+        <location filename="../Project.py" line="303"/>
         <source>Synchronize</source>
         <translation>Eşzamanlamak</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="285"/>
+        <location filename="../Project.py" line="303"/>
         <source>&amp;Synchronize</source>
         <translation>E&amp;şzamanlamak</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="290"/>
+        <location filename="../Project.py" line="308"/>
         <source>Synchronizes the database</source>
         <translation>Veritabanını eşzamanla</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="292"/>
+        <location filename="../Project.py" line="310"/>
         <source>&lt;b&gt;Synchronize&lt;/b&gt;&lt;p&gt;Synchronizes the database.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="299"/>
+        <location filename="../Project.py" line="317"/>
         <source>Introspect</source>
         <translation>İçgözlem</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="299"/>
+        <location filename="../Project.py" line="317"/>
         <source>&amp;Introspect</source>
         <translation>&amp;İçgözlem</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="304"/>
+        <location filename="../Project.py" line="322"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="307"/>
+        <location filename="../Project.py" line="325"/>
         <source>&lt;b&gt;Introspect&lt;/b&gt;&lt;p&gt;Introspects the database tables and outputs a Django model module.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="315"/>
+        <location filename="../Project.py" line="333"/>
         <source>Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="315"/>
+        <location filename="../Project.py" line="333"/>
         <source>&amp;Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="320"/>
+        <location filename="../Project.py" line="338"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="323"/>
+        <location filename="../Project.py" line="341"/>
         <source>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Returns all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="331"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start Client Console</source>
         <translation>İstemci Uçbirimini Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="331"/>
+        <location filename="../Project.py" line="349"/>
         <source>Start &amp;Client Console</source>
         <translation>İstem&amp;ci Uçbirimini Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="336"/>
+        <location filename="../Project.py" line="354"/>
         <source>Starts a console window for the database client</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="338"/>
+        <location filename="../Project.py" line="356"/>
         <source>&lt;b&gt;Start Client Console&lt;/b&gt;&lt;p&gt;Starts a console window for the database client.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2145"/>
+        <location filename="../Project.py" line="2165"/>
         <source>Create Tables</source>
         <translation>Tabloyu Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="367"/>
         <source>Create &amp;Tables</source>
         <translation>&amp;Tabloları Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="354"/>
+        <location filename="../Project.py" line="372"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="357"/>
+        <location filename="../Project.py" line="375"/>
         <source>&lt;b&gt;Create Tables&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2152"/>
+        <location filename="../Project.py" line="2172"/>
         <source>Create Indexes</source>
         <translation>Katalogları oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="366"/>
+        <location filename="../Project.py" line="384"/>
         <source>Create &amp;Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="371"/>
+        <location filename="../Project.py" line="389"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="374"/>
+        <location filename="../Project.py" line="392"/>
         <source>&lt;b&gt;Create Indexes&lt;/b&gt;&lt;p&gt;Prints the CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2159"/>
+        <location filename="../Project.py" line="2179"/>
         <source>Create Everything</source>
         <translation>Herşeyi Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="383"/>
+        <location filename="../Project.py" line="401"/>
         <source>Create &amp;Everything</source>
         <translation>H&amp;erşeyi Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="388"/>
+        <location filename="../Project.py" line="406"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="391"/>
+        <location filename="../Project.py" line="409"/>
         <source>&lt;b&gt;Create Everything&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2166"/>
+        <location filename="../Project.py" line="2186"/>
         <source>Custom Statements</source>
         <translation>Özel İfadeler</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="400"/>
+        <location filename="../Project.py" line="418"/>
         <source>&amp;Custom Statements</source>
         <translation>Özel İfade&amp;ler</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="405"/>
+        <location filename="../Project.py" line="423"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="408"/>
+        <location filename="../Project.py" line="426"/>
         <source>&lt;b&gt;Custom Statements&lt;/b&gt;&lt;p&gt;Prints the custom table modifying SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2173"/>
+        <location filename="../Project.py" line="2193"/>
         <source>Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="417"/>
+        <location filename="../Project.py" line="435"/>
         <source>&amp;Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="422"/>
+        <location filename="../Project.py" line="440"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="425"/>
+        <location filename="../Project.py" line="443"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2187"/>
+        <location filename="../Project.py" line="2207"/>
         <source>Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="451"/>
+        <location filename="../Project.py" line="469"/>
         <source>&amp;Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="456"/>
+        <location filename="../Project.py" line="474"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="459"/>
+        <location filename="../Project.py" line="477"/>
         <source>&lt;b&gt;Flush Database&lt;/b&gt;&lt;p&gt;Prints a list of statements to return all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2194"/>
+        <location filename="../Project.py" line="2214"/>
         <source>Reset Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="468"/>
+        <location filename="../Project.py" line="486"/>
         <source>Reset &amp;Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="473"/>
+        <location filename="../Project.py" line="491"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="476"/>
+        <location filename="../Project.py" line="494"/>
         <source>&lt;b&gt;Reset Sequences&lt;/b&gt;&lt;p&gt;Prints the SQL statements for resetting sequences for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2502"/>
+        <location filename="../Project.py" line="2522"/>
         <source>Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="523"/>
+        <location filename="../Project.py" line="541"/>
         <source>&amp;Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="528"/>
+        <location filename="../Project.py" line="546"/>
         <source>Shows the modification made to the settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="530"/>
+        <location filename="../Project.py" line="548"/>
         <source>&lt;b&gt;Diff Settings&lt;/b&gt;&lt;p&gt;Shows the modification made to the settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2523"/>
+        <location filename="../Project.py" line="2543"/>
         <source>Cleanup</source>
         <translation>Tasfiye</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="537"/>
+        <location filename="../Project.py" line="555"/>
         <source>&amp;Cleanup</source>
         <translation>Tas&amp;fiye</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="542"/>
+        <location filename="../Project.py" line="560"/>
         <source>Cleans out old data from the database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="544"/>
+        <location filename="../Project.py" line="562"/>
         <source>&lt;b&gt;Cleanup&lt;/b&gt;&lt;p&gt;Cleans out old data from the database.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2546"/>
+        <location filename="../Project.py" line="2566"/>
         <source>Validate</source>
         <translation>Geçerli</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="551"/>
+        <location filename="../Project.py" line="569"/>
         <source>&amp;Validate</source>
         <translation>&amp;Geçerli</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="556"/>
+        <location filename="../Project.py" line="574"/>
         <source>Validates all installed models</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="558"/>
+        <location filename="../Project.py" line="576"/>
         <source>&lt;b&gt;Validate&lt;/b&gt;&lt;p&gt;Validates all installed models.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="565"/>
+        <location filename="../Project.py" line="583"/>
         <source>Start Python Console</source>
         <translation>Python Uçbirimini çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="565"/>
+        <location filename="../Project.py" line="583"/>
         <source>Start &amp;Python Console</source>
         <translation>&amp;Python Uçbinimini başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="570"/>
+        <location filename="../Project.py" line="588"/>
         <source>Starts a Python interactive interpreter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="572"/>
+        <location filename="../Project.py" line="590"/>
         <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="2638"/>
+        <location filename="../Project.py" line="2658"/>
         <source>Dump Data</source>
         <translation>Boş Veri</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="583"/>
+        <location filename="../Project.py" line="601"/>
         <source>&amp;Dump Data</source>
         <translation>B&amp;oş Veri</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="588"/>
+        <location filename="../Project.py" line="606"/>
         <source>Dump the database data to a fixture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="590"/>
+        <location filename="../Project.py" line="608"/>
         <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="2677"/>
+        <location filename="../Project.py" line="2697"/>
         <source>Load Data</source>
         <translation>Veriyi Yükle</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="597"/>
+        <location filename="../Project.py" line="615"/>
         <source>&amp;Load Data</source>
         <translation>Veriyi Yük&amp;le</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="602"/>
+        <location filename="../Project.py" line="620"/>
         <source>Load data from fixture files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="604"/>
+        <location filename="../Project.py" line="622"/>
         <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="611"/>
+        <location filename="../Project.py" line="629"/>
         <source>Run Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="611"/>
+        <location filename="../Project.py" line="629"/>
         <source>Run &amp;Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="616"/>
+        <location filename="../Project.py" line="634"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="618"/>
+        <location filename="../Project.py" line="636"/>
         <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="625"/>
+        <location filename="../Project.py" line="643"/>
         <source>Run Testserver</source>
         <translation>Testsunucusunu Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="625"/>
+        <location filename="../Project.py" line="643"/>
         <source>Run Test&amp;server</source>
         <translation>Test&amp;sunucusunu Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="630"/>
+        <location filename="../Project.py" line="648"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="632"/>
+        <location filename="../Project.py" line="650"/>
         <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="807"/>
+        <location filename="../Project.py" line="825"/>
         <source>D&amp;jango</source>
         <translation>D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="847"/>
+        <location filename="../Project.py" line="867"/>
         <source>&amp;Database</source>
         <translation>&amp;Veritabanı</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="871"/>
+        <location filename="../Project.py" line="891"/>
         <source>Show &amp;SQL</source>
         <translation>&amp;SQL u göster</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="926"/>
+        <location filename="../Project.py" line="946"/>
         <source>&amp;Tools</source>
         <translation>&amp;Araçlar</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="946"/>
+        <location filename="../Project.py" line="966"/>
         <source>T&amp;esting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1160"/>
+        <location filename="../Project.py" line="1180"/>
         <source>New Form</source>
         <translation>Yeni Form</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1127"/>
+        <location filename="../Project.py" line="1147"/>
         <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="1510"/>
+        <location filename="../Project.py" line="1530"/>
         <source>Select Applications</source>
         <translation>Uygulamayı Seç</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1510"/>
+        <location filename="../Project.py" line="1530"/>
         <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="1865"/>
+        <location filename="../Project.py" line="1885"/>
         <source>Project</source>
         <translation>Proje</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1605"/>
+        <location filename="../Project.py" line="1625"/>
         <source>Application</source>
         <translation>Uygulama</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1607"/>
+        <location filename="../Project.py" line="1627"/>
         <source>Start Django</source>
         <translation>Djangoyu Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1607"/>
+        <location filename="../Project.py" line="1627"/>
         <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="1684"/>
+        <location filename="../Project.py" line="1704"/>
         <source>Start Django Project</source>
         <translation>Django Projesini Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1660"/>
+        <location filename="../Project.py" line="1680"/>
         <source>Django project created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1684"/>
+        <location filename="../Project.py" line="1704"/>
         <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="1712"/>
+        <location filename="../Project.py" line="1732"/>
         <source>Start Django Application</source>
         <translation>Django Uygulamasını Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1746"/>
+        <location filename="../Project.py" line="1766"/>
         <source>Django application created successfully.</source>
         <translation>Django uygulaması başarıyla oluşturuldu.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1829"/>
+        <location filename="../Project.py" line="1849"/>
         <source>Select Project</source>
         <translation>Projeyi Seç</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1829"/>
+        <location filename="../Project.py" line="1849"/>
         <source>Select the Django project to work with.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1863"/>
+        <location filename="../Project.py" line="1883"/>
         <source>None</source>
         <translation>Yok</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1868"/>
+        <location filename="../Project.py" line="1888"/>
         <source>&amp;Current Django project ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3230"/>
+        <location filename="../Project.py" line="3250"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1942"/>
+        <location filename="../Project.py" line="1962"/>
         <source>The Django server could not be started.</source>
         <translation>Django sunucusu başlatılamadı.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1988"/>
+        <location filename="../Project.py" line="2008"/>
         <source>Could not start the web-browser for the url &quot;{0}&quot;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2839"/>
+        <location filename="../Project.py" line="2859"/>
         <source>The Django process could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2029"/>
+        <location filename="../Project.py" line="2049"/>
         <source>Introspect Database</source>
         <translation>Veritabanı İnceleme</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2058"/>
+        <location filename="../Project.py" line="2078"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2070"/>
+        <location filename="../Project.py" line="2090"/>
         <source>Database tables flushed successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2236"/>
+        <location filename="../Project.py" line="2256"/>
         <source>SQL Files (*.sql)</source>
         <translation>SQL Dosyaları (*.sql)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2535"/>
+        <location filename="../Project.py" line="2555"/>
         <source>Database cleaned up successfully.</source>
         <translation>Veritabanı başarıyla temizlendi.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2608"/>
+        <location filename="../Project.py" line="2628"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2623"/>
+        <location filename="../Project.py" line="2643"/>
         <source>Cache tables created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2661"/>
+        <location filename="../Project.py" line="2681"/>
         <source>JSON Files (*.json)</source>
         <translation>JSON Dosyaları (*.json)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2663"/>
+        <location filename="../Project.py" line="2683"/>
         <source>XML Files (*.xml)</source>
         <translation>XML Dosyaları (*.xml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2665"/>
+        <location filename="../Project.py" line="2685"/>
         <source>YAML Files (*.yaml)</source>
         <translation>YAML Dosyaları (*.yaml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2768"/>
+        <location filename="../Project.py" line="2788"/>
         <source>The Django test server could not be started.</source>
         <translation>Django testsunucusu çalıştırılamadı.</translation>
     </message>
@@ -1252,443 +1305,458 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1040"/>
+        <location filename="../Project.py" line="1060"/>
         <source>New template...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1049"/>
+        <location filename="../Project.py" line="1069"/>
         <source>Update all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1052"/>
+        <location filename="../Project.py" line="1072"/>
         <source>Update selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1063"/>
+        <location filename="../Project.py" line="1083"/>
         <source>Compile all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1066"/>
+        <location filename="../Project.py" line="1086"/>
         <source>Compile selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2935"/>
+        <location filename="../Project.py" line="2955"/>
         <source>Initializing message catalog for &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3194"/>
+        <location filename="../Project.py" line="3214"/>
         <source>No current site selected or no site created yet. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2955"/>
+        <location filename="../Project.py" line="2975"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3067"/>
+        <location filename="../Project.py" line="3087"/>
         <source>Updating message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3158"/>
+        <location filename="../Project.py" line="3178"/>
         <source>No locales detected. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3118"/>
+        <location filename="../Project.py" line="3138"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3184"/>
+        <location filename="../Project.py" line="3204"/>
         <source>Compiling message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3201"/>
+        <location filename="../Project.py" line="3221"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1056"/>
+        <location filename="../Project.py" line="1076"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1059"/>
+        <location filename="../Project.py" line="1079"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1758"/>
+        <location filename="../Project.py" line="1778"/>
         <source>Start Global Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1758"/>
+        <location filename="../Project.py" line="1778"/>
         <source>Enter the name of the new global Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1780"/>
+        <location filename="../Project.py" line="1800"/>
         <source>Start Local Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1780"/>
+        <location filename="../Project.py" line="1800"/>
         <source>Enter the name of the new local Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3099"/>
+        <location filename="../Project.py" line="3119"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2798"/>
+        <location filename="../Project.py" line="2818"/>
         <source>Change Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="644"/>
+        <location filename="../Project.py" line="662"/>
         <source>Change &amp;Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="649"/>
+        <location filename="../Project.py" line="667"/>
         <source>Change the password of a user</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="651"/>
+        <location filename="../Project.py" line="669"/>
         <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="658"/>
+        <location filename="../Project.py" line="676"/>
         <source>Create Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="658"/>
+        <location filename="../Project.py" line="676"/>
         <source>Create &amp;Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="663"/>
-        <source>Create a superuser account</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="665"/>
-        <source>&lt;b&gt;Create Superuser&lt;/b&gt;&lt;p&gt;Create a superuser account for the Django project.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="2854"/>
-        <source>Clear Sessions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="676"/>
-        <source>Clear &amp;Sessions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Project.py" line="681"/>
-        <source>Clear expired sessions</source>
+        <source>Create a superuser account</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project.py" line="683"/>
-        <source>&lt;b&gt;Clear Sessions&lt;/b&gt;&lt;p&gt;Clear expired sessions of the Django project.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="966"/>
-        <source>&amp;Authorization</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="983"/>
-        <source>&amp;Session</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="2798"/>
-        <source>Enter the name of the user:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="2866"/>
-        <source>Expired sessions cleared successfully.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="1439"/>
-        <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>
+        <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="1729"/>
-        <source>&lt;p&gt;The &lt;b&gt;django-admin.py&lt;/b&gt; script is not in the path. Aborting...&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="1025"/>
-        <source>Open with {0}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="3230"/>
-        <source>The translations editor process ({0}) could not be started.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="1160"/>
-        <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="2180"/>
-        <source>Drop Indexes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="434"/>
-        <source>&amp;Drop Indexes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="439"/>
-        <source>Prints the DROP INDEX SQL statements for one or more applications</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="442"/>
-        <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>
+        <location filename="../Project.py" line="2874"/>
+        <source>Clear Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project.py" line="694"/>
-        <source>Show Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="694"/>
-        <source>&amp;Show Migrations</source>
+        <source>Clear &amp;Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project.py" line="699"/>
-        <source>Show a list of available migrations</source>
+        <source>Clear expired sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Project.py" line="701"/>
+        <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="986"/>
+        <source>&amp;Authorization</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="1003"/>
+        <source>&amp;Session</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="2818"/>
+        <source>Enter the name of the user:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="2886"/>
+        <source>Expired sessions cleared successfully.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="1459"/>
+        <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="1749"/>
+        <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="1045"/>
+        <source>Open with {0}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="3250"/>
+        <source>The translations editor process ({0}) could not be started.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="1180"/>
+        <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt; Problem: {1}&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="2200"/>
+        <source>Drop Indexes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="452"/>
+        <source>&amp;Drop Indexes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="457"/>
+        <source>Prints the DROP INDEX SQL statements for one or more applications</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="460"/>
+        <source>&lt;b&gt;Drop Indexes&lt;/b&gt;&lt;p&gt;Prints the DROP INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="712"/>
+        <source>Show Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="712"/>
+        <source>&amp;Show Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="717"/>
+        <source>Show a list of available migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="719"/>
         <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="709"/>
+        <location filename="../Project.py" line="727"/>
         <source>Show Migrations Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="709"/>
+        <location filename="../Project.py" line="727"/>
         <source>Show Migrations &amp;Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="714"/>
+        <location filename="../Project.py" line="732"/>
         <source>Show a list with the migrations plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="716"/>
+        <location filename="../Project.py" line="734"/>
         <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="901"/>
+        <location filename="../Project.py" line="921"/>
         <source>&amp;Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="724"/>
+        <location filename="../Project.py" line="742"/>
         <source>Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="724"/>
+        <location filename="../Project.py" line="742"/>
         <source>&amp;Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="729"/>
+        <location filename="../Project.py" line="747"/>
         <source>Apply all available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="731"/>
+        <location filename="../Project.py" line="749"/>
         <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="2290"/>
+        <location filename="../Project.py" line="2310"/>
         <source>Apply Selected Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="743"/>
+        <location filename="../Project.py" line="761"/>
         <source>Apply selected migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="745"/>
+        <location filename="../Project.py" line="763"/>
         <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="2349"/>
+        <location filename="../Project.py" line="2369"/>
         <source>Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="754"/>
+        <location filename="../Project.py" line="772"/>
         <source>&amp;Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="759"/>
+        <location filename="../Project.py" line="777"/>
         <source>Unapply all migrations for an app</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="761"/>
+        <location filename="../Project.py" line="779"/>
         <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="2426"/>
+        <location filename="../Project.py" line="2446"/>
         <source>Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="769"/>
+        <location filename="../Project.py" line="787"/>
         <source>&amp;Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="774"/>
+        <location filename="../Project.py" line="792"/>
         <source>Generate migrations for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="776"/>
+        <location filename="../Project.py" line="794"/>
         <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="2457"/>
+        <location filename="../Project.py" line="2477"/>
         <source>No migrations available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2315"/>
+        <location filename="../Project.py" line="2335"/>
         <source>Apply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2349"/>
+        <location filename="../Project.py" line="2369"/>
         <source>Select an application:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2470"/>
+        <location filename="../Project.py" line="2490"/>
         <source>Squash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="783"/>
+        <location filename="../Project.py" line="801"/>
         <source>S&amp;quash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="788"/>
+        <location filename="../Project.py" line="806"/>
         <source>Squash migrations of an application of the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="790"/>
+        <location filename="../Project.py" line="808"/>
         <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="485"/>
+        <location filename="../Project.py" line="503"/>
         <source>Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="485"/>
+        <location filename="../Project.py" line="503"/>
         <source>&amp;Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="490"/>
+        <location filename="../Project.py" line="508"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="493"/>
+        <location filename="../Project.py" line="511"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="502"/>
+        <location filename="../Project.py" line="520"/>
         <source>Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="502"/>
+        <location filename="../Project.py" line="520"/>
         <source>&amp;Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="507"/>
+        <location filename="../Project.py" line="525"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="510"/>
+        <location filename="../Project.py" line="528"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2218"/>
+        <location filename="../Project.py" line="2238"/>
         <source>SQL Migrate</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project.py" line="3295"/>
+        <source>Check Project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="282"/>
+        <source>Inspects the Django project for common problems</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="284"/>
+        <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>
 </context>
 <context>
     <name>ProjectDjangoPlugin</name>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="407"/>
+        <location filename="../../PluginProjectDjango.py" line="409"/>
         <source>Django</source>
         <translation>Django(jango)</translation>
     </message>
     <message>
-        <location filename="../../PluginProjectDjango.py" line="178"/>
+        <location filename="../../PluginProjectDjango.py" line="180"/>
         <source>eric6 version is too old, {0}, {1} or newer needed.</source>
         <translation type="unfinished">Eric4 sürümü çok eski, {0}, {1} yada daha yenisi gerekiyor. {5 ?} {0}?} {1}?} {6 ?} {0}?} {1}?}</translation>
     </message>

eric ide

mercurial