Did some more fixes and removed support for some very old commands (pre 1.5.0).

Tue, 20 Dec 2016 19:56:11 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 20 Dec 2016 19:56:11 +0100
changeset 80
34b6482eb9f6
parent 79
aa7cee37a274
child 81
3f801cc29e9f

Did some more fixes and removed support for some very old commands (pre 1.5.0).

ChangeLog file | annotate | diff | comparison | revisions
ProjectDjango/ConfigurationPage/DjangoPage.py file | annotate | diff | comparison | revisions
ProjectDjango/Project.py file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_de.qm file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_de.ts file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_empty.ts file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_en.ts file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_es.ts file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_ru.ts file | annotate | diff | comparison | revisions
ProjectDjango/i18n/django_tr.ts file | annotate | diff | comparison | revisions
--- a/ChangeLog	Tue Dec 20 16:20:16 2016 +0100
+++ b/ChangeLog	Tue Dec 20 19:56:11 2016 +0100
@@ -5,6 +5,7 @@
 - adjustments for Django >= 1.9.0
 - added support for the various migration commands
 - added support for the check command
+- removed support for some very old commands (pre 1.5.0)
 
 Version 4.1.0:
 - some bug fixes
--- a/ProjectDjango/ConfigurationPage/DjangoPage.py	Tue Dec 20 16:20:16 2016 +0100
+++ b/ProjectDjango/ConfigurationPage/DjangoPage.py	Tue Dec 20 19:56:11 2016 +0100
@@ -47,7 +47,7 @@
         else:
             consoleList.append("@konsole --workdir . -e")
             # KDE4 konsole spawns
-            consoleList.append("gnome-terminal -x")
+            consoleList.append("gnome-terminal -e")
             consoleList.append("xfce4-terminal -e")
             consoleList.append("xterm -e")
         
@@ -60,7 +60,7 @@
         else:
             consoleNoCloseList.append("@konsole --noclose --workdir . -e")
             # KDE4 konsole spawns
-            consoleNoCloseList.append("gnome-terminal -x")
+            consoleNoCloseList.append("gnome-terminal -e")
             consoleNoCloseList.append("xfce4-terminal --hold -e")
             consoleNoCloseList.append("xterm -hold -e")
         
--- a/ProjectDjango/Project.py	Tue Dec 20 16:20:16 2016 +0100
+++ b/ProjectDjango/Project.py	Tue Dec 20 19:56:11 2016 +0100
@@ -56,8 +56,11 @@
         @keyparam args list of parameters (list of strings)
         @keyparam mode access mode (QIODevice.OpenMode)
         """
-        if cmd.endswith('gnome-terminal') and args[0] == '-e':
-            args = ['-e', ' '.join(args[1:])]
+        if cmd.endswith(('gnome-terminal', 'konsole')):
+            if '-e' in args:
+                index = args.index('-e') + 1
+                cargs = ' '.join(args[index:])
+                args[index:] = [cargs]
         
         super(QProcess, self).start(cmd, args, mode)
     
@@ -72,8 +75,11 @@
         @keyparam path new working directory (string)
         @return tuple of successful start and process id (boolean, integer)
         """
-        if cmd.endswith('gnome-terminal') and args[0] == '-e':
-            args = ['-e', ' '.join(args[1:])]
+        if cmd.endswith(('gnome-terminal', 'konsole')):
+            if '-e' in args:
+                index = args.index('-e') + 1
+                cargs = ' '.join(args[index:])
+                args[index:] = [cargs]
         
         return QProcessPyQt.startDetached(cmd, args, path)
 
@@ -552,34 +558,6 @@
         self.diffSettingsAct.triggered.connect(self.__diffSettings)
         self.actions.append(self.diffSettingsAct)
     
-        self.cleanupAct = E5Action(
-            self.tr('Cleanup'),
-            self.tr('&Cleanup'),
-            0, 0,
-            self, 'django_tools_cleanup')
-        self.cleanupAct.setStatusTip(self.tr(
-            'Cleans out old data from the database'))
-        self.cleanupAct.setWhatsThis(self.tr(
-            """<b>Cleanup</b>"""
-            """<p>Cleans out old data from the database.</p>"""
-        ))
-        self.cleanupAct.triggered.connect(self.__cleanup)
-        self.actions.append(self.cleanupAct)
-    
-        self.validateAct = E5Action(
-            self.tr('Validate'),
-            self.tr('&Validate'),
-            0, 0,
-            self, 'django_tools_validate')
-        self.validateAct.setStatusTip(self.tr(
-            'Validates all installed models'))
-        self.validateAct.setWhatsThis(self.tr(
-            """<b>Validate</b>"""
-            """<p>Validates all installed models.</p>"""
-        ))
-        self.validateAct.triggered.connect(self.__validate)
-        self.actions.append(self.validateAct)
-    
         self.runPythonShellAct = E5Action(
             self.tr('Start Python Console'),
             self.tr('Start &Python Console'),
@@ -640,6 +618,23 @@
         self.runTestAct.triggered.connect(self.__runTestSuite)
         self.actions.append(self.runTestAct)
         
+        self.runDeprecationTestAct = E5Action(
+            self.tr('Run Testsuite (-Wall)'),
+            self.tr('Run Testsuite (-Wall)'),
+            0, 0,
+            self, 'django_tools_run_deprecation_test')
+        self.runDeprecationTestAct.setStatusTip(self.tr(
+            'Run the test suite for applications or the whole site with'
+            ' activated deprecation warnings'))
+        self.runDeprecationTestAct.setWhatsThis(self.tr(
+            """<b>Run Testsuite (-Wall)</b>"""
+            """<p>Run the test suite for applications or the whole site"""
+            """ with activated deprecation warnings.</p>"""
+        ))
+        self.runDeprecationTestAct.triggered.connect(
+            lambda: self.__runTestSuite(deprecation=True))
+        self.actions.append(self.runDeprecationTestAct)
+        
         self.runTestServerAct = E5Action(
             self.tr('Run Testserver'),
             self.tr('Run Test&server'),
@@ -867,8 +862,9 @@
         menu = QMenu(self.tr("&Database"), self.__ui)
         menu.setTearOffEnabled(True)
         
-        menu.addAction(self.syncDatabaseAct)
-        menu.addSeparator()
+        if self.getDjangoVersion() < (1, 7, 0):
+            menu.addAction(self.syncDatabaseAct)
+            menu.addSeparator()
         menu.addAction(self.inspectDatabaseAct)
         menu.addSeparator()
         menu.addAction(self.flushDatabaseAct)
@@ -947,8 +943,6 @@
         menu.setTearOffEnabled(True)
         
         menu.addAction(self.diffSettingsAct)
-        menu.addAction(self.cleanupAct)
-        menu.addAction(self.validateAct)
         menu.addSeparator()
         menu.addAction(self.runPythonShellAct)
         
@@ -970,6 +964,7 @@
         menu.addAction(self.loadDataAct)
         menu.addSeparator()
         menu.addAction(self.runTestAct)
+        menu.addAction(self.runDeprecationTestAct)
         menu.addAction(self.runTestServerAct)
         
         self.__menus["testing"] = menu
@@ -1600,6 +1595,24 @@
         else:
             return (False, consoleCmd)
     
+    def __adjustWorkingDirectory(self, args, wd):
+        """
+        Private method to adjust the working directory in the arguments list.
+        
+        @param args list of arguments to be modified
+        @type list of str
+        @param wd working directory
+        @type str
+        """
+        if args[0].endswith("konsole") and "--workdir" in args:
+            index = args.index("--workdir")
+            args[index + 1] = wd
+        elif args[0].endswith("gnome-terminal"):
+            for index in range(len(args)):
+                if args[index].startswith("--working-directory="):
+                    args[index] = "--working-directory={0}".format(wd)
+                    break
+    
     ##################################################################
     ## slots below implement creation functions
     ##################################################################
@@ -2019,6 +2032,7 @@
             args.append("syncdb")
             try:
                 wd = self.__sitePath()
+                self.__adjustWorkingDirectory(args, wd)
                 started, pid = QProcess.startDetached(args[0], args[1:], wd)
                 if not started:
                     E5MessageBox.critical(
@@ -2097,6 +2111,7 @@
             args.append("dbshell")
             try:
                 wd = self.__sitePath()
+                self.__adjustWorkingDirectory(args, wd)
                 started, pid = QProcess.startDetached(args[0], args[1:], wd)
                 if not started:
                     E5MessageBox.critical(
@@ -2523,50 +2538,6 @@
         if res:
             dia.exec_()
     
-    def __cleanup(self):
-        """
-        Private slot to clean out old data from the database.
-        """
-        title = self.tr("Cleanup")
-        
-        args = []
-        args.append(self.__getPythonExecutable())
-        args.append("manage.py")
-        args.append("cleanup")
-        
-        try:
-            path = self.__sitePath()
-        except DjangoNoSiteSelectedException:
-            return
-        
-        dia = DjangoDialog(
-            title,
-            msgSuccess=self.tr("Database cleaned up successfully."))
-        res = dia.startProcess(args, path)
-        if res:
-            dia.exec_()
-    
-    def __validate(self):
-        """
-        Private slot to validate all installed models.
-        """
-        title = self.tr("Validate")
-        
-        args = []
-        args.append(self.__getPythonExecutable())
-        args.append("manage.py")
-        args.append("validate")
-        
-        try:
-            path = self.__sitePath()
-        except DjangoNoSiteSelectedException:
-            return
-        
-        dia = DjangoDialog(title)
-        res = dia.startProcess(args, path)
-        if res:
-            dia.exec_()
-    
     def __runPythonShell(self):
         """
         Private slot to start a Python console for a Django project.
@@ -2588,6 +2559,7 @@
                     args.append("--plain")
             try:
                 wd = self.__sitePath()
+                self.__adjustWorkingDirectory(args, wd)
                 started, pid = QProcess.startDetached(args[0], args[1:], wd)
                 if not started:
                     E5MessageBox.critical(
@@ -2704,9 +2676,12 @@
             if res:
                 dia.exec_()
     
-    def __runTestSuite(self):
+    def __runTestSuite(self, deprecation=False):
         """
         Private slot to run the test suite for applications or the whole site.
+        
+        @param deprecation flag indicating to test for deprecation warnings
+        @type bool
         """
         consoleCmd = self.__isSpawningConsole(
             self.__plugin.getPreferences("ConsoleCommandNoClose"))[1]
@@ -2719,10 +2694,13 @@
             args = Utilities.parseOptionString(consoleCmd)
             args[0] = Utilities.getExecutablePath(args[0])
             args.append(self.__getPythonExecutable())
+            if deprecation:
+                args.append("-Wall")
             args.append("manage.py")
             args.append("test")
             args += self.__getApplications()
             
+            self.__adjustWorkingDirectory(args, wd)
             started, pid = QProcess.startDetached(args[0], args[1:], wd)
             if not started:
                 E5MessageBox.critical(
@@ -2816,6 +2794,7 @@
                 args.append(userName)
                 try:
                     wd = self.__sitePath()
+                    self.__adjustWorkingDirectory(args, wd)
                     started, pid = QProcess.startDetached(
                         args[0], args[1:], wd)
                     if not started:
@@ -2841,6 +2820,7 @@
             args.append("createsuperuser")
             try:
                 wd = self.__sitePath()
+                self.__adjustWorkingDirectory(args, wd)
                 started, pid = QProcess.startDetached(args[0], args[1:], wd)
                 if not started:
                     E5MessageBox.critical(
Binary file ProjectDjango/i18n/django_de.qm has changed
--- a/ProjectDjango/i18n/django_de.ts	Tue Dec 20 16:20:16 2016 +0100
+++ b/ProjectDjango/i18n/django_de.ts	Tue Dec 20 19:56:11 2016 +0100
@@ -43,12 +43,12 @@
         <translation>Drücken, um die Datei des Settingsmoduls mittels Dateiauswhldialog zu wählen</translation>
     </message>
     <message>
-        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <location filename="../DjangoCheckOptionsDialog.py" line="81"/>
         <source>Select settings file</source>
         <translation>Settingsdatei auswählen</translation>
     </message>
     <message>
-        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <location filename="../DjangoCheckOptionsDialog.py" line="81"/>
         <source>Python Files (*.py)</source>
         <translation>Python Datei (*.py)</translation>
     </message>
@@ -177,27 +177,22 @@
         <translation>Wähle eine Fixturedatei mittels eines Dateiauswahldialoges aus</translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.ui" line="42"/>
-        <source>...</source>
-        <translation>...</translation>
-    </message>
-    <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="57"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="60"/>
         <source>JSON Files (*.json);;XML Files (*.xml);;</source>
         <translation>JSON Dateien (*.json);;XML Dateien (*.xml);;</translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="60"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="63"/>
         <source>YAML Files (*.yaml);;</source>
         <translation>YAML Dateien (*.yaml);;</translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="63"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="66"/>
         <source>All Files (*)</source>
         <translation>Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="65"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="68"/>
         <source>Select fixture file</source>
         <translation>Wähle Fixturedatei</translation>
     </message>
@@ -565,1191 +560,1161 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="825"/>
+        <location filename="../Project.py" line="820"/>
         <source>D&amp;jango</source>
         <translation>D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1180"/>
+        <location filename="../Project.py" line="1175"/>
         <source>New Form</source>
         <translation>Neues Formular</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1147"/>
+        <location filename="../Project.py" line="1142"/>
         <source>The file already exists! Overwrite it?</source>
         <translation>Die Datei existiert bereits. Überschreiben?</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="115"/>
+        <location filename="../Project.py" line="121"/>
         <source>Current Project</source>
         <translation>Aktuelles Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="120"/>
+        <location filename="../Project.py" line="126"/>
         <source>Selects the current project</source>
         <translation>Wählt das aktuelle Projekt aus</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="135"/>
+        <location filename="../Project.py" line="141"/>
         <source>Start Project</source>
         <translation>Project starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="135"/>
+        <location filename="../Project.py" line="141"/>
         <source>Start &amp;Project</source>
         <translation>&amp;Project starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="140"/>
+        <location filename="../Project.py" line="146"/>
         <source>Starts a new Django project</source>
         <translation>Startet ein neues Django Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="142"/>
+        <location filename="../Project.py" line="148"/>
         <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using &quot;django-admin.py startproject&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Project starten&lt;/b&gt;&lt;p&gt;Started ein neues Django Projekt mittels &quot;django-admin.py startproject&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="150"/>
+        <location filename="../Project.py" line="156"/>
         <source>Start Application (global)</source>
         <translation>Anwendung starten (global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="150"/>
+        <location filename="../Project.py" line="156"/>
         <source>Start Application (&amp;global)</source>
         <translation>Anwendung starten (&amp;global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="155"/>
+        <location filename="../Project.py" line="161"/>
         <source>Starts a new global Django application</source>
         <translation>Startet eine neue globale Django Anwendung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="157"/>
+        <location filename="../Project.py" line="163"/>
         <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using &quot;django-admin.py startapp&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anwendung starten (global)&lt;/b&gt;&lt;p&gt;Startet eine neue globale Django Anwendung mittels &quot;django-admin.py startapp&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="166"/>
+        <location filename="../Project.py" line="172"/>
         <source>Start Application (local)</source>
         <translation>Anwendung starten (lokal)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="166"/>
+        <location filename="../Project.py" line="172"/>
         <source>Start Application (&amp;local)</source>
         <translation>Anwendung starten (&amp;lokal)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="171"/>
+        <location filename="../Project.py" line="177"/>
         <source>Starts a new local Django application</source>
         <translation>Startet eine neue lokale Django Anwendung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="173"/>
+        <location filename="../Project.py" line="179"/>
         <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using &quot;manage.py startapp&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anwendung starten (lokal)&lt;/b&gt;&lt;p&gt;Startet eine neue lokale Django Anwendung mittels &quot;manage.py startapp&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="186"/>
+        <location filename="../Project.py" line="192"/>
         <source>Run Server</source>
         <translation>Server starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="186"/>
+        <location filename="../Project.py" line="192"/>
         <source>Run &amp;Server</source>
         <translation>&amp;Server starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="191"/>
+        <location filename="../Project.py" line="197"/>
         <source>Starts the Django Web server</source>
         <translation>Startet den Django Web-Server</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="193"/>
+        <location filename="../Project.py" line="199"/>
         <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using &quot;manage.py runserver&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Server starten&lt;/b&gt;&lt;p&gt;Startet den Django Web-Server mittels &quot;manage.py runserve&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2008"/>
+        <location filename="../Project.py" line="2021"/>
         <source>Run Web-Browser</source>
         <translation>Web-Browser starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="201"/>
+        <location filename="../Project.py" line="207"/>
         <source>Run &amp;Web-Browser</source>
         <translation>Web-&amp;Browser starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="206"/>
+        <location filename="../Project.py" line="212"/>
         <source>Starts the default Web-Browser with the URL of the Django Web server</source>
         <translation>Startet den Standard Web-Browser mit der URL des Django Web-Servers</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="209"/>
+        <location filename="../Project.py" line="215"/>
         <source>&lt;b&gt;Run Web-Browser&lt;/b&gt;&lt;p&gt;Starts the default Web-Browser with the URL of the Django Web server.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Web-Browser starten&lt;/b&gt;&lt;p&gt;Startet den Standard Web-Browser mit der URL des Django Web-Servers.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1459"/>
+        <location filename="../Project.py" line="1454"/>
         <source>About Django</source>
         <translation>Über Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="259"/>
+        <location filename="../Project.py" line="265"/>
         <source>About D&amp;jango</source>
         <translation>Über D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="264"/>
+        <location filename="../Project.py" line="270"/>
         <source>Shows some information about Django</source>
         <translation>Zeigt Informationen über Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="266"/>
+        <location filename="../Project.py" line="272"/>
         <source>&lt;b&gt;About Django&lt;/b&gt;&lt;p&gt;Shows some information about Django.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Über Django&lt;/b&gt;&lt;p&gt;Zeigt Informationen über Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="303"/>
+        <location filename="../Project.py" line="309"/>
         <source>Synchronize</source>
         <translation>Synchronisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="303"/>
+        <location filename="../Project.py" line="309"/>
         <source>&amp;Synchronize</source>
         <translation>&amp;Synchronisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="308"/>
+        <location filename="../Project.py" line="314"/>
         <source>Synchronizes the database</source>
         <translation>Synchronisiert die Datenbank</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="310"/>
+        <location filename="../Project.py" line="316"/>
         <source>&lt;b&gt;Synchronize&lt;/b&gt;&lt;p&gt;Synchronizes the database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Synchronisieren&lt;/b&gt;&lt;p&gt;Synchronisiert die Datenbank.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="867"/>
+        <location filename="../Project.py" line="862"/>
         <source>&amp;Database</source>
         <translation>&amp;Datenbank</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1885"/>
+        <location filename="../Project.py" line="1898"/>
         <source>Project</source>
         <translation>Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1625"/>
+        <location filename="../Project.py" line="1638"/>
         <source>Application</source>
         <translation>Anwendung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1627"/>
+        <location filename="../Project.py" line="1640"/>
         <source>Start Django</source>
         <translation>Django starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1627"/>
+        <location filename="../Project.py" line="1640"/>
         <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="1704"/>
+        <location filename="../Project.py" line="1717"/>
         <source>Start Django Project</source>
         <translation>Django Projekt starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1680"/>
+        <location filename="../Project.py" line="1693"/>
         <source>Django project created successfully.</source>
         <translation>Das Django Projekt wurde erfolgreich erzeugt.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1704"/>
+        <location filename="../Project.py" line="1717"/>
         <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="1732"/>
+        <location filename="../Project.py" line="1745"/>
         <source>Start Django Application</source>
         <translation>Django Anwendung starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1766"/>
+        <location filename="../Project.py" line="1779"/>
         <source>Django application created successfully.</source>
         <translation>Die Django Anwendung wurde erfolgreich erzeugt.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1849"/>
+        <location filename="../Project.py" line="1862"/>
         <source>Select Project</source>
         <translation>Wähle Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1849"/>
+        <location filename="../Project.py" line="1862"/>
         <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="1883"/>
+        <location filename="../Project.py" line="1896"/>
         <source>None</source>
         <translation>keines</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3250"/>
+        <location filename="../Project.py" line="3230"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1962"/>
+        <location filename="../Project.py" line="1975"/>
         <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="2008"/>
+        <location filename="../Project.py" line="2021"/>
         <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="2859"/>
+        <location filename="../Project.py" line="2839"/>
         <source>The Django process could not be started.</source>
         <translation>Der Django Prozess konnte nicht gestartet werden.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="122"/>
+        <location filename="../Project.py" line="128"/>
         <source>&lt;b&gt;Current Project&lt;/b&gt;&lt;p&gt;Selects the current project. Used for multi-project Django projects to switch between the projects.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aktuelles Projekt&lt;/b&gt;&lt;p&gt;Wählt das aktuelle Projekt aus. Dies wird bei Django Mehrfach-Projekten benötigt, um zwischen den Projekten umzuschalten.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2522"/>
+        <location filename="../Project.py" line="2537"/>
         <source>Diff Settings</source>
         <translation>Settings Unterschiede</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="541"/>
+        <location filename="../Project.py" line="547"/>
         <source>&amp;Diff Settings</source>
         <translation>Settings &amp;Unterschiede</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="546"/>
+        <location filename="../Project.py" line="552"/>
         <source>Shows the modification made to the settings</source>
         <translation>Zeigt die Änderungen gegenüber dem Standard</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="548"/>
+        <location filename="../Project.py" line="554"/>
         <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="946"/>
+        <location filename="../Project.py" line="942"/>
         <source>&amp;Tools</source>
         <translation>&amp;Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1888"/>
+        <location filename="../Project.py" line="1901"/>
         <source>&amp;Current Django project ({0})</source>
         <translation>&amp;Aktuelles Django Projekt ({0})</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2543"/>
-        <source>Cleanup</source>
-        <translation>Aufräumen</translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="555"/>
-        <source>&amp;Cleanup</source>
-        <translation>&amp;Aufräumen</translation>
-    </message>
-    <message>
-        <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="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="2555"/>
-        <source>Database cleaned up successfully.</source>
-        <translation>Datenbank erfolgreich aufgeräumt.</translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="2566"/>
-        <source>Validate</source>
-        <translation>Validieren</translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="569"/>
-        <source>&amp;Validate</source>
-        <translation>&amp;Validieren</translation>
-    </message>
-    <message>
-        <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="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="1530"/>
+        <location filename="../Project.py" line="1525"/>
         <source>Select Applications</source>
         <translation>Applikation auswählen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1530"/>
+        <location filename="../Project.py" line="1525"/>
         <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="583"/>
+        <location filename="../Project.py" line="561"/>
         <source>Start Python Console</source>
         <translation>Starte Python Konsole</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="583"/>
+        <location filename="../Project.py" line="561"/>
         <source>Start &amp;Python Console</source>
         <translation>Starte &amp;Python Konsole</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="588"/>
+        <location filename="../Project.py" line="566"/>
         <source>Starts a Python interactive interpreter</source>
         <translation>Startet einen interaktiven Python Interpreter</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="590"/>
+        <location filename="../Project.py" line="568"/>
         <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="2621"/>
+        <location filename="../Project.py" line="2593"/>
         <source>Create Cache Tables</source>
         <translation>Erzeuge Cache Tabellen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="221"/>
+        <location filename="../Project.py" line="227"/>
         <source>C&amp;reate Cache Tables</source>
         <translation>Erzeuge &amp;Cache Tabellen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="226"/>
+        <location filename="../Project.py" line="232"/>
         <source>Creates the tables needed to use the SQL cache backend</source>
         <translation>Erzeugt die für das SQL Cache Backend benötigten Tabellen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="228"/>
+        <location filename="../Project.py" line="234"/>
         <source>&lt;b&gt;Create Cache Tables&lt;/b&gt;&lt;p&gt;Creates the tables needed to use the SQL cache backend.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Erzeuge Cache Tabellen&lt;/b&gt;&lt;p&gt;Erzeugt die für das SQL Cache Backend benötigten Tabellen&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2628"/>
+        <location filename="../Project.py" line="2600"/>
         <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="2643"/>
+        <location filename="../Project.py" line="2615"/>
         <source>Cache tables created successfully.</source>
         <translation>Cache Tabellen erfolgreich erzeugt.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="323"/>
         <source>Introspect</source>
         <translation>Untersuchen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="323"/>
         <source>&amp;Introspect</source>
         <translation>&amp;Untersuchen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="322"/>
+        <location filename="../Project.py" line="328"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation>Untersucht die Datenbanktabellen und gibt ein Django Modellmodul aus</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="325"/>
+        <location filename="../Project.py" line="331"/>
         <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="2049"/>
+        <location filename="../Project.py" line="2063"/>
         <source>Introspect Database</source>
         <translation>Datenbank untersuchen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="339"/>
         <source>Flush</source>
         <translation>Neuinitialisierung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="339"/>
         <source>&amp;Flush</source>
         <translation>&amp;Neuinitialisierung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="338"/>
+        <location filename="../Project.py" line="344"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation>Setzt alle Datenbanktabelle in ihren Ursprungszustand zurück</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="341"/>
+        <location filename="../Project.py" line="347"/>
         <source>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Returns all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neuinitialisierung&lt;/b&gt;&lt;p&gt;Setzt alle Datenbanktabelle in ihren Ursprungszustand zurück.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2207"/>
+        <location filename="../Project.py" line="2222"/>
         <source>Flush Database</source>
         <translation>Datenbank neu initialisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2078"/>
+        <location filename="../Project.py" line="2092"/>
         <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="2090"/>
+        <location filename="../Project.py" line="2104"/>
         <source>Database tables flushed successfully.</source>
         <translation>Datenbank erfolgreich neu initialisiert.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="355"/>
         <source>Start Client Console</source>
         <translation>Starte Datenbank Konsole</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="354"/>
+        <location filename="../Project.py" line="360"/>
         <source>Starts a console window for the database client</source>
         <translation>Started ein Konsolenfenster für den Datenbankklienten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="356"/>
+        <location filename="../Project.py" line="362"/>
         <source>&lt;b&gt;Start Client Console&lt;/b&gt;&lt;p&gt;Starts a console window for the database client.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Starte Datenbank Konsole&lt;/b&gt;&lt;p&gt;Started ein Konsolenfenster für den Datenbankklienten.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="355"/>
         <source>Start &amp;Client Console</source>
         <translation>Starte &amp;Datenbank Konsole</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2165"/>
+        <location filename="../Project.py" line="2180"/>
         <source>Create Tables</source>
         <translation>Tabellen erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="367"/>
+        <location filename="../Project.py" line="373"/>
         <source>Create &amp;Tables</source>
         <translation>&amp;Tabellen erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="372"/>
+        <location filename="../Project.py" line="378"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation>Zeigt die CREATE TABLE SQL Befehle für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="375"/>
+        <location filename="../Project.py" line="381"/>
         <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="891"/>
+        <location filename="../Project.py" line="887"/>
         <source>Show &amp;SQL</source>
         <translation>Zeige &amp;SQL</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2172"/>
+        <location filename="../Project.py" line="2187"/>
         <source>Create Indexes</source>
         <translation>Indices erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="384"/>
+        <location filename="../Project.py" line="390"/>
         <source>Create &amp;Indexes</source>
         <translation>&amp;Indices erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="392"/>
+        <location filename="../Project.py" line="398"/>
         <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="2179"/>
+        <location filename="../Project.py" line="2194"/>
         <source>Create Everything</source>
         <translation>Alles erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="401"/>
+        <location filename="../Project.py" line="407"/>
         <source>Create &amp;Everything</source>
         <translation>&amp;Alles erzeugen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="406"/>
+        <location filename="../Project.py" line="412"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation>Zeigt die CREATE ... SQL Befehle für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="409"/>
+        <location filename="../Project.py" line="415"/>
         <source>&lt;b&gt;Create Everything&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alles erzeugen&lt;/b&gt;&lt;p&gt;Zeigt die CREATE TABLE, spezifische und CREATE INDEX SQL Befehle für eine oder mehrere Anwendungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="389"/>
+        <location filename="../Project.py" line="395"/>
         <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="2186"/>
+        <location filename="../Project.py" line="2201"/>
         <source>Custom Statements</source>
         <translation>Spezifische Befehle</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="418"/>
+        <location filename="../Project.py" line="424"/>
         <source>&amp;Custom Statements</source>
         <translation>&amp;Spezifische Befehle</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="423"/>
+        <location filename="../Project.py" line="429"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation>Zeigt spezifische SQL Befehle für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="426"/>
+        <location filename="../Project.py" line="432"/>
         <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="2193"/>
+        <location filename="../Project.py" line="2208"/>
         <source>Drop Tables</source>
         <translation>Tabellen löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="435"/>
+        <location filename="../Project.py" line="441"/>
         <source>&amp;Drop Tables</source>
         <translation>Tabellen &amp;löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="440"/>
+        <location filename="../Project.py" line="446"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation>Zeigt die DROP TABLE SQL Befehle für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="443"/>
+        <location filename="../Project.py" line="449"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tabellen löschen&lt;/b&gt;&lt;p&gt;Zeigt die DROP TABLE SQL Befehle für eine oder mehrere Anwendungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="469"/>
+        <location filename="../Project.py" line="475"/>
         <source>&amp;Flush Database</source>
         <translation>&amp;Datenbank neu initialisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="474"/>
+        <location filename="../Project.py" line="480"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation>Zeigt eine Befehlsliste, um alle Datenbanktabelle in ihren Ursprungszustand zurückzusetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="477"/>
+        <location filename="../Project.py" line="483"/>
         <source>&lt;b&gt;Flush Database&lt;/b&gt;&lt;p&gt;Prints a list of statements to return all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datenbank neu initialisieren&lt;/b&gt;&lt;p/&gt;Zeigt eine Befehlsliste, um alle Datenbanktabelle in ihren Ursprungszustand zurückzusetzen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2214"/>
+        <location filename="../Project.py" line="2229"/>
         <source>Reset Sequences</source>
         <translation>Sequenzen zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="486"/>
+        <location filename="../Project.py" line="492"/>
         <source>Reset &amp;Sequences</source>
         <translation>Se&amp;quenzen zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="491"/>
+        <location filename="../Project.py" line="497"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation>Zeigt die SQL Befehle zum Zurücksetzen von Sequenzen für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="494"/>
+        <location filename="../Project.py" line="500"/>
         <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="2658"/>
+        <location filename="../Project.py" line="2630"/>
         <source>Dump Data</source>
         <translation>Daten sichern</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="601"/>
+        <location filename="../Project.py" line="579"/>
         <source>&amp;Dump Data</source>
         <translation>Daten &amp;sichern</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="606"/>
+        <location filename="../Project.py" line="584"/>
         <source>Dump the database data to a fixture</source>
         <translation>Schreibt die Datenbank in ein Fixture</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="608"/>
+        <location filename="../Project.py" line="586"/>
         <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="966"/>
+        <location filename="../Project.py" line="960"/>
         <source>T&amp;esting</source>
         <translation>&amp;Testen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2256"/>
+        <location filename="../Project.py" line="2271"/>
         <source>SQL Files (*.sql)</source>
         <translation>SQL Dateien (*.sql)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2681"/>
+        <location filename="../Project.py" line="2653"/>
         <source>JSON Files (*.json)</source>
         <translation>JSON Dateien (*.json)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2683"/>
+        <location filename="../Project.py" line="2655"/>
         <source>XML Files (*.xml)</source>
         <translation>XML Dateien (*.xml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2685"/>
+        <location filename="../Project.py" line="2657"/>
         <source>YAML Files (*.yaml)</source>
         <translation>YAML Dateien (*.yaml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2697"/>
+        <location filename="../Project.py" line="2669"/>
         <source>Load Data</source>
         <translation>Daten laden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="615"/>
+        <location filename="../Project.py" line="593"/>
         <source>&amp;Load Data</source>
         <translation>Daten &amp;laden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="620"/>
+        <location filename="../Project.py" line="598"/>
         <source>Load data from fixture files</source>
         <translation>Lädt Daten aus Fixturedateien</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="622"/>
+        <location filename="../Project.py" line="600"/>
         <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="629"/>
+        <location filename="../Project.py" line="607"/>
         <source>Run Testsuite</source>
         <translation>Testsuite starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="629"/>
+        <location filename="../Project.py" line="607"/>
         <source>Run &amp;Testsuite</source>
         <translation>&amp;Testsuite starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="634"/>
+        <location filename="../Project.py" line="612"/>
         <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="636"/>
+        <location filename="../Project.py" line="614"/>
         <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="643"/>
+        <location filename="../Project.py" line="638"/>
         <source>Run Testserver</source>
         <translation>Testserver starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="643"/>
+        <location filename="../Project.py" line="638"/>
         <source>Run Test&amp;server</source>
         <translation>Test&amp;server starten</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="648"/>
+        <location filename="../Project.py" line="643"/>
         <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="650"/>
+        <location filename="../Project.py" line="645"/>
         <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="2788"/>
+        <location filename="../Project.py" line="2766"/>
         <source>The Django test server could not be started.</source>
         <translation>Der Django Testserver konnte nicht gestartet werden.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="241"/>
+        <location filename="../Project.py" line="247"/>
         <source>Help</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="241"/>
+        <location filename="../Project.py" line="247"/>
         <source>&amp;Help</source>
         <translation>&amp;Hilfe</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="246"/>
+        <location filename="../Project.py" line="252"/>
         <source>Shows the Django help index</source>
         <translation>Zeigt den Django Hilfe Index an</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="248"/>
+        <location filename="../Project.py" line="254"/>
         <source>&lt;b&gt;Help&lt;/b&gt;&lt;p&gt;Shows the Django help index page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hilfe&lt;/b&gt;&lt;p&gt;Zeigt den Django Hilfe Index an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1060"/>
+        <location filename="../Project.py" line="1055"/>
         <source>New template...</source>
         <translation>Neues Template...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1069"/>
+        <location filename="../Project.py" line="1064"/>
         <source>Update all catalogs</source>
         <translation>Alle Kataloge aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1072"/>
+        <location filename="../Project.py" line="1067"/>
         <source>Update selected catalogs</source>
         <translation>Ausgewählte Kataloge aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1083"/>
+        <location filename="../Project.py" line="1078"/>
         <source>Compile all catalogs</source>
         <translation>Alle Kataloge übersetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1086"/>
+        <location filename="../Project.py" line="1081"/>
         <source>Compile selected catalogs</source>
         <translation>Ausgewählte Kataloge übersetzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2955"/>
+        <location filename="../Project.py" line="2935"/>
         <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="3214"/>
+        <location filename="../Project.py" line="3194"/>
         <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="2975"/>
+        <location filename="../Project.py" line="2955"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation>
 Textkatalog erfolgreich initialisiert.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3087"/>
+        <location filename="../Project.py" line="3067"/>
         <source>Updating message catalogs</source>
         <translation>Aktualisiere Textkataloge</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3178"/>
+        <location filename="../Project.py" line="3158"/>
         <source>No locales detected. Aborting...</source>
         <translation>Keine Sprachen erkannt. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3138"/>
+        <location filename="../Project.py" line="3118"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation>
 Textkataloge erfolgreich aktualisiert.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3204"/>
+        <location filename="../Project.py" line="3184"/>
         <source>Compiling message catalogs</source>
         <translation>Übersetze Textkataloge</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3221"/>
+        <location filename="../Project.py" line="3201"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation>
 Textkataloge erfolgreich übersetzt.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1076"/>
+        <location filename="../Project.py" line="1071"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation>Alle Kataloge aktualisieren (mit veralteten)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1079"/>
+        <location filename="../Project.py" line="1074"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation>Ausgewählte Kataloge aktualisieren (mit veralteten)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1778"/>
+        <location filename="../Project.py" line="1791"/>
         <source>Start Global Django Application</source>
         <translation>Globale Django Anwendung beginnen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1778"/>
+        <location filename="../Project.py" line="1791"/>
         <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="1800"/>
+        <location filename="../Project.py" line="1813"/>
         <source>Start Local Django Application</source>
         <translation>Lokale Django Anwendung beginnen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1800"/>
+        <location filename="../Project.py" line="1813"/>
         <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="3119"/>
+        <location filename="../Project.py" line="3099"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation>Aktualisiere Textkataloge (veraltete Texte behalten)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2818"/>
+        <location filename="../Project.py" line="2796"/>
         <source>Change Password</source>
         <translation>Kennwort ändern</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="662"/>
+        <location filename="../Project.py" line="657"/>
         <source>Change &amp;Password</source>
         <translation>&amp;Kennwort ändern</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="667"/>
+        <location filename="../Project.py" line="662"/>
         <source>Change the password of a user</source>
         <translation>Ändert das Kennwort eines Nutzers</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="669"/>
+        <location filename="../Project.py" line="664"/>
         <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="676"/>
+        <location filename="../Project.py" line="671"/>
         <source>Create Superuser</source>
         <translation>Superuser anlegen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="676"/>
+        <location filename="../Project.py" line="671"/>
         <source>Create &amp;Superuser</source>
         <translation>&amp;Superuser anlegen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="681"/>
+        <location filename="../Project.py" line="676"/>
         <source>Create a superuser account</source>
         <translation>Legt eine Superuser Kennung an</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="683"/>
+        <location filename="../Project.py" line="678"/>
         <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="2874"/>
+        <location filename="../Project.py" line="2854"/>
         <source>Clear Sessions</source>
         <translation>Sessions löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="694"/>
+        <location filename="../Project.py" line="689"/>
         <source>Clear &amp;Sessions</source>
         <translation>&amp;Sessions löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="699"/>
+        <location filename="../Project.py" line="694"/>
         <source>Clear expired sessions</source>
         <translation>Löscht abgelaufene Sessions</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="701"/>
+        <location filename="../Project.py" line="696"/>
         <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="986"/>
+        <location filename="../Project.py" line="981"/>
         <source>&amp;Authorization</source>
         <translation>&amp;Authorisierung</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1003"/>
+        <location filename="../Project.py" line="998"/>
         <source>&amp;Session</source>
         <translation>&amp;Session</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2818"/>
+        <location filename="../Project.py" line="2796"/>
         <source>Enter the name of the user:</source>
         <translation>Gib den Namen des Nutzers ein:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2886"/>
+        <location filename="../Project.py" line="2866"/>
         <source>Expired sessions cleared successfully.</source>
         <translation>Abgelaufene Sessions erfolgreich gelöscht.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1459"/>
+        <location filename="../Project.py" line="1454"/>
         <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="1749"/>
+        <location filename="../Project.py" line="1762"/>
         <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="1045"/>
+        <location filename="../Project.py" line="1040"/>
         <source>Open with {0}</source>
         <translation>Mit {0} öffnen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3250"/>
+        <location filename="../Project.py" line="3230"/>
         <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="1180"/>
+        <location filename="../Project.py" line="1175"/>
         <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt; Problem: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die neue Formulardatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht erzeugt werden.&lt;br&gt;Problem: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2200"/>
+        <location filename="../Project.py" line="2215"/>
         <source>Drop Indexes</source>
         <translation>Indices löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="452"/>
+        <location filename="../Project.py" line="458"/>
         <source>&amp;Drop Indexes</source>
         <translation>&amp;Indices löschen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="457"/>
+        <location filename="../Project.py" line="463"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation>Zeigt die DROP INDEX SQL Befehle für eine oder mehrere Anwendungen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="460"/>
+        <location filename="../Project.py" line="466"/>
         <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="712"/>
+        <location filename="../Project.py" line="707"/>
         <source>Show Migrations</source>
         <translation>Migrationen anzeigen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="712"/>
+        <location filename="../Project.py" line="707"/>
         <source>&amp;Show Migrations</source>
         <translation>Migrationen an&amp;zeigen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="717"/>
+        <location filename="../Project.py" line="712"/>
         <source>Show a list of available migrations</source>
         <translation>Zeigt eine Liste verfügbarer Migrationen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="719"/>
+        <location filename="../Project.py" line="714"/>
         <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="727"/>
+        <location filename="../Project.py" line="722"/>
         <source>Show Migrations Plan</source>
         <translation>Migrationsplan anzeigen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="727"/>
+        <location filename="../Project.py" line="722"/>
         <source>Show Migrations &amp;Plan</source>
         <translation>Migrations&amp;plan anzeigen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="732"/>
+        <location filename="../Project.py" line="727"/>
         <source>Show a list with the migrations plan</source>
         <translation>Zeigt eine Liste mit dem Migrationsplan</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="734"/>
+        <location filename="../Project.py" line="729"/>
         <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="921"/>
+        <location filename="../Project.py" line="917"/>
         <source>&amp;Migrations</source>
         <translation>&amp;Migrationen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="742"/>
+        <location filename="../Project.py" line="737"/>
         <source>Apply All Migrations</source>
         <translation>Alle Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="742"/>
+        <location filename="../Project.py" line="737"/>
         <source>&amp;Apply All Migrations</source>
         <translation>Alle Migrationen &amp;anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="747"/>
+        <location filename="../Project.py" line="742"/>
         <source>Apply all available migrations</source>
         <translation>Alle verfügbaren Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="749"/>
+        <location filename="../Project.py" line="744"/>
         <source>&lt;b&gt;Apply All Migrations&lt;/b&gt;&lt;p&gt;This applies all migrations of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alle Migrationen anwenden&lt;/b&gt;&lt;p&gt;Dies wendet alle Migrationen des Django Projektes an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2310"/>
+        <location filename="../Project.py" line="2325"/>
         <source>Apply Selected Migrations</source>
         <translation>Ausgewählte Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="761"/>
+        <location filename="../Project.py" line="756"/>
         <source>Apply selected migrations</source>
         <translation>Ausgewählte Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="763"/>
+        <location filename="../Project.py" line="758"/>
         <source>&lt;b&gt;Apply Selected Migrations&lt;/b&gt;&lt;p&gt;This applies selected migrations of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ausgewählte Migrationen anwenden&lt;/b&gt;&lt;p&gt;Dies wendet ausgewählte Migrationen des Django Projektes an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2384"/>
         <source>Unapply Migrations</source>
         <translation>Migrationen rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="772"/>
+        <location filename="../Project.py" line="767"/>
         <source>&amp;Unapply Migrations</source>
         <translation>Migrationen &amp;rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="777"/>
+        <location filename="../Project.py" line="772"/>
         <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="779"/>
+        <location filename="../Project.py" line="774"/>
         <source>&lt;b&gt;Unapply Migrations&lt;/b&gt;&lt;p&gt;This unapplies all migrations for an app of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Migrationen rückgängig machen&lt;/b&gt;&lt;p&gt;Dies macht alle Migrationen einer Anwendung des Django Projektes rückgängig.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2446"/>
+        <location filename="../Project.py" line="2461"/>
         <source>Make Migrations</source>
         <translation>Migrationen generieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="787"/>
+        <location filename="../Project.py" line="782"/>
         <source>&amp;Make Migrations</source>
         <translation>Migrationen &amp;generieren</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="792"/>
+        <location filename="../Project.py" line="787"/>
         <source>Generate migrations for the project</source>
         <translation>Generiert Migrationen für das Projekt</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="794"/>
+        <location filename="../Project.py" line="789"/>
         <source>&lt;b&gt;Make Migrations&lt;/b&gt;&lt;p&gt;This generates migrations for the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Migrationen generieren&lt;/b&gt;&lt;p&gt;Dies generiert Migrationen für das Django Projekt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2477"/>
+        <location filename="../Project.py" line="2492"/>
         <source>No migrations available.</source>
         <translation>Keine Migrationen verfügbar.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2335"/>
+        <location filename="../Project.py" line="2350"/>
         <source>Apply Migrations</source>
         <translation>Migrationen anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2384"/>
         <source>Select an application:</source>
         <translation>Wähle eine Anwendung aus:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2490"/>
+        <location filename="../Project.py" line="2505"/>
         <source>Squash Migrations</source>
         <translation>Migrationen kürzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="801"/>
+        <location filename="../Project.py" line="796"/>
         <source>S&amp;quash Migrations</source>
         <translation>Migrationen &amp;kürzen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="806"/>
+        <location filename="../Project.py" line="801"/>
         <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="808"/>
+        <location filename="../Project.py" line="803"/>
         <source>&lt;b&gt;Squash Migrations&lt;/b&gt;&lt;p&gt;This squashes migrations of an application of the Django project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Migrationen kürzen&lt;/b&gt;&lt;p&gt;Dies fasst Migrationen einer Anwendung des Django Projektes zusammen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="509"/>
         <source>Apply Migration</source>
         <translation>Migration anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="509"/>
         <source>&amp;Apply Migration</source>
         <translation>Migration &amp;anwenden</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="508"/>
+        <location filename="../Project.py" line="514"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation>Zeigt die SQL Befehle, um eine Migration einer Anwendung auszuführen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="511"/>
+        <location filename="../Project.py" line="517"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Migration anwenden&lt;/b&gt;&lt;p&gt;Zeigt die SQL Befehle, um eine Migration einer Anwendung auszuführen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="526"/>
         <source>Unapply Migration</source>
         <translation>Migration rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="526"/>
         <source>&amp;Unapply Migration</source>
         <translation>Migration &amp;rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="525"/>
+        <location filename="../Project.py" line="531"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation>Zeigt die SQL Befehle, um eine Migration einer Anwendung rückgängig zu machen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="528"/>
+        <location filename="../Project.py" line="534"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Migration rückgängig machen&lt;/b&gt;&lt;p&gt;Zeigt die SQL Befehle, um eine Migration einer Anwendung rückgängig zu machen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2238"/>
+        <location filename="../Project.py" line="2253"/>
         <source>SQL Migrate</source>
         <translation>SQL Migrate</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3295"/>
+        <location filename="../Project.py" line="3275"/>
         <source>Check Project</source>
         <translation>Projekt prüfen</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="282"/>
+        <location filename="../Project.py" line="288"/>
         <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"/>
+        <location filename="../Project.py" line="290"/>
         <source>&lt;b&gt;Check Project&lt;/b&gt;&lt;p&gt;This inspects the Django project for common problems.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Projekt prüfen&lt;/b&gt;&lt;p&gt;Dies prüft das Django Projekt auf übliche Probleme.&lt;/p&gt;</translation>
     </message>
+    <message>
+        <location filename="../Project.py" line="621"/>
+        <source>Run Testsuite (-Wall)</source>
+        <translation>Testsuite starten (-Wall)</translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="626"/>
+        <source>Run the test suite for applications or the whole site with activated deprecation warnings</source>
+        <translation>Startet die Testsuite für Anwendungen oder die Site mit Aktivierung von Deprecation Warnungen</translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="629"/>
+        <source>&lt;b&gt;Run Testsuite (-Wall)&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site with activated deprecation warnings.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Testsuite starten (-Wall)&lt;/b&gt;&lt;p&gt;Startet die Testsuite für Anwendungen oder die Site mit Aktivierung von Deprecation Warnungen.&lt;/p&gt;</translation>
+    </message>
 </context>
 <context>
     <name>ProjectDjangoPlugin</name>
--- a/ProjectDjango/i18n/django_empty.ts	Tue Dec 20 16:20:16 2016 +0100
+++ b/ProjectDjango/i18n/django_empty.ts	Tue Dec 20 19:56:11 2016 +0100
@@ -43,12 +43,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <location filename="../DjangoCheckOptionsDialog.py" line="81"/>
         <source>Select settings file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <location filename="../DjangoCheckOptionsDialog.py" line="81"/>
         <source>Python Files (*.py)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -162,22 +162,22 @@
 <context>
     <name>DjangoLoaddataDataDialog</name>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="57"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="60"/>
         <source>JSON Files (*.json);;XML Files (*.xml);;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="60"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="63"/>
         <source>YAML Files (*.yaml);;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="63"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="66"/>
         <source>All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="65"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="68"/>
         <source>Select fixture file</source>
         <translation type="unfinished"></translation>
     </message>
@@ -196,11 +196,6 @@
         <source>Select a fixture file via a file selection dialog</source>
         <translation type="unfinished"></translation>
     </message>
-    <message>
-        <location filename="../DjangoLoaddataDataDialog.ui" line="42"/>
-        <source>...</source>
-        <translation type="unfinished"></translation>
-    </message>
 </context>
 <context>
     <name>DjangoMakeMigrationsDialog</name>
@@ -565,1188 +560,1158 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="115"/>
+        <location filename="../Project.py" line="121"/>
         <source>Current Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="120"/>
+        <location filename="../Project.py" line="126"/>
         <source>Selects the current project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="122"/>
+        <location filename="../Project.py" line="128"/>
         <source>&lt;b&gt;Current Project&lt;/b&gt;&lt;p&gt;Selects the current project. Used for multi-project Django projects to switch between the projects.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="135"/>
+        <location filename="../Project.py" line="141"/>
         <source>Start Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="135"/>
+        <location filename="../Project.py" line="141"/>
         <source>Start &amp;Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="140"/>
+        <location filename="../Project.py" line="146"/>
         <source>Starts a new Django project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="142"/>
+        <location filename="../Project.py" line="148"/>
         <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using &quot;django-admin.py startproject&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="150"/>
+        <location filename="../Project.py" line="156"/>
         <source>Start Application (global)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="150"/>
+        <location filename="../Project.py" line="156"/>
         <source>Start Application (&amp;global)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="155"/>
+        <location filename="../Project.py" line="161"/>
         <source>Starts a new global Django application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="157"/>
+        <location filename="../Project.py" line="163"/>
         <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using &quot;django-admin.py startapp&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="166"/>
+        <location filename="../Project.py" line="172"/>
         <source>Start Application (local)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="166"/>
+        <location filename="../Project.py" line="172"/>
         <source>Start Application (&amp;local)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="171"/>
+        <location filename="../Project.py" line="177"/>
         <source>Starts a new local Django application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="173"/>
+        <location filename="../Project.py" line="179"/>
         <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using &quot;manage.py startapp&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="186"/>
+        <location filename="../Project.py" line="192"/>
         <source>Run Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="186"/>
+        <location filename="../Project.py" line="192"/>
         <source>Run &amp;Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="191"/>
+        <location filename="../Project.py" line="197"/>
         <source>Starts the Django Web server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="193"/>
+        <location filename="../Project.py" line="199"/>
         <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using &quot;manage.py runserver&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2008"/>
+        <location filename="../Project.py" line="2021"/>
         <source>Run Web-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="201"/>
+        <location filename="../Project.py" line="207"/>
         <source>Run &amp;Web-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="206"/>
+        <location filename="../Project.py" line="212"/>
         <source>Starts the default Web-Browser with the URL of the Django Web server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="209"/>
+        <location filename="../Project.py" line="215"/>
         <source>&lt;b&gt;Run Web-Browser&lt;/b&gt;&lt;p&gt;Starts the default Web-Browser with the URL of the Django Web server.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2621"/>
+        <location filename="../Project.py" line="2593"/>
         <source>Create Cache Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="221"/>
+        <location filename="../Project.py" line="227"/>
         <source>C&amp;reate Cache Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="226"/>
+        <location filename="../Project.py" line="232"/>
         <source>Creates the tables needed to use the SQL cache backend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="228"/>
+        <location filename="../Project.py" line="234"/>
         <source>&lt;b&gt;Create Cache Tables&lt;/b&gt;&lt;p&gt;Creates the tables needed to use the SQL cache backend.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="241"/>
+        <location filename="../Project.py" line="247"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="241"/>
+        <location filename="../Project.py" line="247"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="246"/>
+        <location filename="../Project.py" line="252"/>
         <source>Shows the Django help index</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="248"/>
+        <location filename="../Project.py" line="254"/>
         <source>&lt;b&gt;Help&lt;/b&gt;&lt;p&gt;Shows the Django help index page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1459"/>
+        <location filename="../Project.py" line="1454"/>
         <source>About Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="259"/>
+        <location filename="../Project.py" line="265"/>
         <source>About D&amp;jango</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="264"/>
+        <location filename="../Project.py" line="270"/>
         <source>Shows some information about Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="266"/>
+        <location filename="../Project.py" line="272"/>
         <source>&lt;b&gt;About Django&lt;/b&gt;&lt;p&gt;Shows some information about Django.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="303"/>
+        <location filename="../Project.py" line="309"/>
         <source>Synchronize</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="303"/>
+        <location filename="../Project.py" line="309"/>
         <source>&amp;Synchronize</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="308"/>
+        <location filename="../Project.py" line="314"/>
         <source>Synchronizes the database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="310"/>
+        <location filename="../Project.py" line="316"/>
         <source>&lt;b&gt;Synchronize&lt;/b&gt;&lt;p&gt;Synchronizes the database.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="323"/>
         <source>Introspect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="323"/>
         <source>&amp;Introspect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="322"/>
+        <location filename="../Project.py" line="328"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="325"/>
+        <location filename="../Project.py" line="331"/>
         <source>&lt;b&gt;Introspect&lt;/b&gt;&lt;p&gt;Introspects the database tables and outputs a Django model module.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="339"/>
         <source>Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="339"/>
         <source>&amp;Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="338"/>
+        <location filename="../Project.py" line="344"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="341"/>
+        <location filename="../Project.py" line="347"/>
         <source>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Returns all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="355"/>
         <source>Start Client Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="355"/>
         <source>Start &amp;Client Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="354"/>
+        <location filename="../Project.py" line="360"/>
         <source>Starts a console window for the database client</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="356"/>
+        <location filename="../Project.py" line="362"/>
         <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"/>
+        <location filename="../Project.py" line="2180"/>
         <source>Create Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="367"/>
+        <location filename="../Project.py" line="373"/>
         <source>Create &amp;Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="372"/>
+        <location filename="../Project.py" line="378"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="375"/>
+        <location filename="../Project.py" line="381"/>
         <source>&lt;b&gt;Create Tables&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2172"/>
+        <location filename="../Project.py" line="2187"/>
         <source>Create Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="384"/>
+        <location filename="../Project.py" line="390"/>
         <source>Create &amp;Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="389"/>
+        <location filename="../Project.py" line="395"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="392"/>
+        <location filename="../Project.py" line="398"/>
         <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="2179"/>
+        <location filename="../Project.py" line="2194"/>
         <source>Create Everything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="401"/>
+        <location filename="../Project.py" line="407"/>
         <source>Create &amp;Everything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="406"/>
+        <location filename="../Project.py" line="412"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="409"/>
+        <location filename="../Project.py" line="415"/>
         <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="2186"/>
+        <location filename="../Project.py" line="2201"/>
         <source>Custom Statements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="418"/>
+        <location filename="../Project.py" line="424"/>
         <source>&amp;Custom Statements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="423"/>
+        <location filename="../Project.py" line="429"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="426"/>
+        <location filename="../Project.py" line="432"/>
         <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="2193"/>
+        <location filename="../Project.py" line="2208"/>
         <source>Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="435"/>
+        <location filename="../Project.py" line="441"/>
         <source>&amp;Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="440"/>
+        <location filename="../Project.py" line="446"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="443"/>
+        <location filename="../Project.py" line="449"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2200"/>
+        <location filename="../Project.py" line="2215"/>
         <source>Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="452"/>
+        <location filename="../Project.py" line="458"/>
         <source>&amp;Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="457"/>
+        <location filename="../Project.py" line="463"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="460"/>
+        <location filename="../Project.py" line="466"/>
         <source>&lt;b&gt;Drop Indexes&lt;/b&gt;&lt;p&gt;Prints the DROP INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2207"/>
+        <location filename="../Project.py" line="2222"/>
         <source>Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="469"/>
+        <location filename="../Project.py" line="475"/>
         <source>&amp;Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="474"/>
+        <location filename="../Project.py" line="480"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="477"/>
+        <location filename="../Project.py" line="483"/>
         <source>&lt;b&gt;Flush Database&lt;/b&gt;&lt;p&gt;Prints a list of statements to return all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2214"/>
+        <location filename="../Project.py" line="2229"/>
         <source>Reset Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="486"/>
+        <location filename="../Project.py" line="492"/>
         <source>Reset &amp;Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="491"/>
+        <location filename="../Project.py" line="497"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="494"/>
+        <location filename="../Project.py" line="500"/>
         <source>&lt;b&gt;Reset Sequences&lt;/b&gt;&lt;p&gt;Prints the SQL statements for resetting sequences for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2522"/>
+        <location filename="../Project.py" line="2537"/>
         <source>Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="541"/>
+        <location filename="../Project.py" line="547"/>
         <source>&amp;Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="546"/>
+        <location filename="../Project.py" line="552"/>
         <source>Shows the modification made to the settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="548"/>
+        <location filename="../Project.py" line="554"/>
         <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="2543"/>
-        <source>Cleanup</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="555"/>
-        <source>&amp;Cleanup</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="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="2566"/>
-        <source>Validate</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="569"/>
-        <source>&amp;Validate</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="574"/>
-        <source>Validates all installed models</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="583"/>
+        <location filename="../Project.py" line="561"/>
         <source>Start Python Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="583"/>
+        <location filename="../Project.py" line="561"/>
         <source>Start &amp;Python Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="588"/>
+        <location filename="../Project.py" line="566"/>
         <source>Starts a Python interactive interpreter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="590"/>
+        <location filename="../Project.py" line="568"/>
         <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"/>
+        <location filename="../Project.py" line="2630"/>
         <source>Dump Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="601"/>
+        <location filename="../Project.py" line="579"/>
         <source>&amp;Dump Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="606"/>
+        <location filename="../Project.py" line="584"/>
         <source>Dump the database data to a fixture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="608"/>
+        <location filename="../Project.py" line="586"/>
         <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="2697"/>
+        <location filename="../Project.py" line="2669"/>
         <source>Load Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="615"/>
+        <location filename="../Project.py" line="593"/>
         <source>&amp;Load Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="620"/>
+        <location filename="../Project.py" line="598"/>
         <source>Load data from fixture files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="622"/>
+        <location filename="../Project.py" line="600"/>
         <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="629"/>
+        <location filename="../Project.py" line="607"/>
         <source>Run Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="629"/>
+        <location filename="../Project.py" line="607"/>
         <source>Run &amp;Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="634"/>
+        <location filename="../Project.py" line="612"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="636"/>
+        <location filename="../Project.py" line="614"/>
         <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="643"/>
+        <location filename="../Project.py" line="638"/>
         <source>Run Testserver</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="643"/>
+        <location filename="../Project.py" line="638"/>
         <source>Run Test&amp;server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="648"/>
+        <location filename="../Project.py" line="643"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="650"/>
+        <location filename="../Project.py" line="645"/>
         <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="2818"/>
+        <location filename="../Project.py" line="2796"/>
         <source>Change Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="657"/>
+        <source>Change &amp;Password</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="662"/>
-        <source>Change &amp;Password</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="669"/>
+        <location filename="../Project.py" line="664"/>
         <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="676"/>
+        <location filename="../Project.py" line="671"/>
         <source>Create Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="671"/>
+        <source>Create &amp;Superuser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="676"/>
-        <source>Create &amp;Superuser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="681"/>
         <source>Create a superuser account</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="683"/>
+        <location filename="../Project.py" line="678"/>
         <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="2874"/>
+        <location filename="../Project.py" line="2854"/>
         <source>Clear Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="694"/>
+        <location filename="../Project.py" line="689"/>
         <source>Clear &amp;Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="699"/>
+        <location filename="../Project.py" line="694"/>
         <source>Clear expired sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="701"/>
+        <location filename="../Project.py" line="696"/>
         <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"/>
+        <location filename="../Project.py" line="707"/>
         <source>Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="707"/>
+        <source>&amp;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"/>
+        <location filename="../Project.py" line="714"/>
         <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="727"/>
+        <location filename="../Project.py" line="722"/>
         <source>Show Migrations Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="722"/>
+        <source>Show Migrations &amp;Plan</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="727"/>
-        <source>Show Migrations &amp;Plan</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="734"/>
+        <location filename="../Project.py" line="729"/>
         <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="825"/>
+        <location filename="../Project.py" line="820"/>
         <source>D&amp;jango</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="867"/>
+        <location filename="../Project.py" line="862"/>
         <source>&amp;Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="891"/>
+        <location filename="../Project.py" line="887"/>
         <source>Show &amp;SQL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="921"/>
+        <location filename="../Project.py" line="917"/>
         <source>&amp;Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="946"/>
+        <location filename="../Project.py" line="942"/>
         <source>&amp;Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="966"/>
+        <location filename="../Project.py" line="960"/>
         <source>T&amp;esting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="986"/>
+        <location filename="../Project.py" line="981"/>
         <source>&amp;Authorization</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1003"/>
+        <location filename="../Project.py" line="998"/>
         <source>&amp;Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1045"/>
+        <location filename="../Project.py" line="1040"/>
         <source>Open with {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1060"/>
+        <location filename="../Project.py" line="1055"/>
         <source>New template...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1069"/>
+        <location filename="../Project.py" line="1064"/>
         <source>Update all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1072"/>
+        <location filename="../Project.py" line="1067"/>
         <source>Update selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1076"/>
+        <location filename="../Project.py" line="1071"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1079"/>
+        <location filename="../Project.py" line="1074"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1083"/>
+        <location filename="../Project.py" line="1078"/>
         <source>Compile all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1086"/>
+        <location filename="../Project.py" line="1081"/>
         <source>Compile selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1180"/>
+        <location filename="../Project.py" line="1175"/>
         <source>New Form</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1147"/>
+        <location filename="../Project.py" line="1142"/>
         <source>The file already exists! Overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1180"/>
+        <location filename="../Project.py" line="1175"/>
         <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="1459"/>
+        <location filename="../Project.py" line="1454"/>
         <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="1530"/>
+        <location filename="../Project.py" line="1525"/>
         <source>Select Applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1530"/>
+        <location filename="../Project.py" line="1525"/>
         <source>Enter the list of applications separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1885"/>
+        <location filename="../Project.py" line="1898"/>
         <source>Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1625"/>
+        <location filename="../Project.py" line="1638"/>
         <source>Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1627"/>
+        <location filename="../Project.py" line="1640"/>
         <source>Start Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1627"/>
+        <location filename="../Project.py" line="1640"/>
         <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="1704"/>
+        <location filename="../Project.py" line="1717"/>
         <source>Start Django Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1749"/>
+        <location filename="../Project.py" line="1762"/>
         <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="1680"/>
+        <location filename="../Project.py" line="1693"/>
         <source>Django project created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1704"/>
+        <location filename="../Project.py" line="1717"/>
         <source>Enter the name of the new Django project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1732"/>
+        <location filename="../Project.py" line="1745"/>
         <source>Start Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1766"/>
+        <location filename="../Project.py" line="1779"/>
         <source>Django application created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1778"/>
+        <location filename="../Project.py" line="1791"/>
         <source>Start Global Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1778"/>
+        <location filename="../Project.py" line="1791"/>
         <source>Enter the name of the new global Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1800"/>
+        <location filename="../Project.py" line="1813"/>
         <source>Start Local Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1800"/>
+        <location filename="../Project.py" line="1813"/>
         <source>Enter the name of the new local Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1849"/>
+        <location filename="../Project.py" line="1862"/>
         <source>Select Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1849"/>
+        <location filename="../Project.py" line="1862"/>
         <source>Select the Django project to work with.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1883"/>
+        <location filename="../Project.py" line="1896"/>
         <source>None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1888"/>
+        <location filename="../Project.py" line="1901"/>
         <source>&amp;Current Django project ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3250"/>
+        <location filename="../Project.py" line="3230"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1962"/>
+        <location filename="../Project.py" line="1975"/>
         <source>The Django server could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2008"/>
+        <location filename="../Project.py" line="2021"/>
         <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="2859"/>
+        <location filename="../Project.py" line="2839"/>
         <source>The Django process could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2049"/>
+        <location filename="../Project.py" line="2063"/>
         <source>Introspect Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2078"/>
+        <location filename="../Project.py" line="2092"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2090"/>
+        <location filename="../Project.py" line="2104"/>
         <source>Database tables flushed successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2256"/>
+        <location filename="../Project.py" line="2271"/>
         <source>SQL Files (*.sql)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2555"/>
-        <source>Database cleaned up successfully.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="2628"/>
+        <location filename="../Project.py" line="2600"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2643"/>
+        <location filename="../Project.py" line="2615"/>
         <source>Cache tables created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2681"/>
+        <location filename="../Project.py" line="2653"/>
         <source>JSON Files (*.json)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2683"/>
+        <location filename="../Project.py" line="2655"/>
         <source>XML Files (*.xml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2685"/>
+        <location filename="../Project.py" line="2657"/>
         <source>YAML Files (*.yaml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2788"/>
+        <location filename="../Project.py" line="2766"/>
         <source>The Django test server could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2818"/>
+        <location filename="../Project.py" line="2796"/>
         <source>Enter the name of the user:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2886"/>
+        <location filename="../Project.py" line="2866"/>
         <source>Expired sessions cleared successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="2935"/>
+        <source>Initializing message catalog for &apos;{0}&apos;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="3194"/>
+        <source>No current site selected or no site created yet. Aborting...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <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="3214"/>
-        <source>No current site selected or no site created yet. Aborting...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="2975"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3087"/>
+        <location filename="../Project.py" line="3067"/>
         <source>Updating message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3178"/>
+        <location filename="../Project.py" line="3158"/>
         <source>No locales detected. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3138"/>
+        <location filename="../Project.py" line="3118"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3119"/>
+        <location filename="../Project.py" line="3099"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3204"/>
+        <location filename="../Project.py" line="3184"/>
         <source>Compiling message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3221"/>
+        <location filename="../Project.py" line="3201"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3250"/>
+        <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="742"/>
+        <location filename="../Project.py" line="737"/>
         <source>Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="742"/>
+        <location filename="../Project.py" line="737"/>
         <source>&amp;Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="747"/>
+        <location filename="../Project.py" line="742"/>
         <source>Apply all available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="749"/>
+        <location filename="../Project.py" line="744"/>
         <source>&lt;b&gt;Apply All Migrations&lt;/b&gt;&lt;p&gt;This applies all migrations of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2310"/>
+        <location filename="../Project.py" line="2325"/>
         <source>Apply Selected Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="761"/>
+        <location filename="../Project.py" line="756"/>
         <source>Apply selected migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="763"/>
+        <location filename="../Project.py" line="758"/>
         <source>&lt;b&gt;Apply Selected Migrations&lt;/b&gt;&lt;p&gt;This applies selected migrations of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2384"/>
         <source>Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="767"/>
+        <source>&amp;Unapply Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="772"/>
-        <source>&amp;Unapply Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="779"/>
+        <location filename="../Project.py" line="774"/>
         <source>&lt;b&gt;Unapply Migrations&lt;/b&gt;&lt;p&gt;This unapplies all migrations for an app of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2446"/>
+        <location filename="../Project.py" line="2461"/>
         <source>Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="787"/>
+        <location filename="../Project.py" line="782"/>
         <source>&amp;Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="792"/>
+        <location filename="../Project.py" line="787"/>
         <source>Generate migrations for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="794"/>
+        <location filename="../Project.py" line="789"/>
         <source>&lt;b&gt;Make Migrations&lt;/b&gt;&lt;p&gt;This generates migrations for the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2477"/>
+        <location filename="../Project.py" line="2492"/>
         <source>No migrations available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2335"/>
+        <location filename="../Project.py" line="2350"/>
         <source>Apply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2384"/>
         <source>Select an application:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2490"/>
+        <location filename="../Project.py" line="2505"/>
         <source>Squash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="796"/>
+        <source>S&amp;quash Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="801"/>
-        <source>S&amp;quash Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="808"/>
+        <location filename="../Project.py" line="803"/>
         <source>&lt;b&gt;Squash Migrations&lt;/b&gt;&lt;p&gt;This squashes migrations of an application of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="509"/>
         <source>Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="509"/>
         <source>&amp;Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="508"/>
+        <location filename="../Project.py" line="514"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="511"/>
+        <location filename="../Project.py" line="517"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="526"/>
         <source>Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="526"/>
         <source>&amp;Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="525"/>
+        <location filename="../Project.py" line="531"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="528"/>
+        <location filename="../Project.py" line="534"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2238"/>
+        <location filename="../Project.py" line="2253"/>
         <source>SQL Migrate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3295"/>
+        <location filename="../Project.py" line="3275"/>
         <source>Check Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="282"/>
+        <location filename="../Project.py" line="288"/>
         <source>Inspects the Django project for common problems</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="284"/>
+        <location filename="../Project.py" line="290"/>
         <source>&lt;b&gt;Check Project&lt;/b&gt;&lt;p&gt;This inspects the Django project for common problems.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project.py" line="621"/>
+        <source>Run Testsuite (-Wall)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="626"/>
+        <source>Run the test suite for applications or the whole site with activated deprecation warnings</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="629"/>
+        <source>&lt;b&gt;Run Testsuite (-Wall)&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site with activated deprecation warnings.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ProjectDjangoPlugin</name>
--- a/ProjectDjango/i18n/django_en.ts	Tue Dec 20 16:20:16 2016 +0100
+++ b/ProjectDjango/i18n/django_en.ts	Tue Dec 20 19:56:11 2016 +0100
@@ -43,12 +43,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <location filename="../DjangoCheckOptionsDialog.py" line="81"/>
         <source>Select settings file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <location filename="../DjangoCheckOptionsDialog.py" line="81"/>
         <source>Python Files (*.py)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -177,27 +177,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.ui" line="42"/>
-        <source>...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="57"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="60"/>
         <source>JSON Files (*.json);;XML Files (*.xml);;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="60"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="63"/>
         <source>YAML Files (*.yaml);;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="63"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="66"/>
         <source>All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="65"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="68"/>
         <source>Select fixture file</source>
         <translation type="unfinished"></translation>
     </message>
@@ -565,1188 +560,1158 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="115"/>
+        <location filename="../Project.py" line="121"/>
         <source>Current Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="120"/>
+        <location filename="../Project.py" line="126"/>
         <source>Selects the current project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="122"/>
+        <location filename="../Project.py" line="128"/>
         <source>&lt;b&gt;Current Project&lt;/b&gt;&lt;p&gt;Selects the current project. Used for multi-project Django projects to switch between the projects.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="135"/>
+        <location filename="../Project.py" line="141"/>
         <source>Start Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="135"/>
+        <location filename="../Project.py" line="141"/>
         <source>Start &amp;Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="140"/>
+        <location filename="../Project.py" line="146"/>
         <source>Starts a new Django project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="142"/>
+        <location filename="../Project.py" line="148"/>
         <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using &quot;django-admin.py startproject&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="150"/>
+        <location filename="../Project.py" line="156"/>
         <source>Start Application (global)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="150"/>
+        <location filename="../Project.py" line="156"/>
         <source>Start Application (&amp;global)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="155"/>
+        <location filename="../Project.py" line="161"/>
         <source>Starts a new global Django application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="157"/>
+        <location filename="../Project.py" line="163"/>
         <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using &quot;django-admin.py startapp&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="166"/>
+        <location filename="../Project.py" line="172"/>
         <source>Start Application (local)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="166"/>
+        <location filename="../Project.py" line="172"/>
         <source>Start Application (&amp;local)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="171"/>
+        <location filename="../Project.py" line="177"/>
         <source>Starts a new local Django application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="173"/>
+        <location filename="../Project.py" line="179"/>
         <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using &quot;manage.py startapp&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="186"/>
+        <location filename="../Project.py" line="192"/>
         <source>Run Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="186"/>
+        <location filename="../Project.py" line="192"/>
         <source>Run &amp;Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="191"/>
+        <location filename="../Project.py" line="197"/>
         <source>Starts the Django Web server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="193"/>
+        <location filename="../Project.py" line="199"/>
         <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using &quot;manage.py runserver&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2008"/>
+        <location filename="../Project.py" line="2021"/>
         <source>Run Web-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="201"/>
+        <location filename="../Project.py" line="207"/>
         <source>Run &amp;Web-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="206"/>
+        <location filename="../Project.py" line="212"/>
         <source>Starts the default Web-Browser with the URL of the Django Web server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="209"/>
+        <location filename="../Project.py" line="215"/>
         <source>&lt;b&gt;Run Web-Browser&lt;/b&gt;&lt;p&gt;Starts the default Web-Browser with the URL of the Django Web server.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2621"/>
+        <location filename="../Project.py" line="2593"/>
         <source>Create Cache Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="221"/>
+        <location filename="../Project.py" line="227"/>
         <source>C&amp;reate Cache Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="226"/>
+        <location filename="../Project.py" line="232"/>
         <source>Creates the tables needed to use the SQL cache backend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="228"/>
+        <location filename="../Project.py" line="234"/>
         <source>&lt;b&gt;Create Cache Tables&lt;/b&gt;&lt;p&gt;Creates the tables needed to use the SQL cache backend.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="241"/>
+        <location filename="../Project.py" line="247"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="241"/>
+        <location filename="../Project.py" line="247"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="246"/>
+        <location filename="../Project.py" line="252"/>
         <source>Shows the Django help index</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="248"/>
+        <location filename="../Project.py" line="254"/>
         <source>&lt;b&gt;Help&lt;/b&gt;&lt;p&gt;Shows the Django help index page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1459"/>
+        <location filename="../Project.py" line="1454"/>
         <source>About Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="259"/>
+        <location filename="../Project.py" line="265"/>
         <source>About D&amp;jango</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="264"/>
+        <location filename="../Project.py" line="270"/>
         <source>Shows some information about Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="266"/>
+        <location filename="../Project.py" line="272"/>
         <source>&lt;b&gt;About Django&lt;/b&gt;&lt;p&gt;Shows some information about Django.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="303"/>
+        <location filename="../Project.py" line="309"/>
         <source>Synchronize</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="303"/>
+        <location filename="../Project.py" line="309"/>
         <source>&amp;Synchronize</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="308"/>
+        <location filename="../Project.py" line="314"/>
         <source>Synchronizes the database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="310"/>
+        <location filename="../Project.py" line="316"/>
         <source>&lt;b&gt;Synchronize&lt;/b&gt;&lt;p&gt;Synchronizes the database.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="323"/>
         <source>Introspect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="323"/>
         <source>&amp;Introspect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="322"/>
+        <location filename="../Project.py" line="328"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="325"/>
+        <location filename="../Project.py" line="331"/>
         <source>&lt;b&gt;Introspect&lt;/b&gt;&lt;p&gt;Introspects the database tables and outputs a Django model module.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="339"/>
         <source>Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="339"/>
         <source>&amp;Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="338"/>
+        <location filename="../Project.py" line="344"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="341"/>
+        <location filename="../Project.py" line="347"/>
         <source>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Returns all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="355"/>
         <source>Start Client Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="355"/>
         <source>Start &amp;Client Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="354"/>
+        <location filename="../Project.py" line="360"/>
         <source>Starts a console window for the database client</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="356"/>
+        <location filename="../Project.py" line="362"/>
         <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"/>
+        <location filename="../Project.py" line="2180"/>
         <source>Create Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="367"/>
+        <location filename="../Project.py" line="373"/>
         <source>Create &amp;Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="372"/>
+        <location filename="../Project.py" line="378"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="375"/>
+        <location filename="../Project.py" line="381"/>
         <source>&lt;b&gt;Create Tables&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2172"/>
+        <location filename="../Project.py" line="2187"/>
         <source>Create Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="384"/>
+        <location filename="../Project.py" line="390"/>
         <source>Create &amp;Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="389"/>
+        <location filename="../Project.py" line="395"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="392"/>
+        <location filename="../Project.py" line="398"/>
         <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="2179"/>
+        <location filename="../Project.py" line="2194"/>
         <source>Create Everything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="401"/>
+        <location filename="../Project.py" line="407"/>
         <source>Create &amp;Everything</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="406"/>
+        <location filename="../Project.py" line="412"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="409"/>
+        <location filename="../Project.py" line="415"/>
         <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="2186"/>
+        <location filename="../Project.py" line="2201"/>
         <source>Custom Statements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="418"/>
+        <location filename="../Project.py" line="424"/>
         <source>&amp;Custom Statements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="423"/>
+        <location filename="../Project.py" line="429"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="426"/>
+        <location filename="../Project.py" line="432"/>
         <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="2193"/>
+        <location filename="../Project.py" line="2208"/>
         <source>Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="435"/>
+        <location filename="../Project.py" line="441"/>
         <source>&amp;Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="440"/>
+        <location filename="../Project.py" line="446"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="443"/>
+        <location filename="../Project.py" line="449"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2207"/>
+        <location filename="../Project.py" line="2222"/>
         <source>Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="469"/>
+        <location filename="../Project.py" line="475"/>
         <source>&amp;Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="474"/>
+        <location filename="../Project.py" line="480"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="477"/>
+        <location filename="../Project.py" line="483"/>
         <source>&lt;b&gt;Flush Database&lt;/b&gt;&lt;p&gt;Prints a list of statements to return all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2214"/>
+        <location filename="../Project.py" line="2229"/>
         <source>Reset Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="486"/>
+        <location filename="../Project.py" line="492"/>
         <source>Reset &amp;Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="491"/>
+        <location filename="../Project.py" line="497"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="494"/>
+        <location filename="../Project.py" line="500"/>
         <source>&lt;b&gt;Reset Sequences&lt;/b&gt;&lt;p&gt;Prints the SQL statements for resetting sequences for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2522"/>
+        <location filename="../Project.py" line="2537"/>
         <source>Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="541"/>
+        <location filename="../Project.py" line="547"/>
         <source>&amp;Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="546"/>
+        <location filename="../Project.py" line="552"/>
         <source>Shows the modification made to the settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="548"/>
+        <location filename="../Project.py" line="554"/>
         <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="2543"/>
-        <source>Cleanup</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="555"/>
-        <source>&amp;Cleanup</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="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="2566"/>
-        <source>Validate</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="569"/>
-        <source>&amp;Validate</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="574"/>
-        <source>Validates all installed models</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="583"/>
+        <location filename="../Project.py" line="561"/>
         <source>Start Python Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="583"/>
+        <location filename="../Project.py" line="561"/>
         <source>Start &amp;Python Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="588"/>
+        <location filename="../Project.py" line="566"/>
         <source>Starts a Python interactive interpreter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="590"/>
+        <location filename="../Project.py" line="568"/>
         <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"/>
+        <location filename="../Project.py" line="2630"/>
         <source>Dump Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="601"/>
+        <location filename="../Project.py" line="579"/>
         <source>&amp;Dump Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="606"/>
+        <location filename="../Project.py" line="584"/>
         <source>Dump the database data to a fixture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="608"/>
+        <location filename="../Project.py" line="586"/>
         <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="2697"/>
+        <location filename="../Project.py" line="2669"/>
         <source>Load Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="615"/>
+        <location filename="../Project.py" line="593"/>
         <source>&amp;Load Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="620"/>
+        <location filename="../Project.py" line="598"/>
         <source>Load data from fixture files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="622"/>
+        <location filename="../Project.py" line="600"/>
         <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="629"/>
+        <location filename="../Project.py" line="607"/>
         <source>Run Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="629"/>
+        <location filename="../Project.py" line="607"/>
         <source>Run &amp;Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="634"/>
+        <location filename="../Project.py" line="612"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="636"/>
+        <location filename="../Project.py" line="614"/>
         <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="643"/>
+        <location filename="../Project.py" line="638"/>
         <source>Run Testserver</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="643"/>
+        <location filename="../Project.py" line="638"/>
         <source>Run Test&amp;server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="648"/>
+        <location filename="../Project.py" line="643"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="650"/>
+        <location filename="../Project.py" line="645"/>
         <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="825"/>
+        <location filename="../Project.py" line="820"/>
         <source>D&amp;jango</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="867"/>
+        <location filename="../Project.py" line="862"/>
         <source>&amp;Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="891"/>
+        <location filename="../Project.py" line="887"/>
         <source>Show &amp;SQL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="946"/>
+        <location filename="../Project.py" line="942"/>
         <source>&amp;Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="966"/>
+        <location filename="../Project.py" line="960"/>
         <source>T&amp;esting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1060"/>
+        <location filename="../Project.py" line="1055"/>
         <source>New template...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1069"/>
+        <location filename="../Project.py" line="1064"/>
         <source>Update all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1072"/>
+        <location filename="../Project.py" line="1067"/>
         <source>Update selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1076"/>
+        <location filename="../Project.py" line="1071"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1079"/>
+        <location filename="../Project.py" line="1074"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1083"/>
+        <location filename="../Project.py" line="1078"/>
         <source>Compile all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1086"/>
+        <location filename="../Project.py" line="1081"/>
         <source>Compile selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1180"/>
+        <location filename="../Project.py" line="1175"/>
         <source>New Form</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1147"/>
+        <location filename="../Project.py" line="1142"/>
         <source>The file already exists! Overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1530"/>
+        <location filename="../Project.py" line="1525"/>
         <source>Select Applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1530"/>
+        <location filename="../Project.py" line="1525"/>
         <source>Enter the list of applications separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1885"/>
+        <location filename="../Project.py" line="1898"/>
         <source>Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1625"/>
+        <location filename="../Project.py" line="1638"/>
         <source>Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1627"/>
+        <location filename="../Project.py" line="1640"/>
         <source>Start Django</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1627"/>
+        <location filename="../Project.py" line="1640"/>
         <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="1704"/>
+        <location filename="../Project.py" line="1717"/>
         <source>Start Django Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1680"/>
+        <location filename="../Project.py" line="1693"/>
         <source>Django project created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1704"/>
+        <location filename="../Project.py" line="1717"/>
         <source>Enter the name of the new Django project.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1732"/>
+        <location filename="../Project.py" line="1745"/>
         <source>Start Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1766"/>
+        <location filename="../Project.py" line="1779"/>
         <source>Django application created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1778"/>
+        <location filename="../Project.py" line="1791"/>
         <source>Start Global Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1778"/>
+        <location filename="../Project.py" line="1791"/>
         <source>Enter the name of the new global Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1800"/>
+        <location filename="../Project.py" line="1813"/>
         <source>Start Local Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1800"/>
+        <location filename="../Project.py" line="1813"/>
         <source>Enter the name of the new local Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1849"/>
+        <location filename="../Project.py" line="1862"/>
         <source>Select Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1849"/>
+        <location filename="../Project.py" line="1862"/>
         <source>Select the Django project to work with.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1883"/>
+        <location filename="../Project.py" line="1896"/>
         <source>None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1888"/>
+        <location filename="../Project.py" line="1901"/>
         <source>&amp;Current Django project ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3250"/>
+        <location filename="../Project.py" line="3230"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1962"/>
+        <location filename="../Project.py" line="1975"/>
         <source>The Django server could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2008"/>
+        <location filename="../Project.py" line="2021"/>
         <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="2859"/>
+        <location filename="../Project.py" line="2839"/>
         <source>The Django process could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2049"/>
+        <location filename="../Project.py" line="2063"/>
         <source>Introspect Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2078"/>
+        <location filename="../Project.py" line="2092"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2090"/>
+        <location filename="../Project.py" line="2104"/>
         <source>Database tables flushed successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2256"/>
+        <location filename="../Project.py" line="2271"/>
         <source>SQL Files (*.sql)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2555"/>
-        <source>Database cleaned up successfully.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="2628"/>
+        <location filename="../Project.py" line="2600"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2643"/>
+        <location filename="../Project.py" line="2615"/>
         <source>Cache tables created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2681"/>
+        <location filename="../Project.py" line="2653"/>
         <source>JSON Files (*.json)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2683"/>
+        <location filename="../Project.py" line="2655"/>
         <source>XML Files (*.xml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2685"/>
+        <location filename="../Project.py" line="2657"/>
         <source>YAML Files (*.yaml)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2788"/>
+        <location filename="../Project.py" line="2766"/>
         <source>The Django test server could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="2935"/>
+        <source>Initializing message catalog for &apos;{0}&apos;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="3194"/>
+        <source>No current site selected or no site created yet. Aborting...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <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="3214"/>
-        <source>No current site selected or no site created yet. Aborting...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="2975"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3087"/>
+        <location filename="../Project.py" line="3067"/>
         <source>Updating message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3178"/>
+        <location filename="../Project.py" line="3158"/>
         <source>No locales detected. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3138"/>
+        <location filename="../Project.py" line="3118"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3119"/>
+        <location filename="../Project.py" line="3099"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3204"/>
+        <location filename="../Project.py" line="3184"/>
         <source>Compiling message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3221"/>
+        <location filename="../Project.py" line="3201"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2818"/>
+        <location filename="../Project.py" line="2796"/>
         <source>Change Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="657"/>
+        <source>Change &amp;Password</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="662"/>
-        <source>Change &amp;Password</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="669"/>
+        <location filename="../Project.py" line="664"/>
         <source>&lt;b&gt;Change Password&lt;/b&gt;&lt;p&gt;Change the password of a user of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="671"/>
+        <source>Create Superuser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="671"/>
+        <source>Create &amp;Superuser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="676"/>
-        <source>Create Superuser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="676"/>
-        <source>Create &amp;Superuser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="681"/>
         <source>Create a superuser account</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="683"/>
+        <location filename="../Project.py" line="678"/>
         <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="2874"/>
+        <location filename="../Project.py" line="2854"/>
         <source>Clear Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="689"/>
+        <source>Clear &amp;Sessions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="694"/>
-        <source>Clear &amp;Sessions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="699"/>
         <source>Clear expired sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="701"/>
+        <location filename="../Project.py" line="696"/>
         <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"/>
+        <location filename="../Project.py" line="981"/>
         <source>&amp;Authorization</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1003"/>
+        <location filename="../Project.py" line="998"/>
         <source>&amp;Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2818"/>
+        <location filename="../Project.py" line="2796"/>
         <source>Enter the name of the user:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2886"/>
+        <location filename="../Project.py" line="2866"/>
         <source>Expired sessions cleared successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1459"/>
+        <location filename="../Project.py" line="1454"/>
         <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"/>
+        <location filename="../Project.py" line="1762"/>
         <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"/>
+        <location filename="../Project.py" line="1040"/>
         <source>Open with {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3250"/>
+        <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="1180"/>
+        <location filename="../Project.py" line="1175"/>
         <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt; Problem: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2200"/>
+        <location filename="../Project.py" line="2215"/>
         <source>Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="452"/>
+        <location filename="../Project.py" line="458"/>
         <source>&amp;Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="457"/>
+        <location filename="../Project.py" line="463"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="460"/>
+        <location filename="../Project.py" line="466"/>
         <source>&lt;b&gt;Drop Indexes&lt;/b&gt;&lt;p&gt;Prints the DROP INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="707"/>
+        <source>Show Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="707"/>
+        <source>&amp;Show Migrations</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"/>
+        <location filename="../Project.py" line="714"/>
         <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="727"/>
+        <location filename="../Project.py" line="722"/>
         <source>Show Migrations Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="722"/>
+        <source>Show Migrations &amp;Plan</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="727"/>
-        <source>Show Migrations &amp;Plan</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="734"/>
+        <location filename="../Project.py" line="729"/>
         <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="921"/>
+        <location filename="../Project.py" line="917"/>
         <source>&amp;Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="742"/>
+        <location filename="../Project.py" line="737"/>
         <source>Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="742"/>
+        <location filename="../Project.py" line="737"/>
         <source>&amp;Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="747"/>
+        <location filename="../Project.py" line="742"/>
         <source>Apply all available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="749"/>
+        <location filename="../Project.py" line="744"/>
         <source>&lt;b&gt;Apply All Migrations&lt;/b&gt;&lt;p&gt;This applies all migrations of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2310"/>
+        <location filename="../Project.py" line="2325"/>
         <source>Apply Selected Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="761"/>
+        <location filename="../Project.py" line="756"/>
         <source>Apply selected migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="763"/>
+        <location filename="../Project.py" line="758"/>
         <source>&lt;b&gt;Apply Selected Migrations&lt;/b&gt;&lt;p&gt;This applies selected migrations of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2384"/>
         <source>Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="767"/>
+        <source>&amp;Unapply Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="772"/>
-        <source>&amp;Unapply Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="779"/>
+        <location filename="../Project.py" line="774"/>
         <source>&lt;b&gt;Unapply Migrations&lt;/b&gt;&lt;p&gt;This unapplies all migrations for an app of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2446"/>
+        <location filename="../Project.py" line="2461"/>
         <source>Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="787"/>
+        <location filename="../Project.py" line="782"/>
         <source>&amp;Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="792"/>
+        <location filename="../Project.py" line="787"/>
         <source>Generate migrations for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="794"/>
+        <location filename="../Project.py" line="789"/>
         <source>&lt;b&gt;Make Migrations&lt;/b&gt;&lt;p&gt;This generates migrations for the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2477"/>
+        <location filename="../Project.py" line="2492"/>
         <source>No migrations available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2335"/>
+        <location filename="../Project.py" line="2350"/>
         <source>Apply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2384"/>
         <source>Select an application:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2490"/>
+        <location filename="../Project.py" line="2505"/>
         <source>Squash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="796"/>
+        <source>S&amp;quash Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="801"/>
-        <source>S&amp;quash Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="808"/>
+        <location filename="../Project.py" line="803"/>
         <source>&lt;b&gt;Squash Migrations&lt;/b&gt;&lt;p&gt;This squashes migrations of an application of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="509"/>
         <source>Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="509"/>
         <source>&amp;Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="508"/>
+        <location filename="../Project.py" line="514"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="511"/>
+        <location filename="../Project.py" line="517"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="526"/>
         <source>Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="526"/>
         <source>&amp;Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="525"/>
+        <location filename="../Project.py" line="531"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="528"/>
+        <location filename="../Project.py" line="534"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2238"/>
+        <location filename="../Project.py" line="2253"/>
         <source>SQL Migrate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3295"/>
+        <location filename="../Project.py" line="3275"/>
         <source>Check Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="282"/>
+        <location filename="../Project.py" line="288"/>
         <source>Inspects the Django project for common problems</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="284"/>
+        <location filename="../Project.py" line="290"/>
         <source>&lt;b&gt;Check Project&lt;/b&gt;&lt;p&gt;This inspects the Django project for common problems.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project.py" line="621"/>
+        <source>Run Testsuite (-Wall)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="626"/>
+        <source>Run the test suite for applications or the whole site with activated deprecation warnings</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="629"/>
+        <source>&lt;b&gt;Run Testsuite (-Wall)&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site with activated deprecation warnings.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ProjectDjangoPlugin</name>
--- a/ProjectDjango/i18n/django_es.ts	Tue Dec 20 16:20:16 2016 +0100
+++ b/ProjectDjango/i18n/django_es.ts	Tue Dec 20 19:56:11 2016 +0100
@@ -43,12 +43,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <location filename="../DjangoCheckOptionsDialog.py" line="81"/>
         <source>Select settings file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <location filename="../DjangoCheckOptionsDialog.py" line="81"/>
         <source>Python Files (*.py)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -177,27 +177,22 @@
         <translation>Seleccionar un archivo de fixture a través de un diálogo de selección de archivo</translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.ui" line="42"/>
-        <source>...</source>
-        <translation>...</translation>
-    </message>
-    <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="57"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="60"/>
         <source>JSON Files (*.json);;XML Files (*.xml);;</source>
         <translation>Archivos JSON (*.json);;Archivos XML (*.xml);;</translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="60"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="63"/>
         <source>YAML Files (*.yaml);;</source>
         <translation>Archivos YAML (*.yaml);;</translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="63"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="66"/>
         <source>All Files (*)</source>
         <translation>Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="65"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="68"/>
         <source>Select fixture file</source>
         <translation>Seleccionar archivo de fixture</translation>
     </message>
@@ -565,1191 +560,1161 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="825"/>
+        <location filename="../Project.py" line="820"/>
         <source>D&amp;jango</source>
         <translation>D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1180"/>
+        <location filename="../Project.py" line="1175"/>
         <source>New Form</source>
         <translation>Nuevo Formulario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1147"/>
+        <location filename="../Project.py" line="1142"/>
         <source>The file already exists! Overwrite it?</source>
         <translation>¡El archivo ya existe! ¿Sobreescribirlo?</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="115"/>
+        <location filename="../Project.py" line="121"/>
         <source>Current Project</source>
         <translation>Proyecto actual</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="120"/>
+        <location filename="../Project.py" line="126"/>
         <source>Selects the current project</source>
         <translation>Selecciona el proyecto actual</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="135"/>
+        <location filename="../Project.py" line="141"/>
         <source>Start Project</source>
         <translation>Iniciar Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="135"/>
+        <location filename="../Project.py" line="141"/>
         <source>Start &amp;Project</source>
         <translation>Iniciar &amp;Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="140"/>
+        <location filename="../Project.py" line="146"/>
         <source>Starts a new Django project</source>
         <translation>Inicia un nuevo proyecto Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="142"/>
+        <location filename="../Project.py" line="148"/>
         <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using &quot;django-admin.py startproject&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Iniciar Proyecto&lt;/b&gt;&lt;p&gt;Inicia un nuevo proyecto Django utilizando  &quot;django-admin.py startproject&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="150"/>
+        <location filename="../Project.py" line="156"/>
         <source>Start Application (global)</source>
         <translation>Iniciar Aplicación (global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="150"/>
+        <location filename="../Project.py" line="156"/>
         <source>Start Application (&amp;global)</source>
         <translation>Iniciar Aplicación (&amp;global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="155"/>
+        <location filename="../Project.py" line="161"/>
         <source>Starts a new global Django application</source>
         <translation>Inicia una nueva aplicación global Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="157"/>
+        <location filename="../Project.py" line="163"/>
         <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using &quot;django-admin.py startapp&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Iniciar Aplicación (global)&lt;/b&gt;&lt;p&gt;Inicia una nueva aplicación global Django utilizando &quot;django-admin.py startapp&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="166"/>
+        <location filename="../Project.py" line="172"/>
         <source>Start Application (local)</source>
         <translation>Iniciar Aplicación (local)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="166"/>
+        <location filename="../Project.py" line="172"/>
         <source>Start Application (&amp;local)</source>
         <translation>Iniciar Aplicación (&amp;local)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="171"/>
+        <location filename="../Project.py" line="177"/>
         <source>Starts a new local Django application</source>
         <translation>Inicia una nueva aplicación local Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="173"/>
+        <location filename="../Project.py" line="179"/>
         <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using &quot;manage.py startapp&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Iniciar Aplicación (local)&lt;/b&gt;&lt;p&gt;Inicia una nueva aplicación local Django utilizando &quot;manage.py startapp&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="186"/>
+        <location filename="../Project.py" line="192"/>
         <source>Run Server</source>
         <translation>Ejecutar Servidor</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="186"/>
+        <location filename="../Project.py" line="192"/>
         <source>Run &amp;Server</source>
         <translation>Ejecutar &amp;Servidor</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="191"/>
+        <location filename="../Project.py" line="197"/>
         <source>Starts the Django Web server</source>
         <translation>Inicia el servidor Web Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="193"/>
+        <location filename="../Project.py" line="199"/>
         <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using &quot;manage.py runserver&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Iniciar Servidor&lt;/b&gt;&lt;p&gt;Inicia el servidor Web Django utilizando  &quot;manage.py runserver&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2008"/>
+        <location filename="../Project.py" line="2021"/>
         <source>Run Web-Browser</source>
         <translation>Ejecutar Navegador Web</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="201"/>
+        <location filename="../Project.py" line="207"/>
         <source>Run &amp;Web-Browser</source>
         <translation>Ejecutar Navegador &amp;Web</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="206"/>
+        <location filename="../Project.py" line="212"/>
         <source>Starts the default Web-Browser with the URL of the Django Web server</source>
         <translation>Inicia el Navegador Web por defecto con la URL del servidor Web Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="209"/>
+        <location filename="../Project.py" line="215"/>
         <source>&lt;b&gt;Run Web-Browser&lt;/b&gt;&lt;p&gt;Starts the default Web-Browser with the URL of the Django Web server.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ejecutar Navegador Web&lt;/b&gt;&lt;p&gt;Inicia el Navegador Web  por defecto con la URL del servidor Web Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1459"/>
+        <location filename="../Project.py" line="1454"/>
         <source>About Django</source>
         <translation>Acerca de Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="259"/>
+        <location filename="../Project.py" line="265"/>
         <source>About D&amp;jango</source>
         <translation>Acerca de D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="264"/>
+        <location filename="../Project.py" line="270"/>
         <source>Shows some information about Django</source>
         <translation>Muestra información sobre Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="266"/>
+        <location filename="../Project.py" line="272"/>
         <source>&lt;b&gt;About Django&lt;/b&gt;&lt;p&gt;Shows some information about Django.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Acerca de Django&lt;/b&gt;&lt;p&gt;Muestra información sobre Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="303"/>
+        <location filename="../Project.py" line="309"/>
         <source>Synchronize</source>
         <translation>Sincronizar</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="303"/>
+        <location filename="../Project.py" line="309"/>
         <source>&amp;Synchronize</source>
         <translation>&amp;Sincronizar</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="308"/>
+        <location filename="../Project.py" line="314"/>
         <source>Synchronizes the database</source>
         <translation>Sincroniza la base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="310"/>
+        <location filename="../Project.py" line="316"/>
         <source>&lt;b&gt;Synchronize&lt;/b&gt;&lt;p&gt;Synchronizes the database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sincronizar&lt;/b&gt;&lt;p&gt;Sincroniza la base de datos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="867"/>
+        <location filename="../Project.py" line="862"/>
         <source>&amp;Database</source>
         <translation>Base de &amp;Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1885"/>
+        <location filename="../Project.py" line="1898"/>
         <source>Project</source>
         <translation>Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1625"/>
+        <location filename="../Project.py" line="1638"/>
         <source>Application</source>
         <translation>Aplicación</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1627"/>
+        <location filename="../Project.py" line="1640"/>
         <source>Start Django</source>
         <translation>Iniciar Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1627"/>
+        <location filename="../Project.py" line="1640"/>
         <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="1704"/>
+        <location filename="../Project.py" line="1717"/>
         <source>Start Django Project</source>
         <translation>Iniciar Proyecto Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1680"/>
+        <location filename="../Project.py" line="1693"/>
         <source>Django project created successfully.</source>
         <translation>Proyecto Django creado correctamente.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1704"/>
+        <location filename="../Project.py" line="1717"/>
         <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="1732"/>
+        <location filename="../Project.py" line="1745"/>
         <source>Start Django Application</source>
         <translation>Iniciar Aplicación Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1766"/>
+        <location filename="../Project.py" line="1779"/>
         <source>Django application created successfully.</source>
         <translation>Aplicación Django creada correctamente.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1849"/>
+        <location filename="../Project.py" line="1862"/>
         <source>Select Project</source>
         <translation>Seleccionar Proyecto</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1849"/>
+        <location filename="../Project.py" line="1862"/>
         <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="1883"/>
+        <location filename="../Project.py" line="1896"/>
         <source>None</source>
         <translation>Ninguno</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3250"/>
+        <location filename="../Project.py" line="3230"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1962"/>
+        <location filename="../Project.py" line="1975"/>
         <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="2008"/>
+        <location filename="../Project.py" line="2021"/>
         <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="2859"/>
+        <location filename="../Project.py" line="2839"/>
         <source>The Django process could not be started.</source>
         <translation>No se ha podido iniciar el proceso Django.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="122"/>
+        <location filename="../Project.py" line="128"/>
         <source>&lt;b&gt;Current Project&lt;/b&gt;&lt;p&gt;Selects the current project. Used for multi-project Django projects to switch between the projects.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Proyecto Actual&lt;/b&gt;&lt;p&gt;Selecciona el proyecto actual. Se utiliza para cambiar de proyecto en multiproyectos Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2522"/>
+        <location filename="../Project.py" line="2537"/>
         <source>Diff Settings</source>
         <translation>Configuración de Diff</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="541"/>
+        <location filename="../Project.py" line="547"/>
         <source>&amp;Diff Settings</source>
         <translation>Configuración de &amp;Diff</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="546"/>
+        <location filename="../Project.py" line="552"/>
         <source>Shows the modification made to the settings</source>
         <translation>Muestra los cambios hechos a la configuración</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="548"/>
+        <location filename="../Project.py" line="554"/>
         <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="2543"/>
-        <source>Cleanup</source>
-        <translation>Limpiar</translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="555"/>
-        <source>&amp;Cleanup</source>
-        <translation>&amp;Limpiar</translation>
-    </message>
-    <message>
-        <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="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="2566"/>
-        <source>Validate</source>
-        <translation>Validar</translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="569"/>
-        <source>&amp;Validate</source>
-        <translation>&amp;Validar</translation>
-    </message>
-    <message>
-        <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="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="946"/>
+        <location filename="../Project.py" line="942"/>
         <source>&amp;Tools</source>
         <translation>Herramien&amp;tas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1530"/>
+        <location filename="../Project.py" line="1525"/>
         <source>Select Applications</source>
         <translation>Seleccionar Aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1530"/>
+        <location filename="../Project.py" line="1525"/>
         <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="1888"/>
+        <location filename="../Project.py" line="1901"/>
         <source>&amp;Current Django project ({0})</source>
         <translation>Proyec&amp;to Django actual ({0})</translation>
     </message>
     <message>
-        <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="583"/>
+        <location filename="../Project.py" line="561"/>
         <source>Start Python Console</source>
         <translation>Iniciar Consola de Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="583"/>
+        <location filename="../Project.py" line="561"/>
         <source>Start &amp;Python Console</source>
         <translation>Iniciar Consola de &amp;Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="588"/>
+        <location filename="../Project.py" line="566"/>
         <source>Starts a Python interactive interpreter</source>
         <translation>Inicia un intérprete interactivo de Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="590"/>
+        <location filename="../Project.py" line="568"/>
         <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="2621"/>
+        <location filename="../Project.py" line="2593"/>
         <source>Create Cache Tables</source>
         <translation>Crear Tablas de Caché</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="221"/>
+        <location filename="../Project.py" line="227"/>
         <source>C&amp;reate Cache Tables</source>
         <translation>C&amp;rear Tablas de Caché</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="226"/>
+        <location filename="../Project.py" line="232"/>
         <source>Creates the tables needed to use the SQL cache backend</source>
         <translation>Crea las tablas necesarias para utilizar el backend de caché de SQL</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="228"/>
+        <location filename="../Project.py" line="234"/>
         <source>&lt;b&gt;Create Cache Tables&lt;/b&gt;&lt;p&gt;Creates the tables needed to use the SQL cache backend.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Crear Tablas de Caché&lt;/b&gt;&lt;p&gt;Crea las tablas necesarias para utilizar el backend de caché de SQL.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2628"/>
+        <location filename="../Project.py" line="2600"/>
         <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="2643"/>
+        <location filename="../Project.py" line="2615"/>
         <source>Cache tables created successfully.</source>
         <translation>Tablas de caché creadas con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="323"/>
         <source>Introspect</source>
         <translation>Introspección</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="323"/>
         <source>&amp;Introspect</source>
         <translation>&amp;Introspección</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="322"/>
+        <location filename="../Project.py" line="328"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation>Realiza introspección de las tablas en la base de datos y devuelve un módulo de modelo de Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="325"/>
+        <location filename="../Project.py" line="331"/>
         <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="2049"/>
+        <location filename="../Project.py" line="2063"/>
         <source>Introspect Database</source>
         <translation>Introspección de Base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="339"/>
         <source>Flush</source>
         <translation>Flush</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="339"/>
         <source>&amp;Flush</source>
         <translation>&amp;Flush</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="338"/>
+        <location filename="../Project.py" line="344"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation>Devuelve todas las tablas de la base de datos al estado que tenían al terminar su instalación</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="341"/>
+        <location filename="../Project.py" line="347"/>
         <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="2207"/>
+        <location filename="../Project.py" line="2222"/>
         <source>Flush Database</source>
         <translation>Hacer Flush de la base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2078"/>
+        <location filename="../Project.py" line="2092"/>
         <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="2090"/>
+        <location filename="../Project.py" line="2104"/>
         <source>Database tables flushed successfully.</source>
         <translation>Se ha realizado una operación flush sobre la base de datos con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="355"/>
         <source>Start Client Console</source>
         <translation>Iniciar Consola de Cliente</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="354"/>
+        <location filename="../Project.py" line="360"/>
         <source>Starts a console window for the database client</source>
         <translation>Inicia una ventana de consola para el cliente de base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="356"/>
+        <location filename="../Project.py" line="362"/>
         <source>&lt;b&gt;Start Client Console&lt;/b&gt;&lt;p&gt;Starts a console window for the database client.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Iniciar Consola de Cliente&lt;/b&gt;&lt;p&gt;Inicia una ventana de consola para el cliente de base de datos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="355"/>
         <source>Start &amp;Client Console</source>
         <translation>Iniciar Consola de &amp;Cliente</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2165"/>
+        <location filename="../Project.py" line="2180"/>
         <source>Create Tables</source>
         <translation>Crear Tablas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="367"/>
+        <location filename="../Project.py" line="373"/>
         <source>Create &amp;Tables</source>
         <translation>Crear &amp;Tablas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="372"/>
+        <location filename="../Project.py" line="378"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation>Imprime las sentencias SQL CREATE TABLE para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="375"/>
+        <location filename="../Project.py" line="381"/>
         <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="891"/>
+        <location filename="../Project.py" line="887"/>
         <source>Show &amp;SQL</source>
         <translation>Mostrar &amp;SQL</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2172"/>
+        <location filename="../Project.py" line="2187"/>
         <source>Create Indexes</source>
         <translation>Crear Índices</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="384"/>
+        <location filename="../Project.py" line="390"/>
         <source>Create &amp;Indexes</source>
         <translation>Crear &amp;Índices</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="392"/>
+        <location filename="../Project.py" line="398"/>
         <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="2179"/>
+        <location filename="../Project.py" line="2194"/>
         <source>Create Everything</source>
         <translation>Crear Todo</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="401"/>
+        <location filename="../Project.py" line="407"/>
         <source>Create &amp;Everything</source>
         <translation>Cr&amp;ear Todo</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="406"/>
+        <location filename="../Project.py" line="412"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation>Imprime las sentencias SQL CREATE...para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="409"/>
+        <location filename="../Project.py" line="415"/>
         <source>&lt;b&gt;Create Everything&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Crear Todo&lt;/b&gt;&lt;p&gt;Imprime las sentencias SQL CREATE TABLE, SQL personalizado y CREATE INDEX para una o más aplicaciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="389"/>
+        <location filename="../Project.py" line="395"/>
         <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="2186"/>
+        <location filename="../Project.py" line="2201"/>
         <source>Custom Statements</source>
         <translation>Sentencias Personalizadas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="418"/>
+        <location filename="../Project.py" line="424"/>
         <source>&amp;Custom Statements</source>
         <translation>Sentencias &amp;Personalizadas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="423"/>
+        <location filename="../Project.py" line="429"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation>Imprime las sentencias sql personalizadas de modificación de tablas para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="426"/>
+        <location filename="../Project.py" line="432"/>
         <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="2193"/>
+        <location filename="../Project.py" line="2208"/>
         <source>Drop Tables</source>
         <translation>Borrar Tablas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="435"/>
+        <location filename="../Project.py" line="441"/>
         <source>&amp;Drop Tables</source>
         <translation>&amp;Borrar Tablas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="440"/>
+        <location filename="../Project.py" line="446"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation>Imprime las sentencias SQL DROP TABLE para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="443"/>
+        <location filename="../Project.py" line="449"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Borrar Tablas&lt;/b&gt;&lt;p&gt;Imprime las sentencisa SQL DROP TABLE para una o más aplicaciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="469"/>
+        <location filename="../Project.py" line="475"/>
         <source>&amp;Flush Database</source>
         <translation>Hacer &amp;Flush de la base de datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="474"/>
+        <location filename="../Project.py" line="480"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation>Imprime una lista de sentencias para retornar todas las tablas de la base de datos al estado que tenían despues de su instalación</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="477"/>
+        <location filename="../Project.py" line="483"/>
         <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="2214"/>
+        <location filename="../Project.py" line="2229"/>
         <source>Reset Sequences</source>
         <translation>Resetear Secuencias</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="486"/>
+        <location filename="../Project.py" line="492"/>
         <source>Reset &amp;Sequences</source>
         <translation>Resetear &amp;Secuencias</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="491"/>
+        <location filename="../Project.py" line="497"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation>Imprime las sentencias SQL para resetear secuencias para una o más aplicaciones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="494"/>
+        <location filename="../Project.py" line="500"/>
         <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="2658"/>
+        <location filename="../Project.py" line="2630"/>
         <source>Dump Data</source>
         <translation>Volcado de Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="601"/>
+        <location filename="../Project.py" line="579"/>
         <source>&amp;Dump Data</source>
         <translation>&amp;Volcado de Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="606"/>
+        <location filename="../Project.py" line="584"/>
         <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="608"/>
+        <location filename="../Project.py" line="586"/>
         <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="966"/>
+        <location filename="../Project.py" line="960"/>
         <source>T&amp;esting</source>
         <translation>T&amp;esting</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2256"/>
+        <location filename="../Project.py" line="2271"/>
         <source>SQL Files (*.sql)</source>
         <translation>Archivos SQL (*.sql)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2681"/>
+        <location filename="../Project.py" line="2653"/>
         <source>JSON Files (*.json)</source>
         <translation>Archivos JSON (*.json)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2683"/>
+        <location filename="../Project.py" line="2655"/>
         <source>XML Files (*.xml)</source>
         <translation>Archivos XML (*.xml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2685"/>
+        <location filename="../Project.py" line="2657"/>
         <source>YAML Files (*.yaml)</source>
         <translation>Archivos YAML (*.yaml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2697"/>
+        <location filename="../Project.py" line="2669"/>
         <source>Load Data</source>
         <translation>Cargar Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="615"/>
+        <location filename="../Project.py" line="593"/>
         <source>&amp;Load Data</source>
         <translation>&amp;Cargar Datos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="620"/>
+        <location filename="../Project.py" line="598"/>
         <source>Load data from fixture files</source>
         <translation>Cargar datos desde archivos de fixture</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="622"/>
+        <location filename="../Project.py" line="600"/>
         <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="629"/>
+        <location filename="../Project.py" line="607"/>
         <source>Run Testsuite</source>
         <translation>Ejecutar Testsuite</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="629"/>
+        <location filename="../Project.py" line="607"/>
         <source>Run &amp;Testsuite</source>
         <translation>Ejecutar &amp;Testsuite</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="634"/>
+        <location filename="../Project.py" line="612"/>
         <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="636"/>
+        <location filename="../Project.py" line="614"/>
         <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="643"/>
+        <location filename="../Project.py" line="638"/>
         <source>Run Testserver</source>
         <translation>Ejecutar Testserver</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="643"/>
+        <location filename="../Project.py" line="638"/>
         <source>Run Test&amp;server</source>
         <translation>Ejecutar Test&amp;server</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="648"/>
+        <location filename="../Project.py" line="643"/>
         <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="650"/>
+        <location filename="../Project.py" line="645"/>
         <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="2788"/>
+        <location filename="../Project.py" line="2766"/>
         <source>The Django test server could not be started.</source>
         <translation>No se ha podido iniciar el servidor de tests Django.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="241"/>
+        <location filename="../Project.py" line="247"/>
         <source>Help</source>
         <translation>Ayuda</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="241"/>
+        <location filename="../Project.py" line="247"/>
         <source>&amp;Help</source>
         <translation>&amp;Ayuda</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="246"/>
+        <location filename="../Project.py" line="252"/>
         <source>Shows the Django help index</source>
         <translation>Muestra el índice de ayuda de Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="248"/>
+        <location filename="../Project.py" line="254"/>
         <source>&lt;b&gt;Help&lt;/b&gt;&lt;p&gt;Shows the Django help index page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ayuda&lt;/b&gt;&lt;p&gt;Muestra la página de índice de ayuda de Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1060"/>
+        <location filename="../Project.py" line="1055"/>
         <source>New template...</source>
         <translation>Nueva plantilla...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1069"/>
+        <location filename="../Project.py" line="1064"/>
         <source>Update all catalogs</source>
         <translation>Actualizar todos los catálogos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1072"/>
+        <location filename="../Project.py" line="1067"/>
         <source>Update selected catalogs</source>
         <translation>Actualizar los catálogos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1083"/>
+        <location filename="../Project.py" line="1078"/>
         <source>Compile all catalogs</source>
         <translation>Compilar todos los catálogos</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1086"/>
+        <location filename="../Project.py" line="1081"/>
         <source>Compile selected catalogs</source>
         <translation>Compilar los catálogos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2955"/>
+        <location filename="../Project.py" line="2935"/>
         <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="3214"/>
+        <location filename="../Project.py" line="3194"/>
         <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="2975"/>
+        <location filename="../Project.py" line="2955"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation>Catálogo de mensajes iniciado con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3087"/>
+        <location filename="../Project.py" line="3067"/>
         <source>Updating message catalogs</source>
         <translation>Actualizando catálogos de mensajes</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3178"/>
+        <location filename="../Project.py" line="3158"/>
         <source>No locales detected. Aborting...</source>
         <translation>No se ha detectado ningún idioma. Abortando...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3138"/>
+        <location filename="../Project.py" line="3118"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation>
 Catálogos de mensajes actualizados con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3204"/>
+        <location filename="../Project.py" line="3184"/>
         <source>Compiling message catalogs</source>
         <translation>Compilando catálogos de mensajes</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3221"/>
+        <location filename="../Project.py" line="3201"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation>
 Catálogos de mensajes compilados con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1076"/>
+        <location filename="../Project.py" line="1071"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation>Acutalizar todos los catálogos (con obsoletos)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1079"/>
+        <location filename="../Project.py" line="1074"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation>Actualizar los catálogos seleccionados (con obsoletos)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1778"/>
+        <location filename="../Project.py" line="1791"/>
         <source>Start Global Django Application</source>
         <translation>Iniciar Aplicación Global Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1778"/>
+        <location filename="../Project.py" line="1791"/>
         <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="1800"/>
+        <location filename="../Project.py" line="1813"/>
         <source>Start Local Django Application</source>
         <translation>Iniciar Aplicación Local Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1800"/>
+        <location filename="../Project.py" line="1813"/>
         <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="3119"/>
+        <location filename="../Project.py" line="3099"/>
         <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="2818"/>
+        <location filename="../Project.py" line="2796"/>
         <source>Change Password</source>
         <translation>Cambiar Contraseña</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="662"/>
+        <location filename="../Project.py" line="657"/>
         <source>Change &amp;Password</source>
         <translation>Cambiar C&amp;ontraseña</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="667"/>
+        <location filename="../Project.py" line="662"/>
         <source>Change the password of a user</source>
         <translation>Cambiar la contraseña de un usuario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="669"/>
+        <location filename="../Project.py" line="664"/>
         <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="676"/>
+        <location filename="../Project.py" line="671"/>
         <source>Create Superuser</source>
         <translation>Crear Superusuario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="676"/>
+        <location filename="../Project.py" line="671"/>
         <source>Create &amp;Superuser</source>
         <translation>Crear &amp;Superusuario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="681"/>
+        <location filename="../Project.py" line="676"/>
         <source>Create a superuser account</source>
         <translation>Crear una cuenta de superusuario</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="683"/>
+        <location filename="../Project.py" line="678"/>
         <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="2874"/>
+        <location filename="../Project.py" line="2854"/>
         <source>Clear Sessions</source>
         <translation>Limpiar Sesiones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="694"/>
+        <location filename="../Project.py" line="689"/>
         <source>Clear &amp;Sessions</source>
         <translation>Limpiar &amp;Sesiones</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="699"/>
+        <location filename="../Project.py" line="694"/>
         <source>Clear expired sessions</source>
         <translation>Limpiar sesiones expiradas</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="701"/>
+        <location filename="../Project.py" line="696"/>
         <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="986"/>
+        <location filename="../Project.py" line="981"/>
         <source>&amp;Authorization</source>
         <translation>&amp;Autorización</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1003"/>
+        <location filename="../Project.py" line="998"/>
         <source>&amp;Session</source>
         <translation>&amp;Sesión</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2818"/>
+        <location filename="../Project.py" line="2796"/>
         <source>Enter the name of the user:</source>
         <translation>Introducir el nombre del usuario:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2886"/>
+        <location filename="../Project.py" line="2866"/>
         <source>Expired sessions cleared successfully.</source>
         <translation>Sesiones expiradas limpiadas con éxito.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1459"/>
+        <location filename="../Project.py" line="1454"/>
         <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="1749"/>
+        <location filename="../Project.py" line="1762"/>
         <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="1045"/>
+        <location filename="../Project.py" line="1040"/>
         <source>Open with {0}</source>
         <translation>Abrir con {0}</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3250"/>
+        <location filename="../Project.py" line="3230"/>
         <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="1180"/>
+        <location filename="../Project.py" line="1175"/>
         <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="2200"/>
+        <location filename="../Project.py" line="2215"/>
         <source>Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="452"/>
+        <location filename="../Project.py" line="458"/>
         <source>&amp;Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="457"/>
+        <location filename="../Project.py" line="463"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="460"/>
+        <location filename="../Project.py" line="466"/>
         <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"/>
+        <location filename="../Project.py" line="707"/>
         <source>Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="707"/>
+        <source>&amp;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"/>
+        <location filename="../Project.py" line="714"/>
         <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="727"/>
+        <location filename="../Project.py" line="722"/>
         <source>Show Migrations Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="722"/>
+        <source>Show Migrations &amp;Plan</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="727"/>
-        <source>Show Migrations &amp;Plan</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="734"/>
+        <location filename="../Project.py" line="729"/>
         <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="921"/>
+        <location filename="../Project.py" line="917"/>
         <source>&amp;Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="742"/>
+        <location filename="../Project.py" line="737"/>
         <source>Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="737"/>
+        <source>&amp;Apply All Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="742"/>
-        <source>&amp;Apply All Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="747"/>
         <source>Apply all available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="749"/>
+        <location filename="../Project.py" line="744"/>
         <source>&lt;b&gt;Apply All Migrations&lt;/b&gt;&lt;p&gt;This applies all migrations of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2310"/>
+        <location filename="../Project.py" line="2325"/>
         <source>Apply Selected Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="761"/>
+        <location filename="../Project.py" line="756"/>
         <source>Apply selected migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="763"/>
+        <location filename="../Project.py" line="758"/>
         <source>&lt;b&gt;Apply Selected Migrations&lt;/b&gt;&lt;p&gt;This applies selected migrations of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2384"/>
         <source>Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="767"/>
+        <source>&amp;Unapply Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="772"/>
-        <source>&amp;Unapply Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="779"/>
+        <location filename="../Project.py" line="774"/>
         <source>&lt;b&gt;Unapply Migrations&lt;/b&gt;&lt;p&gt;This unapplies all migrations for an app of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2446"/>
+        <location filename="../Project.py" line="2461"/>
         <source>Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="782"/>
+        <source>&amp;Make Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="787"/>
-        <source>&amp;Make Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="792"/>
         <source>Generate migrations for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="794"/>
+        <location filename="../Project.py" line="789"/>
         <source>&lt;b&gt;Make Migrations&lt;/b&gt;&lt;p&gt;This generates migrations for the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2477"/>
+        <location filename="../Project.py" line="2492"/>
         <source>No migrations available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2335"/>
+        <location filename="../Project.py" line="2350"/>
         <source>Apply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2384"/>
         <source>Select an application:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2490"/>
+        <location filename="../Project.py" line="2505"/>
         <source>Squash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="801"/>
+        <location filename="../Project.py" line="796"/>
         <source>S&amp;quash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="806"/>
+        <location filename="../Project.py" line="801"/>
         <source>Squash migrations of an application of the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="808"/>
+        <location filename="../Project.py" line="803"/>
         <source>&lt;b&gt;Squash Migrations&lt;/b&gt;&lt;p&gt;This squashes migrations of an application of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="509"/>
         <source>Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="509"/>
         <source>&amp;Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="508"/>
+        <location filename="../Project.py" line="514"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="511"/>
+        <location filename="../Project.py" line="517"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="526"/>
         <source>Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="526"/>
         <source>&amp;Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="525"/>
+        <location filename="../Project.py" line="531"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="528"/>
+        <location filename="../Project.py" line="534"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2238"/>
+        <location filename="../Project.py" line="2253"/>
         <source>SQL Migrate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3295"/>
+        <location filename="../Project.py" line="3275"/>
         <source>Check Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="282"/>
+        <location filename="../Project.py" line="288"/>
         <source>Inspects the Django project for common problems</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="284"/>
+        <location filename="../Project.py" line="290"/>
         <source>&lt;b&gt;Check Project&lt;/b&gt;&lt;p&gt;This inspects the Django project for common problems.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project.py" line="621"/>
+        <source>Run Testsuite (-Wall)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="626"/>
+        <source>Run the test suite for applications or the whole site with activated deprecation warnings</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="629"/>
+        <source>&lt;b&gt;Run Testsuite (-Wall)&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site with activated deprecation warnings.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ProjectDjangoPlugin</name>
--- a/ProjectDjango/i18n/django_ru.ts	Tue Dec 20 16:20:16 2016 +0100
+++ b/ProjectDjango/i18n/django_ru.ts	Tue Dec 20 19:56:11 2016 +0100
@@ -43,12 +43,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <location filename="../DjangoCheckOptionsDialog.py" line="81"/>
         <source>Select settings file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <location filename="../DjangoCheckOptionsDialog.py" line="81"/>
         <source>Python Files (*.py)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -177,27 +177,22 @@
         <translation>Выбор файла оснастки в процессе диалога</translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.ui" line="42"/>
-        <source>...</source>
-        <translation>...</translation>
-    </message>
-    <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="57"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="60"/>
         <source>JSON Files (*.json);;XML Files (*.xml);;</source>
         <translation>JSON файлы (*.json);;XML файлы (*.xml);</translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="60"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="63"/>
         <source>YAML Files (*.yaml);;</source>
         <translation>YAML файлы (*.yaml);;</translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="63"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="66"/>
         <source>All Files (*)</source>
         <translation>Все файлы (*)</translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="65"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="68"/>
         <source>Select fixture file</source>
         <translation>Выбор файла оснастки</translation>
     </message>
@@ -565,1189 +560,1159 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="825"/>
+        <location filename="../Project.py" line="820"/>
         <source>D&amp;jango</source>
         <translation>D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1180"/>
+        <location filename="../Project.py" line="1175"/>
         <source>New Form</source>
         <translation>Создание новой формы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1147"/>
+        <location filename="../Project.py" line="1142"/>
         <source>The file already exists! Overwrite it?</source>
         <translation>Файл уже существует! Переписать его?</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="115"/>
+        <location filename="../Project.py" line="121"/>
         <source>Current Project</source>
         <translation>Текущий проект</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="120"/>
+        <location filename="../Project.py" line="126"/>
         <source>Selects the current project</source>
         <translation>Выбор текущего проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="135"/>
+        <location filename="../Project.py" line="141"/>
         <source>Start Project</source>
         <translation>Создание нового проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="135"/>
+        <location filename="../Project.py" line="141"/>
         <source>Start &amp;Project</source>
         <translation>Новый &amp;проект</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="140"/>
+        <location filename="../Project.py" line="146"/>
         <source>Starts a new Django project</source>
         <translation>Создание нового Django проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="142"/>
+        <location filename="../Project.py" line="148"/>
         <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using &quot;django-admin.py startproject&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Новый проект&lt;/b&gt;&lt;p&gt;Создание нового Django проекта посредством команды &quot;django-admin.py startproject&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="150"/>
+        <location filename="../Project.py" line="156"/>
         <source>Start Application (global)</source>
         <translation>Создание приложения (global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="150"/>
+        <location filename="../Project.py" line="156"/>
         <source>Start Application (&amp;global)</source>
         <translation>Новое приложение (&amp;global)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="155"/>
+        <location filename="../Project.py" line="161"/>
         <source>Starts a new global Django application</source>
         <translation>Создание нового (global) Django приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="157"/>
+        <location filename="../Project.py" line="163"/>
         <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using &quot;django-admin.py startapp&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Старт приложения (global)&lt;/b&gt;&lt;p&gt;Создание нового global Django приложения посредством команды: &quot;django-admin.py startapp&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="166"/>
+        <location filename="../Project.py" line="172"/>
         <source>Start Application (local)</source>
         <translation>Создание приложения (local)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="166"/>
+        <location filename="../Project.py" line="172"/>
         <source>Start Application (&amp;local)</source>
         <translation>Новое приложение (&amp;local)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="171"/>
+        <location filename="../Project.py" line="177"/>
         <source>Starts a new local Django application</source>
         <translation>Создание нового (local) Django приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="173"/>
+        <location filename="../Project.py" line="179"/>
         <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using &quot;manage.py startapp&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Старт приложения (local)&lt;/b&gt;&lt;p&gt;Создание нового local Django приложения посредством команды: &quot;manage.py startapp&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="186"/>
+        <location filename="../Project.py" line="192"/>
         <source>Run Server</source>
         <translation>Сервер разработки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="186"/>
+        <location filename="../Project.py" line="192"/>
         <source>Run &amp;Server</source>
         <translation>&amp;Сервер разработки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="191"/>
+        <location filename="../Project.py" line="197"/>
         <source>Starts the Django Web server</source>
         <translation>Запуск Django Web сервера разработки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="193"/>
+        <location filename="../Project.py" line="199"/>
         <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using &quot;manage.py runserver&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Сервер разработки&lt;/b&gt;&lt;p&gt;Запуск Django Web сервера разработки посредством команды: &quot;manage.py runserver&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2008"/>
+        <location filename="../Project.py" line="2021"/>
         <source>Run Web-Browser</source>
         <translation>Запуск Web-браузера администрирования</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="201"/>
+        <location filename="../Project.py" line="207"/>
         <source>Run &amp;Web-Browser</source>
         <translation>Запуск &amp;Web-браузера</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="206"/>
+        <location filename="../Project.py" line="212"/>
         <source>Starts the default Web-Browser with the URL of the Django Web server</source>
         <translation>Запуск Web-браузера, используемого по умолчанию, с URL Django Web сервера</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="209"/>
+        <location filename="../Project.py" line="215"/>
         <source>&lt;b&gt;Run Web-Browser&lt;/b&gt;&lt;p&gt;Starts the default Web-Browser with the URL of the Django Web server.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Запуск Web-браузера&lt;/b&gt;&lt;p&gt;Запуск Web-браузера, используемого по умолчанию, с адресом Django Web сервера.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1459"/>
+        <location filename="../Project.py" line="1454"/>
         <source>About Django</source>
         <translation>О Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="259"/>
+        <location filename="../Project.py" line="265"/>
         <source>About D&amp;jango</source>
         <translation>О D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="264"/>
+        <location filename="../Project.py" line="270"/>
         <source>Shows some information about Django</source>
         <translation>Отображение информации о Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="266"/>
+        <location filename="../Project.py" line="272"/>
         <source>&lt;b&gt;About Django&lt;/b&gt;&lt;p&gt;Shows some information about Django.&lt;/p&gt;</source>
         <translation>&lt;b&gt;О Django&lt;/b&gt;&lt;p&gt;Отображение информации о Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="303"/>
+        <location filename="../Project.py" line="309"/>
         <source>Synchronize</source>
         <translation>Синхронизация</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="303"/>
+        <location filename="../Project.py" line="309"/>
         <source>&amp;Synchronize</source>
         <translation>&amp;Синхронизация</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="308"/>
+        <location filename="../Project.py" line="314"/>
         <source>Synchronizes the database</source>
         <translation>Синхронизация базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="310"/>
+        <location filename="../Project.py" line="316"/>
         <source>&lt;b&gt;Synchronize&lt;/b&gt;&lt;p&gt;Synchronizes the database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Синхронизация&lt;/b&gt;&lt;p&gt;Синхронизация базы данных.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="867"/>
+        <location filename="../Project.py" line="862"/>
         <source>&amp;Database</source>
         <translation>&amp;База данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1885"/>
+        <location filename="../Project.py" line="1898"/>
         <source>Project</source>
         <translation>Project</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1625"/>
+        <location filename="../Project.py" line="1638"/>
         <source>Application</source>
         <translation>Application</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1627"/>
+        <location filename="../Project.py" line="1640"/>
         <source>Start Django</source>
         <translation>Старт Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1627"/>
+        <location filename="../Project.py" line="1640"/>
         <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="1704"/>
+        <location filename="../Project.py" line="1717"/>
         <source>Start Django Project</source>
         <translation>Создание Django проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1680"/>
+        <location filename="../Project.py" line="1693"/>
         <source>Django project created successfully.</source>
         <translation>Django проект успешно создан.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1704"/>
+        <location filename="../Project.py" line="1717"/>
         <source>Enter the name of the new Django project.</source>
         <translation>Введите имя нового Django проекта.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1732"/>
+        <location filename="../Project.py" line="1745"/>
         <source>Start Django Application</source>
         <translation>Создание Django приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1766"/>
+        <location filename="../Project.py" line="1779"/>
         <source>Django application created successfully.</source>
         <translation>Django приложение успешно создано.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1849"/>
+        <location filename="../Project.py" line="1862"/>
         <source>Select Project</source>
         <translation>Выбор проекта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1849"/>
+        <location filename="../Project.py" line="1862"/>
         <source>Select the Django project to work with.</source>
         <translation>Выбор Django проекта для работы.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1883"/>
+        <location filename="../Project.py" line="1896"/>
         <source>None</source>
         <translation>none</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3250"/>
+        <location filename="../Project.py" line="3230"/>
         <source>Process Generation Error</source>
         <translation>Ошибка при запуске процесса</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1962"/>
+        <location filename="../Project.py" line="1975"/>
         <source>The Django server could not be started.</source>
         <translation>Невозможно запустить Django сервер.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2008"/>
+        <location filename="../Project.py" line="2021"/>
         <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="2859"/>
+        <location filename="../Project.py" line="2839"/>
         <source>The Django process could not be started.</source>
         <translation>Невозможно запустить Django процесс.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="122"/>
+        <location filename="../Project.py" line="128"/>
         <source>&lt;b&gt;Current Project&lt;/b&gt;&lt;p&gt;Selects the current project. Used for multi-project Django projects to switch between the projects.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Текущий проект&lt;/b&gt;&lt;p&gt;Выберите текущий проект. Используется в мультипроекте Django проектов для переключения между ними.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2522"/>
+        <location filename="../Project.py" line="2537"/>
         <source>Diff Settings</source>
         <translation>Отличие текущих параметров от параметров настройки Django по умолчанию</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="541"/>
+        <location filename="../Project.py" line="547"/>
         <source>&amp;Diff Settings</source>
         <translation>&amp;Различия настройки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="546"/>
+        <location filename="../Project.py" line="552"/>
         <source>Shows the modification made to the settings</source>
         <translation>Показ изменений, сделанных в параметрах настройки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="548"/>
+        <location filename="../Project.py" line="554"/>
         <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="2543"/>
-        <source>Cleanup</source>
-        <translation>Очистка</translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="555"/>
-        <source>&amp;Cleanup</source>
-        <translation>&amp;Очистка</translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="560"/>
-        <source>Cleans out old data from the database</source>
-        <translation>Очистка базы данных от старых, неактуальных данных</translation>
-    </message>
-    <message>
-        <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="2566"/>
-        <source>Validate</source>
-        <translation>Проверка</translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="569"/>
-        <source>&amp;Validate</source>
-        <translation>&amp;Проверка</translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="574"/>
-        <source>Validates all installed models</source>
-        <translation>Проверка синтаксиса и логики моделей всех установленных модулей</translation>
-    </message>
-    <message>
-        <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="946"/>
+        <location filename="../Project.py" line="942"/>
         <source>&amp;Tools</source>
         <translation>&amp;Сервис</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1530"/>
+        <location filename="../Project.py" line="1525"/>
         <source>Select Applications</source>
         <translation>Выбор приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1530"/>
+        <location filename="../Project.py" line="1525"/>
         <source>Enter the list of applications separated by spaces.</source>
         <translation>Введите список приложений, разделенных пробелами.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1888"/>
+        <location filename="../Project.py" line="1901"/>
         <source>&amp;Current Django project ({0})</source>
         <translation>Текущий &amp;Django проект ({0})</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2555"/>
-        <source>Database cleaned up successfully.</source>
-        <translation>База данных очищена успешно.</translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="583"/>
+        <location filename="../Project.py" line="561"/>
         <source>Start Python Console</source>
         <translation>Старт консоли Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="583"/>
+        <location filename="../Project.py" line="561"/>
         <source>Start &amp;Python Console</source>
         <translation>Старт консоли &amp;Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="588"/>
+        <location filename="../Project.py" line="566"/>
         <source>Starts a Python interactive interpreter</source>
         <translation>Запуск интерактивного интерпретатора Python</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="590"/>
+        <location filename="../Project.py" line="568"/>
         <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="2621"/>
+        <location filename="../Project.py" line="2593"/>
         <source>Create Cache Tables</source>
         <translation>Создание кэша таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="221"/>
+        <location filename="../Project.py" line="227"/>
         <source>C&amp;reate Cache Tables</source>
         <translation>С&amp;оздание кэша таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="226"/>
+        <location filename="../Project.py" line="232"/>
         <source>Creates the tables needed to use the SQL cache backend</source>
         <translation>Для создания таблиц необходимо использовать SQL кэш бэкенд</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="228"/>
+        <location filename="../Project.py" line="234"/>
         <source>&lt;b&gt;Create Cache Tables&lt;/b&gt;&lt;p&gt;Creates the tables needed to use the SQL cache backend.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Создание кэша таблиц&lt;/b&gt;&lt;p&gt;Для создания таблиц необходимо использовать  SQL кэш бэкенд.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2628"/>
+        <location filename="../Project.py" line="2600"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation>Введите имена таблиц кэша, разделенных пробелами.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2643"/>
+        <location filename="../Project.py" line="2615"/>
         <source>Cache tables created successfully.</source>
         <translation>Кэш таблиц создан успешно.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="323"/>
         <source>Introspect</source>
         <translation>Просматривает базу данных, определяет структуру моделей и выводит их код</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="323"/>
         <source>&amp;Introspect</source>
         <translation>&amp;Инспекция</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="322"/>
+        <location filename="../Project.py" line="328"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation>Анализ таблиц базы данных и вывод кода модуля Django моделей</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="325"/>
+        <location filename="../Project.py" line="331"/>
         <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="2049"/>
+        <location filename="../Project.py" line="2063"/>
         <source>Introspect Database</source>
         <translation>Анализ таблиц базы данных и генерация кода модуля Django моделей</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="339"/>
         <source>Flush</source>
         <translation>Очистка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="339"/>
         <source>&amp;Flush</source>
         <translation>&amp;Очистка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="338"/>
+        <location filename="../Project.py" line="344"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation>Возвращает все таблицы базы данных к состоянию на момент инсталяции базы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="341"/>
+        <location filename="../Project.py" line="347"/>
         <source>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Returns all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Очистка&lt;/b&gt;&lt;p&gt;Возврат всех таблиц базы данных к состоянию на момент инсталяции базы.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2207"/>
+        <location filename="../Project.py" line="2222"/>
         <source>Flush Database</source>
         <translation>Очистка базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2078"/>
+        <location filename="../Project.py" line="2092"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation>Очистка  базы данных приведет к уничтожению всех данных. Вы действительно этого хотите?</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2090"/>
+        <location filename="../Project.py" line="2104"/>
         <source>Database tables flushed successfully.</source>
         <translation>Таблицы базы данных успешно очищены.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="355"/>
         <source>Start Client Console</source>
         <translation>Запуск консоли клиента</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="354"/>
+        <location filename="../Project.py" line="360"/>
         <source>Starts a console window for the database client</source>
         <translation>Запуск окна консоли для клиента базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="356"/>
+        <location filename="../Project.py" line="362"/>
         <source>&lt;b&gt;Start Client Console&lt;/b&gt;&lt;p&gt;Starts a console window for the database client.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Запуск консоли клиента&lt;/b&gt;&lt;p&gt;Запуск окна консоли для клиента базы данных.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="355"/>
         <source>Start &amp;Client Console</source>
         <translation>Старт консоли &amp;клиента</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2165"/>
+        <location filename="../Project.py" line="2180"/>
         <source>Create Tables</source>
         <translation>Создание таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="367"/>
+        <location filename="../Project.py" line="373"/>
         <source>Create &amp;Tables</source>
         <translation>Создать &amp;таблицы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="372"/>
+        <location filename="../Project.py" line="378"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation>Выводит SQL операторы CREATE TABLE для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="375"/>
+        <location filename="../Project.py" line="381"/>
         <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="891"/>
+        <location filename="../Project.py" line="887"/>
         <source>Show &amp;SQL</source>
         <translation>&amp;SQL</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2172"/>
+        <location filename="../Project.py" line="2187"/>
         <source>Create Indexes</source>
         <translation>Создание индексов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="384"/>
+        <location filename="../Project.py" line="390"/>
         <source>Create &amp;Indexes</source>
         <translation>Создать &amp;индексы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="392"/>
+        <location filename="../Project.py" line="398"/>
         <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="2179"/>
+        <location filename="../Project.py" line="2194"/>
         <source>Create Everything</source>
         <translation>Создать все</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="401"/>
+        <location filename="../Project.py" line="407"/>
         <source>Create &amp;Everything</source>
         <translation>Создать &amp;все</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="406"/>
+        <location filename="../Project.py" line="412"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation>Выводит SQL операторы CREATE ... для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="409"/>
+        <location filename="../Project.py" line="415"/>
         <source>&lt;b&gt;Create Everything&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Создать все&lt;/b&gt;&lt;p&gt;Вывод комбинации SQL операторов CREATE TABLE, CREATE INDEX и пользовательских SQL запровов для одного или нескольких приложений.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="389"/>
+        <location filename="../Project.py" line="395"/>
         <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="2186"/>
+        <location filename="../Project.py" line="2201"/>
         <source>Custom Statements</source>
         <translation>Пользовательские запросы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="418"/>
+        <location filename="../Project.py" line="424"/>
         <source>&amp;Custom Statements</source>
         <translation>&amp;Пользовательские запросы</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="423"/>
+        <location filename="../Project.py" line="429"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation>Выводит дополнительную таблицу, модифицированную  SQL запросами, для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="426"/>
+        <location filename="../Project.py" line="432"/>
         <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="2193"/>
+        <location filename="../Project.py" line="2208"/>
         <source>Drop Tables</source>
         <translation>Удаление таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="435"/>
+        <location filename="../Project.py" line="441"/>
         <source>&amp;Drop Tables</source>
         <translation>&amp;Удаление таблиц</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="440"/>
+        <location filename="../Project.py" line="446"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation>Выводит SQL операторы DROP TABLE для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="443"/>
+        <location filename="../Project.py" line="449"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Удаление таблиц&lt;/b&gt;&lt;p&gt;Вывод SQL операторов DROP TABLE для одного или нескольких приложений.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="469"/>
+        <location filename="../Project.py" line="475"/>
         <source>&amp;Flush Database</source>
         <translation>&amp;Очистка базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="474"/>
+        <location filename="../Project.py" line="480"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation>Выводит список SQL операторов для возврата всех таблиц базы данных к состоянию на момент ее инсталяции</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="477"/>
+        <location filename="../Project.py" line="483"/>
         <source>&lt;b&gt;Flush Database&lt;/b&gt;&lt;p&gt;Prints a list of statements to return all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Очистка базы данных&lt;/b&gt;&lt;p&gt;Вывод списка SQL операторов для возврата всех таблиц  базы данных к состоянию на момент ее инсталяции.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2214"/>
+        <location filename="../Project.py" line="2229"/>
         <source>Reset Sequences</source>
         <translation>Сброс цепочки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="486"/>
+        <location filename="../Project.py" line="492"/>
         <source>Reset &amp;Sequences</source>
         <translation>Сброс &amp;цепочки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="491"/>
+        <location filename="../Project.py" line="497"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation>Выводит SQL операторы для сброса последовательности для одного или нескольких приложений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="494"/>
+        <location filename="../Project.py" line="500"/>
         <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="2658"/>
+        <location filename="../Project.py" line="2630"/>
         <source>Dump Data</source>
         <translation>Выводит текущие данные из базы данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="601"/>
+        <location filename="../Project.py" line="579"/>
         <source>&amp;Dump Data</source>
         <translation>&amp;Выгрузка данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="606"/>
+        <location filename="../Project.py" line="584"/>
         <source>Dump the database data to a fixture</source>
         <translation>Выводит данные базы данных в файлы оснастки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="608"/>
+        <location filename="../Project.py" line="586"/>
         <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="966"/>
+        <location filename="../Project.py" line="960"/>
         <source>T&amp;esting</source>
         <translation>Т&amp;естирование</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2256"/>
+        <location filename="../Project.py" line="2271"/>
         <source>SQL Files (*.sql)</source>
         <translation>SQL Files (*.sql)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2681"/>
+        <location filename="../Project.py" line="2653"/>
         <source>JSON Files (*.json)</source>
         <translation>JSON Files (*.json)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2683"/>
+        <location filename="../Project.py" line="2655"/>
         <source>XML Files (*.xml)</source>
         <translation>XML Files (*.xml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2685"/>
+        <location filename="../Project.py" line="2657"/>
         <source>YAML Files (*.yaml)</source>
         <translation>YAML Files (*.yaml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2697"/>
+        <location filename="../Project.py" line="2669"/>
         <source>Load Data</source>
         <translation>Загрузка данных в базу данных из файлов оснастки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="615"/>
+        <location filename="../Project.py" line="593"/>
         <source>&amp;Load Data</source>
         <translation>&amp;Загрузка данных</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="620"/>
+        <location filename="../Project.py" line="598"/>
         <source>Load data from fixture files</source>
         <translation>Загрузка начальных данных из файлов оснастки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="622"/>
+        <location filename="../Project.py" line="600"/>
         <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="629"/>
+        <location filename="../Project.py" line="607"/>
         <source>Run Testsuite</source>
         <translation>Выполнение набора тестов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="629"/>
+        <location filename="../Project.py" line="607"/>
         <source>Run &amp;Testsuite</source>
         <translation>Старт набора &amp;тестов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="634"/>
+        <location filename="../Project.py" line="612"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation>Выполнение набора тестов для приложения или для всего сайта</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="636"/>
+        <location filename="../Project.py" line="614"/>
         <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="643"/>
+        <location filename="../Project.py" line="638"/>
         <source>Run Testserver</source>
         <translation>Запуск сервера тестов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="643"/>
+        <location filename="../Project.py" line="638"/>
         <source>Run Test&amp;server</source>
         <translation>Старт сервера &amp;тестов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="648"/>
+        <location filename="../Project.py" line="643"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation>Запуск сервера разработки с данными из набора оснастки</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="650"/>
+        <location filename="../Project.py" line="645"/>
         <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="2788"/>
+        <location filename="../Project.py" line="2766"/>
         <source>The Django test server could not be started.</source>
         <translation>Невозможно запустить Django сервер тестов.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="241"/>
+        <location filename="../Project.py" line="247"/>
         <source>Help</source>
         <translation>Справка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="241"/>
+        <location filename="../Project.py" line="247"/>
         <source>&amp;Help</source>
         <translation>&amp;Справка</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="246"/>
+        <location filename="../Project.py" line="252"/>
         <source>Shows the Django help index</source>
         <translation>Показ индекса справки Django</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="248"/>
+        <location filename="../Project.py" line="254"/>
         <source>&lt;b&gt;Help&lt;/b&gt;&lt;p&gt;Shows the Django help index page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Справка&lt;/b&gt;&lt;p&gt;Показ страницы индексов справки  Django.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1060"/>
+        <location filename="../Project.py" line="1055"/>
         <source>New template...</source>
         <translation>Новый шаблон...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1069"/>
+        <location filename="../Project.py" line="1064"/>
         <source>Update all catalogs</source>
         <translation>Обновить все каталоги</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1072"/>
+        <location filename="../Project.py" line="1067"/>
         <source>Update selected catalogs</source>
         <translation>Обновить выбранные каталоги</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1083"/>
+        <location filename="../Project.py" line="1078"/>
         <source>Compile all catalogs</source>
         <translation>Компиляция всех каталогов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1086"/>
+        <location filename="../Project.py" line="1081"/>
         <source>Compile selected catalogs</source>
         <translation>Компиляция выбранных каталогов</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2955"/>
+        <location filename="../Project.py" line="2935"/>
         <source>Initializing message catalog for &apos;{0}&apos;</source>
         <translation>Инициализация каталога сообщений для &apos;{0}&apos;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3214"/>
+        <location filename="../Project.py" line="3194"/>
         <source>No current site selected or no site created yet. Aborting...</source>
         <translation>Текущий сайт не выбран или еще не создан. Прерывание выполнения...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3087"/>
+        <location filename="../Project.py" line="3067"/>
         <source>Updating message catalogs</source>
         <translation>Обновление каталогов сообщений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3178"/>
+        <location filename="../Project.py" line="3158"/>
         <source>No locales detected. Aborting...</source>
         <translation>Локали не найдены. Прерывание выполнения...</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3138"/>
+        <location filename="../Project.py" line="3118"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation>
 Каталоги сообщений успешно обновлены.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3204"/>
+        <location filename="../Project.py" line="3184"/>
         <source>Compiling message catalogs</source>
         <translation>Компиляция каталогов сообщений</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3221"/>
+        <location filename="../Project.py" line="3201"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation>Каталоги сообщений успешно компилированы.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1076"/>
+        <location filename="../Project.py" line="1071"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation>Обновить все каталоги (с устаревшими)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1079"/>
+        <location filename="../Project.py" line="1074"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation>Обновить выбранные каталоги (с устаревшими)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1778"/>
+        <location filename="../Project.py" line="1791"/>
         <source>Start Global Django Application</source>
         <translation>Выполнение Django global приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1778"/>
+        <location filename="../Project.py" line="1791"/>
         <source>Enter the name of the new global Django application.</source>
         <translation>Введите имя нового Djangо global приложения. </translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1800"/>
+        <location filename="../Project.py" line="1813"/>
         <source>Start Local Django Application</source>
         <translation>Выполнение Django local приложения</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1800"/>
+        <location filename="../Project.py" line="1813"/>
         <source>Enter the name of the new local Django application.</source>
         <translation>Введите имя нового Django local приложения. </translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3119"/>
+        <location filename="../Project.py" line="3099"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation>Обновление каталогов сообщений (с сохранением устаревших сообщений)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2818"/>
+        <location filename="../Project.py" line="2796"/>
         <source>Change Password</source>
         <translation>Смена пароля</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="662"/>
+        <location filename="../Project.py" line="657"/>
         <source>Change &amp;Password</source>
         <translation>Смена &amp;пароля</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="667"/>
+        <location filename="../Project.py" line="662"/>
         <source>Change the password of a user</source>
         <translation>Смена пароля пользователя</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="669"/>
+        <location filename="../Project.py" line="664"/>
         <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="676"/>
+        <location filename="../Project.py" line="671"/>
         <source>Create Superuser</source>
         <translation>Создание суперпользователя</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="676"/>
+        <location filename="../Project.py" line="671"/>
         <source>Create &amp;Superuser</source>
         <translation>Создать &amp;суперпользователя</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="681"/>
+        <location filename="../Project.py" line="676"/>
         <source>Create a superuser account</source>
         <translation>Создать аккаунт суперпользователя</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="683"/>
+        <location filename="../Project.py" line="678"/>
         <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="2874"/>
+        <location filename="../Project.py" line="2854"/>
         <source>Clear Sessions</source>
         <translation>Очистка сессии</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="694"/>
+        <location filename="../Project.py" line="689"/>
         <source>Clear &amp;Sessions</source>
         <translation>Очистка &amp;сессии</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="699"/>
+        <location filename="../Project.py" line="694"/>
         <source>Clear expired sessions</source>
         <translation>Очистка истекших сессий</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="701"/>
+        <location filename="../Project.py" line="696"/>
         <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="986"/>
+        <location filename="../Project.py" line="981"/>
         <source>&amp;Authorization</source>
         <translation>&amp;Авторизация</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1003"/>
+        <location filename="../Project.py" line="998"/>
         <source>&amp;Session</source>
         <translation>&amp;Сессия</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2818"/>
+        <location filename="../Project.py" line="2796"/>
         <source>Enter the name of the user:</source>
         <translation>Введите имя пользователя:</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2886"/>
+        <location filename="../Project.py" line="2866"/>
         <source>Expired sessions cleared successfully.</source>
         <translation>Истекшая сессия успешно очищена.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1459"/>
+        <location filename="../Project.py" line="1454"/>
         <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="1749"/>
+        <location filename="../Project.py" line="1762"/>
         <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="1045"/>
+        <location filename="../Project.py" line="1040"/>
         <source>Open with {0}</source>
         <translation>Открыть с помощью {0}</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3250"/>
+        <location filename="../Project.py" line="3230"/>
         <source>The translations editor process ({0}) could not be started.</source>
         <translation>Невозможен запуск редактора переводов ({0}).</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1180"/>
+        <location filename="../Project.py" line="1175"/>
         <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="2975"/>
+        <location filename="../Project.py" line="2955"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation>Каталог сообщений успешно инициализирован.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2200"/>
+        <location filename="../Project.py" line="2215"/>
         <source>Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="452"/>
+        <location filename="../Project.py" line="458"/>
         <source>&amp;Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="457"/>
+        <location filename="../Project.py" line="463"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="460"/>
+        <location filename="../Project.py" line="466"/>
         <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"/>
+        <location filename="../Project.py" line="707"/>
         <source>Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="707"/>
+        <source>&amp;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"/>
+        <location filename="../Project.py" line="714"/>
         <source>&lt;b&gt;Show Migrations&lt;/b&gt;&lt;p&gt;This shows a list of available migrations of the Django project and their status.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="722"/>
+        <source>Show Migrations Plan</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="722"/>
+        <source>Show Migrations &amp;Plan</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="727"/>
-        <source>Show Migrations Plan</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="727"/>
-        <source>Show Migrations &amp;Plan</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="734"/>
+        <location filename="../Project.py" line="729"/>
         <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="921"/>
+        <location filename="../Project.py" line="917"/>
         <source>&amp;Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="737"/>
+        <source>Apply All Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="737"/>
+        <source>&amp;Apply All Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="742"/>
-        <source>Apply All Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="742"/>
-        <source>&amp;Apply All Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="747"/>
         <source>Apply all available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="749"/>
+        <location filename="../Project.py" line="744"/>
         <source>&lt;b&gt;Apply All Migrations&lt;/b&gt;&lt;p&gt;This applies all migrations of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2310"/>
+        <location filename="../Project.py" line="2325"/>
         <source>Apply Selected Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="761"/>
+        <location filename="../Project.py" line="756"/>
         <source>Apply selected migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="763"/>
+        <location filename="../Project.py" line="758"/>
         <source>&lt;b&gt;Apply Selected Migrations&lt;/b&gt;&lt;p&gt;This applies selected migrations of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2384"/>
         <source>Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="767"/>
+        <source>&amp;Unapply Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="772"/>
-        <source>&amp;Unapply Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="779"/>
+        <location filename="../Project.py" line="774"/>
         <source>&lt;b&gt;Unapply Migrations&lt;/b&gt;&lt;p&gt;This unapplies all migrations for an app of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2446"/>
+        <location filename="../Project.py" line="2461"/>
         <source>Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="782"/>
+        <source>&amp;Make Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="787"/>
-        <source>&amp;Make Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="792"/>
         <source>Generate migrations for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="794"/>
+        <location filename="../Project.py" line="789"/>
         <source>&lt;b&gt;Make Migrations&lt;/b&gt;&lt;p&gt;This generates migrations for the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2477"/>
+        <location filename="../Project.py" line="2492"/>
         <source>No migrations available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2335"/>
+        <location filename="../Project.py" line="2350"/>
         <source>Apply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2384"/>
         <source>Select an application:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2490"/>
+        <location filename="../Project.py" line="2505"/>
         <source>Squash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="796"/>
+        <source>S&amp;quash Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="801"/>
-        <source>S&amp;quash Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="808"/>
+        <location filename="../Project.py" line="803"/>
         <source>&lt;b&gt;Squash Migrations&lt;/b&gt;&lt;p&gt;This squashes migrations of an application of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="509"/>
         <source>Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="509"/>
         <source>&amp;Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="508"/>
+        <location filename="../Project.py" line="514"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="511"/>
+        <location filename="../Project.py" line="517"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="526"/>
         <source>Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="526"/>
         <source>&amp;Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="525"/>
+        <location filename="../Project.py" line="531"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="528"/>
+        <location filename="../Project.py" line="534"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2238"/>
+        <location filename="../Project.py" line="2253"/>
         <source>SQL Migrate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3295"/>
+        <location filename="../Project.py" line="3275"/>
         <source>Check Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="282"/>
+        <location filename="../Project.py" line="288"/>
         <source>Inspects the Django project for common problems</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="284"/>
+        <location filename="../Project.py" line="290"/>
         <source>&lt;b&gt;Check Project&lt;/b&gt;&lt;p&gt;This inspects the Django project for common problems.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project.py" line="621"/>
+        <source>Run Testsuite (-Wall)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="626"/>
+        <source>Run the test suite for applications or the whole site with activated deprecation warnings</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="629"/>
+        <source>&lt;b&gt;Run Testsuite (-Wall)&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site with activated deprecation warnings.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ProjectDjangoPlugin</name>
--- a/ProjectDjango/i18n/django_tr.ts	Tue Dec 20 16:20:16 2016 +0100
+++ b/ProjectDjango/i18n/django_tr.ts	Tue Dec 20 19:56:11 2016 +0100
@@ -43,12 +43,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <location filename="../DjangoCheckOptionsDialog.py" line="81"/>
         <source>Select settings file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DjangoCheckOptionsDialog.py" line="78"/>
+        <location filename="../DjangoCheckOptionsDialog.py" line="81"/>
         <source>Python Files (*.py)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -177,27 +177,22 @@
         <translation>Seçim diyalou ile sabit dosyayı seç</translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.ui" line="42"/>
-        <source>...</source>
-        <translation>...</translation>
-    </message>
-    <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="57"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="60"/>
         <source>JSON Files (*.json);;XML Files (*.xml);;</source>
         <translation>JSON Dosyaları (*.json);;XML Dosyaları (*.xml);;</translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="60"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="63"/>
         <source>YAML Files (*.yaml);;</source>
         <translation>YAML Dosyaları (*.yaml);;</translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="63"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="66"/>
         <source>All Files (*)</source>
         <translation>Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../DjangoLoaddataDataDialog.py" line="65"/>
+        <location filename="../DjangoLoaddataDataDialog.py" line="68"/>
         <source>Select fixture file</source>
         <translation>Sabit dosyayı seç</translation>
     </message>
@@ -565,1188 +560,1158 @@
 <context>
     <name>Project</name>
     <message>
-        <location filename="../Project.py" line="115"/>
+        <location filename="../Project.py" line="121"/>
         <source>Current Project</source>
         <translation>Geçerli Proje</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="120"/>
+        <location filename="../Project.py" line="126"/>
         <source>Selects the current project</source>
         <translation>geçerli projeyi seç</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="122"/>
+        <location filename="../Project.py" line="128"/>
         <source>&lt;b&gt;Current Project&lt;/b&gt;&lt;p&gt;Selects the current project. Used for multi-project Django projects to switch between the projects.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="135"/>
+        <location filename="../Project.py" line="141"/>
         <source>Start Project</source>
         <translation>Projeyi Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="135"/>
+        <location filename="../Project.py" line="141"/>
         <source>Start &amp;Project</source>
         <translation>&amp;Projeyi Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="140"/>
+        <location filename="../Project.py" line="146"/>
         <source>Starts a new Django project</source>
         <translation>Yeni bir django projesi başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="142"/>
+        <location filename="../Project.py" line="148"/>
         <source>&lt;b&gt;Start Project&lt;/b&gt;&lt;p&gt;Starts a new Django project using &quot;django-admin.py startproject&quot;.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Projeyi Başlat&lt;/b&gt;&lt;p&gt;Yeni bir django projesini  &quot;django-admin.py startproject&quot; kullanarak başlat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="150"/>
+        <location filename="../Project.py" line="156"/>
         <source>Start Application (global)</source>
         <translation>Uygulayı başlat (küresel)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="150"/>
+        <location filename="../Project.py" line="156"/>
         <source>Start Application (&amp;global)</source>
         <translation>Uy&amp;gulamayı Başlat (Küresel)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="155"/>
+        <location filename="../Project.py" line="161"/>
         <source>Starts a new global Django application</source>
         <translation>Yeni bir küresel Django uygulaması başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="157"/>
+        <location filename="../Project.py" line="163"/>
         <source>&lt;b&gt;Start Application (global)&lt;/b&gt;&lt;p&gt;Starts a new global Django application using &quot;django-admin.py startapp&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="166"/>
+        <location filename="../Project.py" line="172"/>
         <source>Start Application (local)</source>
         <translation>Uygulamayı Başlat (yerel)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="166"/>
+        <location filename="../Project.py" line="172"/>
         <source>Start Application (&amp;local)</source>
         <translation>Uygulamayı Başlat (yere&amp;l)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="171"/>
+        <location filename="../Project.py" line="177"/>
         <source>Starts a new local Django application</source>
         <translation>Yeni bir Django uygulaması başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="173"/>
+        <location filename="../Project.py" line="179"/>
         <source>&lt;b&gt;Start Application (local)&lt;/b&gt;&lt;p&gt;Starts a new local Django application using &quot;manage.py startapp&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="186"/>
+        <location filename="../Project.py" line="192"/>
         <source>Run Server</source>
         <translation>Sunucuyu Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="186"/>
+        <location filename="../Project.py" line="192"/>
         <source>Run &amp;Server</source>
         <translation>&amp;Sunucuyu Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="191"/>
+        <location filename="../Project.py" line="197"/>
         <source>Starts the Django Web server</source>
         <translation>Django Web sunucusunu başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="193"/>
+        <location filename="../Project.py" line="199"/>
         <source>&lt;b&gt;Run Server&lt;/b&gt;&lt;p&gt;Starts the Django Web server using &quot;manage.py runserver&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2008"/>
+        <location filename="../Project.py" line="2021"/>
         <source>Run Web-Browser</source>
         <translation>Web-Gözatıcısını Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="201"/>
+        <location filename="../Project.py" line="207"/>
         <source>Run &amp;Web-Browser</source>
         <translation>&amp;Web-Gözatıcısını Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="206"/>
+        <location filename="../Project.py" line="212"/>
         <source>Starts the default Web-Browser with the URL of the Django Web server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="209"/>
+        <location filename="../Project.py" line="215"/>
         <source>&lt;b&gt;Run Web-Browser&lt;/b&gt;&lt;p&gt;Starts the default Web-Browser with the URL of the Django Web server.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2621"/>
+        <location filename="../Project.py" line="2593"/>
         <source>Create Cache Tables</source>
         <translation type="unfinished">Gizli Tabloları Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="221"/>
+        <location filename="../Project.py" line="227"/>
         <source>C&amp;reate Cache Tables</source>
         <translation type="unfinished">Gizli Tabloları Olu&amp;ştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="226"/>
+        <location filename="../Project.py" line="232"/>
         <source>Creates the tables needed to use the SQL cache backend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="228"/>
+        <location filename="../Project.py" line="234"/>
         <source>&lt;b&gt;Create Cache Tables&lt;/b&gt;&lt;p&gt;Creates the tables needed to use the SQL cache backend.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1459"/>
+        <location filename="../Project.py" line="1454"/>
         <source>About Django</source>
         <translation>Django Hakkında</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="259"/>
+        <location filename="../Project.py" line="265"/>
         <source>About D&amp;jango</source>
         <translation>D&amp;jango Hakkında</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="264"/>
+        <location filename="../Project.py" line="270"/>
         <source>Shows some information about Django</source>
         <translation type="unfinished">Django hakkında  bazı bilgileri göster</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="266"/>
+        <location filename="../Project.py" line="272"/>
         <source>&lt;b&gt;About Django&lt;/b&gt;&lt;p&gt;Shows some information about Django.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="303"/>
+        <location filename="../Project.py" line="309"/>
         <source>Synchronize</source>
         <translation>Eşzamanlamak</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="303"/>
+        <location filename="../Project.py" line="309"/>
         <source>&amp;Synchronize</source>
         <translation>E&amp;şzamanlamak</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="308"/>
+        <location filename="../Project.py" line="314"/>
         <source>Synchronizes the database</source>
         <translation>Veritabanını eşzamanla</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="310"/>
+        <location filename="../Project.py" line="316"/>
         <source>&lt;b&gt;Synchronize&lt;/b&gt;&lt;p&gt;Synchronizes the database.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="323"/>
         <source>Introspect</source>
         <translation>İçgözlem</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="317"/>
+        <location filename="../Project.py" line="323"/>
         <source>&amp;Introspect</source>
         <translation>&amp;İçgözlem</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="322"/>
+        <location filename="../Project.py" line="328"/>
         <source>Introspects the database tables and outputs a Django model module</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="325"/>
+        <location filename="../Project.py" line="331"/>
         <source>&lt;b&gt;Introspect&lt;/b&gt;&lt;p&gt;Introspects the database tables and outputs a Django model module.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="339"/>
         <source>Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="333"/>
+        <location filename="../Project.py" line="339"/>
         <source>&amp;Flush</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="338"/>
+        <location filename="../Project.py" line="344"/>
         <source>Returns all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="341"/>
+        <location filename="../Project.py" line="347"/>
         <source>&lt;b&gt;Flush&lt;/b&gt;&lt;p&gt;Returns all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="355"/>
         <source>Start Client Console</source>
         <translation>İstemci Uçbirimini Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="349"/>
+        <location filename="../Project.py" line="355"/>
         <source>Start &amp;Client Console</source>
         <translation>İstem&amp;ci Uçbirimini Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="354"/>
+        <location filename="../Project.py" line="360"/>
         <source>Starts a console window for the database client</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="356"/>
+        <location filename="../Project.py" line="362"/>
         <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"/>
+        <location filename="../Project.py" line="2180"/>
         <source>Create Tables</source>
         <translation>Tabloyu Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="367"/>
+        <location filename="../Project.py" line="373"/>
         <source>Create &amp;Tables</source>
         <translation>&amp;Tabloları Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="372"/>
+        <location filename="../Project.py" line="378"/>
         <source>Prints the CREATE TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="375"/>
+        <location filename="../Project.py" line="381"/>
         <source>&lt;b&gt;Create Tables&lt;/b&gt;&lt;p&gt;Prints the CREATE TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2172"/>
+        <location filename="../Project.py" line="2187"/>
         <source>Create Indexes</source>
         <translation>Katalogları oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="384"/>
+        <location filename="../Project.py" line="390"/>
         <source>Create &amp;Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="389"/>
+        <location filename="../Project.py" line="395"/>
         <source>Prints the CREATE INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="392"/>
+        <location filename="../Project.py" line="398"/>
         <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="2179"/>
+        <location filename="../Project.py" line="2194"/>
         <source>Create Everything</source>
         <translation>Herşeyi Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="401"/>
+        <location filename="../Project.py" line="407"/>
         <source>Create &amp;Everything</source>
         <translation>H&amp;erşeyi Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="406"/>
+        <location filename="../Project.py" line="412"/>
         <source>Prints the CREATE ... SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="409"/>
+        <location filename="../Project.py" line="415"/>
         <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="2186"/>
+        <location filename="../Project.py" line="2201"/>
         <source>Custom Statements</source>
         <translation>Özel İfadeler</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="418"/>
+        <location filename="../Project.py" line="424"/>
         <source>&amp;Custom Statements</source>
         <translation>Özel İfade&amp;ler</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="423"/>
+        <location filename="../Project.py" line="429"/>
         <source>Prints the custom table modifying SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="426"/>
+        <location filename="../Project.py" line="432"/>
         <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="2193"/>
+        <location filename="../Project.py" line="2208"/>
         <source>Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="435"/>
+        <location filename="../Project.py" line="441"/>
         <source>&amp;Drop Tables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="440"/>
+        <location filename="../Project.py" line="446"/>
         <source>Prints the DROP TABLE SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="443"/>
+        <location filename="../Project.py" line="449"/>
         <source>&lt;b&gt;Drop Tables&lt;/b&gt;&lt;p&gt;Prints the DROP TABLE SQL statements for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2207"/>
+        <location filename="../Project.py" line="2222"/>
         <source>Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="469"/>
+        <location filename="../Project.py" line="475"/>
         <source>&amp;Flush Database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="474"/>
+        <location filename="../Project.py" line="480"/>
         <source>Prints a list of statements to return all database tables to the state just after their installation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="477"/>
+        <location filename="../Project.py" line="483"/>
         <source>&lt;b&gt;Flush Database&lt;/b&gt;&lt;p&gt;Prints a list of statements to return all database tables to the state just after their installation.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2214"/>
+        <location filename="../Project.py" line="2229"/>
         <source>Reset Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="486"/>
+        <location filename="../Project.py" line="492"/>
         <source>Reset &amp;Sequences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="491"/>
+        <location filename="../Project.py" line="497"/>
         <source>Prints the SQL statements for resetting sequences for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="494"/>
+        <location filename="../Project.py" line="500"/>
         <source>&lt;b&gt;Reset Sequences&lt;/b&gt;&lt;p&gt;Prints the SQL statements for resetting sequences for one or more applications.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2522"/>
+        <location filename="../Project.py" line="2537"/>
         <source>Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="541"/>
+        <location filename="../Project.py" line="547"/>
         <source>&amp;Diff Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="546"/>
+        <location filename="../Project.py" line="552"/>
         <source>Shows the modification made to the settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="548"/>
+        <location filename="../Project.py" line="554"/>
         <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="2543"/>
-        <source>Cleanup</source>
-        <translation>Tasfiye</translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="555"/>
-        <source>&amp;Cleanup</source>
-        <translation>Tas&amp;fiye</translation>
-    </message>
-    <message>
-        <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="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="2566"/>
-        <source>Validate</source>
-        <translation>Geçerli</translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="569"/>
-        <source>&amp;Validate</source>
-        <translation>&amp;Geçerli</translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="574"/>
-        <source>Validates all installed models</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="583"/>
+        <location filename="../Project.py" line="561"/>
         <source>Start Python Console</source>
         <translation>Python Uçbirimini çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="583"/>
+        <location filename="../Project.py" line="561"/>
         <source>Start &amp;Python Console</source>
         <translation>&amp;Python Uçbinimini başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="588"/>
+        <location filename="../Project.py" line="566"/>
         <source>Starts a Python interactive interpreter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="590"/>
+        <location filename="../Project.py" line="568"/>
         <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"/>
+        <location filename="../Project.py" line="2630"/>
         <source>Dump Data</source>
         <translation>Boş Veri</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="601"/>
+        <location filename="../Project.py" line="579"/>
         <source>&amp;Dump Data</source>
         <translation>B&amp;oş Veri</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="606"/>
+        <location filename="../Project.py" line="584"/>
         <source>Dump the database data to a fixture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="608"/>
+        <location filename="../Project.py" line="586"/>
         <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="2697"/>
+        <location filename="../Project.py" line="2669"/>
         <source>Load Data</source>
         <translation>Veriyi Yükle</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="615"/>
+        <location filename="../Project.py" line="593"/>
         <source>&amp;Load Data</source>
         <translation>Veriyi Yük&amp;le</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="620"/>
+        <location filename="../Project.py" line="598"/>
         <source>Load data from fixture files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="622"/>
+        <location filename="../Project.py" line="600"/>
         <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="629"/>
+        <location filename="../Project.py" line="607"/>
         <source>Run Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="629"/>
+        <location filename="../Project.py" line="607"/>
         <source>Run &amp;Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="634"/>
+        <location filename="../Project.py" line="612"/>
         <source>Run the test suite for applications or the whole site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="636"/>
+        <location filename="../Project.py" line="614"/>
         <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="643"/>
+        <location filename="../Project.py" line="638"/>
         <source>Run Testserver</source>
         <translation>Testsunucusunu Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="643"/>
+        <location filename="../Project.py" line="638"/>
         <source>Run Test&amp;server</source>
         <translation>Test&amp;sunucusunu Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="648"/>
+        <location filename="../Project.py" line="643"/>
         <source>Run a development server with data from a set of fixtures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="650"/>
+        <location filename="../Project.py" line="645"/>
         <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="825"/>
+        <location filename="../Project.py" line="820"/>
         <source>D&amp;jango</source>
         <translation>D&amp;jango</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="867"/>
+        <location filename="../Project.py" line="862"/>
         <source>&amp;Database</source>
         <translation>&amp;Veritabanı</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="891"/>
+        <location filename="../Project.py" line="887"/>
         <source>Show &amp;SQL</source>
         <translation>&amp;SQL u göster</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="946"/>
+        <location filename="../Project.py" line="942"/>
         <source>&amp;Tools</source>
         <translation>&amp;Araçlar</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="966"/>
+        <location filename="../Project.py" line="960"/>
         <source>T&amp;esting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1180"/>
+        <location filename="../Project.py" line="1175"/>
         <source>New Form</source>
         <translation>Yeni Form</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1147"/>
+        <location filename="../Project.py" line="1142"/>
         <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="1530"/>
+        <location filename="../Project.py" line="1525"/>
         <source>Select Applications</source>
         <translation>Uygulamayı Seç</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1530"/>
+        <location filename="../Project.py" line="1525"/>
         <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="1885"/>
+        <location filename="../Project.py" line="1898"/>
         <source>Project</source>
         <translation>Proje</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1625"/>
+        <location filename="../Project.py" line="1638"/>
         <source>Application</source>
         <translation>Uygulama</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1627"/>
+        <location filename="../Project.py" line="1640"/>
         <source>Start Django</source>
         <translation>Djangoyu Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1627"/>
+        <location filename="../Project.py" line="1640"/>
         <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="1704"/>
+        <location filename="../Project.py" line="1717"/>
         <source>Start Django Project</source>
         <translation>Django Projesini Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1680"/>
+        <location filename="../Project.py" line="1693"/>
         <source>Django project created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1704"/>
+        <location filename="../Project.py" line="1717"/>
         <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="1732"/>
+        <location filename="../Project.py" line="1745"/>
         <source>Start Django Application</source>
         <translation>Django Uygulamasını Başlat</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1766"/>
+        <location filename="../Project.py" line="1779"/>
         <source>Django application created successfully.</source>
         <translation>Django uygulaması başarıyla oluşturuldu.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1849"/>
+        <location filename="../Project.py" line="1862"/>
         <source>Select Project</source>
         <translation>Projeyi Seç</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1849"/>
+        <location filename="../Project.py" line="1862"/>
         <source>Select the Django project to work with.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1883"/>
+        <location filename="../Project.py" line="1896"/>
         <source>None</source>
         <translation>Yok</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1888"/>
+        <location filename="../Project.py" line="1901"/>
         <source>&amp;Current Django project ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3250"/>
+        <location filename="../Project.py" line="3230"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1962"/>
+        <location filename="../Project.py" line="1975"/>
         <source>The Django server could not be started.</source>
         <translation>Django sunucusu başlatılamadı.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2008"/>
+        <location filename="../Project.py" line="2021"/>
         <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="2859"/>
+        <location filename="../Project.py" line="2839"/>
         <source>The Django process could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2049"/>
+        <location filename="../Project.py" line="2063"/>
         <source>Introspect Database</source>
         <translation>Veritabanı İnceleme</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2078"/>
+        <location filename="../Project.py" line="2092"/>
         <source>Flushing the database will destroy all data. Are you sure?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2090"/>
+        <location filename="../Project.py" line="2104"/>
         <source>Database tables flushed successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2256"/>
+        <location filename="../Project.py" line="2271"/>
         <source>SQL Files (*.sql)</source>
         <translation>SQL Dosyaları (*.sql)</translation>
     </message>
     <message>
-        <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="2628"/>
+        <location filename="../Project.py" line="2600"/>
         <source>Enter the names of the cache tables separated by spaces.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2643"/>
+        <location filename="../Project.py" line="2615"/>
         <source>Cache tables created successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2681"/>
+        <location filename="../Project.py" line="2653"/>
         <source>JSON Files (*.json)</source>
         <translation>JSON Dosyaları (*.json)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2683"/>
+        <location filename="../Project.py" line="2655"/>
         <source>XML Files (*.xml)</source>
         <translation>XML Dosyaları (*.xml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2685"/>
+        <location filename="../Project.py" line="2657"/>
         <source>YAML Files (*.yaml)</source>
         <translation>YAML Dosyaları (*.yaml)</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2788"/>
+        <location filename="../Project.py" line="2766"/>
         <source>The Django test server could not be started.</source>
         <translation>Django testsunucusu çalıştırılamadı.</translation>
     </message>
     <message>
-        <location filename="../Project.py" line="241"/>
+        <location filename="../Project.py" line="247"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="241"/>
+        <location filename="../Project.py" line="247"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="246"/>
+        <location filename="../Project.py" line="252"/>
         <source>Shows the Django help index</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="248"/>
+        <location filename="../Project.py" line="254"/>
         <source>&lt;b&gt;Help&lt;/b&gt;&lt;p&gt;Shows the Django help index page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1060"/>
+        <location filename="../Project.py" line="1055"/>
         <source>New template...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1069"/>
+        <location filename="../Project.py" line="1064"/>
         <source>Update all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1072"/>
+        <location filename="../Project.py" line="1067"/>
         <source>Update selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1083"/>
+        <location filename="../Project.py" line="1078"/>
         <source>Compile all catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1086"/>
+        <location filename="../Project.py" line="1081"/>
         <source>Compile selected catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="2935"/>
+        <source>Initializing message catalog for &apos;{0}&apos;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="3194"/>
+        <source>No current site selected or no site created yet. Aborting...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <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="3214"/>
-        <source>No current site selected or no site created yet. Aborting...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="2975"/>
         <source>
 Message catalog initialized successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3087"/>
+        <location filename="../Project.py" line="3067"/>
         <source>Updating message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3178"/>
+        <location filename="../Project.py" line="3158"/>
         <source>No locales detected. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3138"/>
+        <location filename="../Project.py" line="3118"/>
         <source>
 Message catalogs updated successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3204"/>
+        <location filename="../Project.py" line="3184"/>
         <source>Compiling message catalogs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3221"/>
+        <location filename="../Project.py" line="3201"/>
         <source>
 Message catalogs compiled successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1076"/>
+        <location filename="../Project.py" line="1071"/>
         <source>Update all catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1079"/>
+        <location filename="../Project.py" line="1074"/>
         <source>Update selected catalogs (with obsolete)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1778"/>
+        <location filename="../Project.py" line="1791"/>
         <source>Start Global Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1778"/>
+        <location filename="../Project.py" line="1791"/>
         <source>Enter the name of the new global Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1800"/>
+        <location filename="../Project.py" line="1813"/>
         <source>Start Local Django Application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1800"/>
+        <location filename="../Project.py" line="1813"/>
         <source>Enter the name of the new local Django application.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3119"/>
+        <location filename="../Project.py" line="3099"/>
         <source>Updating message catalogs (keeping obsolete messages)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2818"/>
+        <location filename="../Project.py" line="2796"/>
         <source>Change Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="657"/>
+        <source>Change &amp;Password</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="662"/>
-        <source>Change &amp;Password</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="669"/>
+        <location filename="../Project.py" line="664"/>
         <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="676"/>
+        <location filename="../Project.py" line="671"/>
         <source>Create Superuser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="671"/>
+        <source>Create &amp;Superuser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="676"/>
-        <source>Create &amp;Superuser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="681"/>
         <source>Create a superuser account</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="683"/>
+        <location filename="../Project.py" line="678"/>
         <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="2874"/>
+        <location filename="../Project.py" line="2854"/>
         <source>Clear Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="689"/>
+        <source>Clear &amp;Sessions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="694"/>
-        <source>Clear &amp;Sessions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="699"/>
         <source>Clear expired sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="701"/>
+        <location filename="../Project.py" line="696"/>
         <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"/>
+        <location filename="../Project.py" line="981"/>
         <source>&amp;Authorization</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1003"/>
+        <location filename="../Project.py" line="998"/>
         <source>&amp;Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2818"/>
+        <location filename="../Project.py" line="2796"/>
         <source>Enter the name of the user:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2886"/>
+        <location filename="../Project.py" line="2866"/>
         <source>Expired sessions cleared successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="1459"/>
+        <location filename="../Project.py" line="1454"/>
         <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"/>
+        <location filename="../Project.py" line="1762"/>
         <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"/>
+        <location filename="../Project.py" line="1040"/>
         <source>Open with {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3250"/>
+        <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="1180"/>
+        <location filename="../Project.py" line="1175"/>
         <source>&lt;p&gt;The new form file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;br&gt; Problem: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2200"/>
+        <location filename="../Project.py" line="2215"/>
         <source>Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="452"/>
+        <location filename="../Project.py" line="458"/>
         <source>&amp;Drop Indexes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="457"/>
+        <location filename="../Project.py" line="463"/>
         <source>Prints the DROP INDEX SQL statements for one or more applications</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="460"/>
+        <location filename="../Project.py" line="466"/>
         <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"/>
+        <location filename="../Project.py" line="707"/>
         <source>Show Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="707"/>
+        <source>&amp;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"/>
+        <location filename="../Project.py" line="714"/>
         <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="727"/>
+        <location filename="../Project.py" line="722"/>
         <source>Show Migrations Plan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="722"/>
+        <source>Show Migrations &amp;Plan</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="727"/>
-        <source>Show Migrations &amp;Plan</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="734"/>
+        <location filename="../Project.py" line="729"/>
         <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="921"/>
+        <location filename="../Project.py" line="917"/>
         <source>&amp;Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="742"/>
+        <location filename="../Project.py" line="737"/>
         <source>Apply All Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="737"/>
+        <source>&amp;Apply All Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="742"/>
-        <source>&amp;Apply All Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="747"/>
         <source>Apply all available migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="749"/>
+        <location filename="../Project.py" line="744"/>
         <source>&lt;b&gt;Apply All Migrations&lt;/b&gt;&lt;p&gt;This applies all migrations of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2310"/>
+        <location filename="../Project.py" line="2325"/>
         <source>Apply Selected Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="761"/>
+        <location filename="../Project.py" line="756"/>
         <source>Apply selected migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="763"/>
+        <location filename="../Project.py" line="758"/>
         <source>&lt;b&gt;Apply Selected Migrations&lt;/b&gt;&lt;p&gt;This applies selected migrations of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2384"/>
         <source>Unapply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="767"/>
+        <source>&amp;Unapply Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="772"/>
-        <source>&amp;Unapply Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <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="779"/>
+        <location filename="../Project.py" line="774"/>
         <source>&lt;b&gt;Unapply Migrations&lt;/b&gt;&lt;p&gt;This unapplies all migrations for an app of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2446"/>
+        <location filename="../Project.py" line="2461"/>
         <source>Make Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Project.py" line="782"/>
+        <source>&amp;Make Migrations</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Project.py" line="787"/>
-        <source>&amp;Make Migrations</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Project.py" line="792"/>
         <source>Generate migrations for the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="794"/>
+        <location filename="../Project.py" line="789"/>
         <source>&lt;b&gt;Make Migrations&lt;/b&gt;&lt;p&gt;This generates migrations for the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2477"/>
+        <location filename="../Project.py" line="2492"/>
         <source>No migrations available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2335"/>
+        <location filename="../Project.py" line="2350"/>
         <source>Apply Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2369"/>
+        <location filename="../Project.py" line="2384"/>
         <source>Select an application:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2490"/>
+        <location filename="../Project.py" line="2505"/>
         <source>Squash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="801"/>
+        <location filename="../Project.py" line="796"/>
         <source>S&amp;quash Migrations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="806"/>
+        <location filename="../Project.py" line="801"/>
         <source>Squash migrations of an application of the project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="808"/>
+        <location filename="../Project.py" line="803"/>
         <source>&lt;b&gt;Squash Migrations&lt;/b&gt;&lt;p&gt;This squashes migrations of an application of the Django project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="509"/>
         <source>Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="503"/>
+        <location filename="../Project.py" line="509"/>
         <source>&amp;Apply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="508"/>
+        <location filename="../Project.py" line="514"/>
         <source>Prints the SQL statements to apply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="511"/>
+        <location filename="../Project.py" line="517"/>
         <source>&lt;b&gt;Apply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to apply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="526"/>
         <source>Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="520"/>
+        <location filename="../Project.py" line="526"/>
         <source>&amp;Unapply Migration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="525"/>
+        <location filename="../Project.py" line="531"/>
         <source>Prints the SQL statements to unapply a migration of an application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="528"/>
+        <location filename="../Project.py" line="534"/>
         <source>&lt;b&gt;Unapply Migration&lt;/b&gt;&lt;p&gt;Prints the SQL statements to unapply a migration of an application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="2238"/>
+        <location filename="../Project.py" line="2253"/>
         <source>SQL Migrate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="3295"/>
+        <location filename="../Project.py" line="3275"/>
         <source>Check Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="282"/>
+        <location filename="../Project.py" line="288"/>
         <source>Inspects the Django project for common problems</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project.py" line="284"/>
+        <location filename="../Project.py" line="290"/>
         <source>&lt;b&gt;Check Project&lt;/b&gt;&lt;p&gt;This inspects the Django project for common problems.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../Project.py" line="621"/>
+        <source>Run Testsuite (-Wall)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="626"/>
+        <source>Run the test suite for applications or the whole site with activated deprecation warnings</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Project.py" line="629"/>
+        <source>&lt;b&gt;Run Testsuite (-Wall)&lt;/b&gt;&lt;p&gt;Run the test suite for applications or the whole site with activated deprecation warnings.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ProjectDjangoPlugin</name>

eric ide

mercurial